aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorBu Sun Kim <8822365+busunkim96@users.noreply.github.com>2020-02-19 17:58:47 -0800
committerGitHub <noreply@github.com>2020-02-20 01:58:47 +0000
commite72202efcad6bce18ef252e57d35e97d622ab5e0 (patch)
treeb50a430fb69280d279e6ceef06f98d876a098002 /docs
parent2b103b60ece16a1e1bc98cfda7ec375191a90f75 (diff)
downloadpython-api-core-e72202efcad6bce18ef252e57d35e97d622ab5e0.tar.gz
chore: add split repo templates (#2)
* chore: add split repo templates * chore: remove blacken
Diffstat (limited to 'docs')
-rw-r--r--docs/_static/custom.css2
-rw-r--r--docs/_templates/layout.html1
-rw-r--r--docs/conf.py17
3 files changed, 8 insertions, 12 deletions
diff --git a/docs/_static/custom.css b/docs/_static/custom.css
index 9a6f9f8..0abaf22 100644
--- a/docs/_static/custom.css
+++ b/docs/_static/custom.css
@@ -1,4 +1,4 @@
div#python2-eol {
border-color: red;
border-width: medium;
-} \ No newline at end of file
+} \ No newline at end of file
diff --git a/docs/_templates/layout.html b/docs/_templates/layout.html
index de457b2..228529e 100644
--- a/docs/_templates/layout.html
+++ b/docs/_templates/layout.html
@@ -1,3 +1,4 @@
+
{% extends "!layout.html" %}
{%- block content %}
{%- if theme_fixed_sidebar|lower == 'true' %}
diff --git a/docs/conf.py b/docs/conf.py
index ef04929..57ee48d 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -20,7 +20,7 @@ import shlex
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath(".."))
-__version__ = "0.1.0"
+__version__ = ""
# -- General configuration ------------------------------------------------
@@ -66,7 +66,7 @@ master_doc = "index"
# General information about the project.
project = u"google-api-core"
-copyright = u"2017, Google"
+copyright = u"2019, Google"
author = u"Google APIs"
# The version info for the project you're documenting, acts as replacement for
@@ -133,9 +133,9 @@ html_theme = "alabaster"
# further. For a list of options available for each theme, see the
# documentation.
html_theme_options = {
- "description": "Google Cloud Client Libraries for Python",
+ "description": "Google Cloud Client Libraries for google-api-core",
"github_user": "googleapis",
- "github_repo": "google-cloud-python",
+ "github_repo": "python-api-core",
"github_banner": True,
"font_family": "'Roboto', Georgia, sans",
"head_font_family": "'Roboto', Georgia, serif",
@@ -312,7 +312,7 @@ texinfo_documents = [
u"google-api-core Documentation",
author,
"google-api-core",
- "GAPIC library for the {metadata.shortName} v1beta1 service",
+ "google-api-core Library",
"APIs",
)
]
@@ -333,14 +333,9 @@ texinfo_documents = [
# Example configuration for intersphinx: refer to the Python standard library.
intersphinx_mapping = {
"python": ("http://python.readthedocs.org/en/latest/", None),
- "gax": ("https://gax-python.readthedocs.org/en/latest/", None),
"google-auth": ("https://google-auth.readthedocs.io/en/stable", None),
- "google-gax": ("https://gax-python.readthedocs.io/en/latest/", None),
- "google.api_core": ("https://googleapis.dev/python/google-api-core/latest", None),
+ "google.api_core": ("https://googleapis.dev/python/google-api-core/latest/", None),
"grpc": ("https://grpc.io/grpc/python/", None),
- "requests": ("https://requests.kennethreitz.org/en/stable/", None),
- "fastavro": ("https://fastavro.readthedocs.io/en/stable/", None),
- "pandas": ("https://pandas.pydata.org/pandas-docs/stable/", None),
}