Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions tasks/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ is in Alpha.
- `Product Documentation`_

.. _Alpha: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
.. _Cloud Tasks API: https://cloud.google.com/cloudtasks
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/stable/cloudtasks/usage.html
.. _Product Documentation: https://cloud.google.com/cloudtasks
.. _Cloud Tasks API: https://cloud.google.com/tasks
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/stable/tasks/usage.html
.. _Product Documentation: https://cloud.google.com/tasks

Quick Start
-----------
Expand All @@ -24,7 +24,7 @@ In order to use this library, you first need to go through the following steps:

.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
.. _Enable the Cloud Tasks API.: https://cloud.google.com/cloudtasks
.. _Enable the Cloud Tasks API.: https://cloud.google.com/tasks
.. _Setup Authentication.: https://googlecloudplatform.github.io/google-cloud-python/stable/core/auth.html

Installation
Expand All @@ -49,7 +49,7 @@ Mac/Linux
pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-cloudtasks
<your-env>/bin/pip install google-cloud-tasks


Windows
Expand All @@ -60,7 +60,7 @@ Windows
pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-cloudtasks
<your-env>\Scripts\pip.exe install google-cloud-tasks

Next Steps
~~~~~~~~~~
Expand All @@ -72,5 +72,5 @@ Next Steps
- View this `repository’s main README`_ to see the full list of Cloud
APIs that we cover.

.. _Cloud Tasks API Product documentation: https://cloud.google.com/cloudtasks
.. _Cloud Tasks API Product documentation: https://cloud.google.com/tasks
.. _repository’s main README: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
20 changes: 10 additions & 10 deletions tasks/docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# google-cloud-cloudtasks documentation build configuration file
# google-cloud-tasks documentation build configuration file
#
# This file is execfile()d with the current directory set to its
# containing dir.
Expand Down Expand Up @@ -59,7 +59,7 @@
master_doc = 'index'

# General information about the project.
project = u'google-cloud-cloudtasks'
project = u'google-cloud-tasks'
copyright = u'2017, Google'
author = u'Google APIs'

Expand Down Expand Up @@ -212,7 +212,7 @@
#html_search_scorer = 'scorer.js'

# Output file base name for HTML help builder.
htmlhelp_basename = 'google-cloud-cloudtasks-doc'
htmlhelp_basename = 'google-cloud-tasks-doc'

# -- Options for LaTeX output ---------------------------------------------

Expand All @@ -234,8 +234,8 @@
# (source start file, target name, title,
# author, documentclass [howto, manual, or own class]).
latex_documents = [
(master_doc, 'google-cloud-cloudtasks.tex',
u'google-cloud-cloudtasks Documentation', author, 'manual'),
(master_doc, 'google-cloud-tasks.tex',
u'google-cloud-tasks Documentation', author, 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand All @@ -262,8 +262,8 @@

# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [(master_doc, 'google-cloud-cloudtasks',
u'google-cloud-cloudtasks Documentation', [author], 1)]
man_pages = [(master_doc, 'google-cloud-tasks',
u'google-cloud-tasks Documentation', [author], 1)]

# If true, show URL addresses after external links.
#man_show_urls = False
Expand All @@ -274,9 +274,9 @@
# (source start file, target name, title, author,
# dir menu entry, description, category)
texinfo_documents = [
(master_doc, 'google-cloud-cloudtasks',
u'google-cloud-cloudtasks Documentation', author,
'google-cloud-cloudtasks',
(master_doc, 'google-cloud-tasks',
u'google-cloud-tasks Documentation', author,
'google-cloud-tasks',
'GAPIC library for the {metadata.shortName} v2beta2 service', 'APIs'),
]

Expand Down
14 changes: 7 additions & 7 deletions tasks/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ is in Alpha.
- `Product Documentation`_

.. _Alpha: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst
.. _Cloud Tasks API: https://cloud.google.com/cloudtasks
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/stable/cloudtasks/usage.html
.. _Product Documentation: https://cloud.google.com/cloudtasks
.. _Cloud Tasks API: https://cloud.google.com/cloud-tasks
.. _Client Library Documentation: https://googlecloudplatform.github.io/google-cloud-python/stable/cloud-tasks/usage.html
.. _Product Documentation: https://cloud.google.com/cloud-tasks

Quick Start
-----------
Expand All @@ -24,7 +24,7 @@ In order to use this library, you first need to go through the following steps:

.. _Select or create a Cloud Platform project.: https://console.cloud.google.com/project
.. _Enable billing for your project.: https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project
.. _Enable the Cloud Tasks API.: https://cloud.google.com/cloudtasks
.. _Enable the Cloud Tasks API.: https://cloud.google.com/cloud-tasks
.. _Setup Authentication.: https://googlecloudplatform.github.io/google-cloud-python/stable/core/auth.html

Installation
Expand All @@ -49,7 +49,7 @@ Mac/Linux
pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-cloudtasks
<your-env>/bin/pip install google-cloud-tasks


Windows
Expand All @@ -60,7 +60,7 @@ Windows
pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-cloudtasks
<your-env>\Scripts\pip.exe install google-cloud-tasks

Next Steps
~~~~~~~~~~
Expand All @@ -72,7 +72,7 @@ Next Steps
- View this `repository’s main README`_ to see the full list of Cloud
APIs that we cover.

.. _Cloud Tasks API Product documentation: https://cloud.google.com/cloudtasks
.. _Cloud Tasks API Product documentation: https://cloud.google.com/cloud-tasks
.. _repository’s main README: https://github.com/GoogleCloudPlatform/google-cloud-python/blob/master/README.rst

Api Reference
Expand Down
Loading