Skip to content

Commit 319e625

Browse files
[CHANGE ME] Re-generated cloudbuild to pick up changes in the API or client library generator.
1 parent 1d4a6f8 commit 319e625

File tree

9 files changed

+1385
-43
lines changed

9 files changed

+1385
-43
lines changed

cloudbuild/README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Mac/Linux
4848
pip install virtualenv
4949
virtualenv <your-env>
5050
source <your-env>/bin/activate
51-
<your-env>/bin/pip install google-cloud-build
51+
<your-env>/bin/pip install google-cloud-cloudbuild
5252
5353
5454
Windows
@@ -59,7 +59,7 @@ Windows
5959
pip install virtualenv
6060
virtualenv <your-env>
6161
<your-env>\Scripts\activate
62-
<your-env>\Scripts\pip.exe install google-cloud-build
62+
<your-env>\Scripts\pip.exe install google-cloud-cloudbuild
6363
6464
Next Steps
6565
~~~~~~~~~~

cloudbuild/docs/_static/custom.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
div#python2-eol {
2+
border-color: red;
3+
border-width: medium;
4+
}
Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
2+
{% extends "!layout.html" %}
3+
{%- block content %}
4+
{%- if theme_fixed_sidebar|lower == 'true' %}
5+
<div class="document">
6+
{{ sidebar() }}
7+
{%- block document %}
8+
<div class="documentwrapper">
9+
{%- if render_sidebar %}
10+
<div class="bodywrapper">
11+
{%- endif %}
12+
13+
{%- block relbar_top %}
14+
{%- if theme_show_relbar_top|tobool %}
15+
<div class="related top">
16+
&nbsp;
17+
{{- rellink_markup () }}
18+
</div>
19+
{%- endif %}
20+
{% endblock %}
21+
22+
<div class="body" role="main">
23+
<div class="admonition" id="python2-eol">
24+
On January 1, 2020 this library will no longer support Python 2 on the latest released version.
25+
Previously released library versions will continue to be available. For more information please
26+
visit <a href="https://cloud.google.com/python/docs/python2-sunset/">Python 2 support on Google Cloud</a>.
27+
</div>
28+
{% block body %} {% endblock %}
29+
</div>
30+
31+
{%- block relbar_bottom %}
32+
{%- if theme_show_relbar_bottom|tobool %}
33+
<div class="related bottom">
34+
&nbsp;
35+
{{- rellink_markup () }}
36+
</div>
37+
{%- endif %}
38+
{% endblock %}
39+
40+
{%- if render_sidebar %}
41+
</div>
42+
{%- endif %}
43+
</div>
44+
{%- endblock %}
45+
<div class="clearer"></div>
46+
</div>
47+
{%- else %}
48+
{{ super() }}
49+
{%- endif %}
50+
{%- endblock %}

cloudbuild/docs/conf.py

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
#
3-
# google-cloud-build documentation build configuration file
3+
# google-cloud-cloudbuild documentation build configuration file
44
#
55
# This file is execfile()d with the current directory set to its
66
# containing dir.
@@ -65,7 +65,7 @@
6565
master_doc = "index"
6666

6767
# General information about the project.
68-
project = u"google-cloud-build"
68+
project = u"google-cloud-cloudbuild"
6969
copyright = u"2017, Google"
7070
author = u"Google APIs"
7171

@@ -227,7 +227,7 @@
227227
# html_search_scorer = 'scorer.js'
228228

229229
# Output file base name for HTML help builder.
230-
htmlhelp_basename = "google-cloud-build-doc"
230+
htmlhelp_basename = "google-cloud-cloudbuild-doc"
231231

232232
# -- Options for warnings ------------------------------------------------------
233233

@@ -260,8 +260,8 @@
260260
latex_documents = [
261261
(
262262
master_doc,
263-
"google-cloud-build.tex",
264-
u"google-cloud-build Documentation",
263+
"google-cloud-cloudbuild.tex",
264+
u"google-cloud-cloudbuild Documentation",
265265
author,
266266
"manual",
267267
)
@@ -293,7 +293,13 @@
293293
# One entry per manual page. List of tuples
294294
# (source start file, name, description, authors, manual section).
295295
man_pages = [
296-
(master_doc, "google-cloud-build", u"google-cloud-build Documentation", [author], 1)
296+
(
297+
master_doc,
298+
"google-cloud-cloudbuild",
299+
u"google-cloud-cloudbuild Documentation",
300+
[author],
301+
1,
302+
)
297303
]
298304

299305
# If true, show URL addresses after external links.
@@ -308,10 +314,10 @@
308314
texinfo_documents = [
309315
(
310316
master_doc,
311-
"google-cloud-build",
312-
u"google-cloud-build Documentation",
317+
"google-cloud-cloudbuild",
318+
u"google-cloud-cloudbuild Documentation",
313319
author,
314-
"google-cloud-build",
320+
"google-cloud-cloudbuild",
315321
"GAPIC library for the {metadata.shortName} v1 service",
316322
"APIs",
317323
)

0 commit comments

Comments
 (0)