blob: 0264d18a38d698bf4599f8cbe6523c9bf3c99ef2 [file] [log] [blame]
Michael Johnson34139b02017-03-15 10:31:10 -07001# -*- coding: utf-8 -*-
2# Licensed under the Apache License, Version 2.0 (the "License");
3# you may not use this file except in compliance with the License.
4# You may obtain a copy of the License at
5#
6# http://www.apache.org/licenses/LICENSE-2.0
7#
8# Unless required by applicable law or agreed to in writing, software
9# distributed under the License is distributed on an "AS IS" BASIS,
10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
11# implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15# Glance Release Notes documentation build configuration file, created by
16# sphinx-quickstart on Tue Nov 3 17:40:50 2015.
17#
18# This file is execfile()d with the current directory set to its
19# containing dir.
20#
21# Note that not all possible configuration values are present in this
22# autogenerated file.
23#
24# All configuration values have a default; values that are commented out
25# serve to show the default.
26
27# If extensions (or modules to document with autodoc) are in another directory,
28# add these directories to sys.path here. If the directory is relative to the
29# documentation root, use os.path.abspath to make it absolute, like shown here.
30# sys.path.insert(0, os.path.abspath('.'))
31
32# -- General configuration ------------------------------------------------
33
34# If your documentation needs a minimal Sphinx version, state it here.
35# needs_sphinx = '1.0'
36
37# Add any Sphinx extension module names here, as strings. They can be
38# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
39# ones.
40extensions = [
Michael Johnsonbdf01df2019-04-01 13:42:19 -070041 'openstackdocstheme',
Michael Johnson34139b02017-03-15 10:31:10 -070042 'reno.sphinxext',
43]
44
Michael Johnsonbdf01df2019-04-01 13:42:19 -070045# openstackdocstheme options
Andreas Jaegerd2c48812020-05-28 14:32:42 +020046openstackdocs_repo_name = 'openstack/octavia-tempest-plugin'
47openstackdocs_auto_name = False
Richard Cruise637e9422026-01-08 09:03:12 +000048openstackdocs_bug_project = 'octavia'
49openstackdocs_bug_tag = 'docs'
Michael Johnsonbdf01df2019-04-01 13:42:19 -070050
Michael Johnson34139b02017-03-15 10:31:10 -070051# Add any paths that contain templates here, relative to this directory.
52templates_path = ['_templates']
53
54# The suffix of source filenames.
55source_suffix = '.rst'
56
57# The encoding of source files.
58# source_encoding = 'utf-8-sig'
59
60# The master toctree document.
61master_doc = 'index'
62
63# General information about the project.
64project = u'octavia_tempest_plugin Release Notes'
65copyright = u'2016, OpenStack Foundation'
66
67# The version info for the project you're documenting, acts as replacement for
68# |version| and |release|, also used in various other places throughout the
69# built documents.
70#
71# The short X.Y version.
72# The full version, including alpha/beta/rc tags.
73release = ''
74# The short X.Y version.
75version = ''
76
77# The language for content autogenerated by Sphinx. Refer to documentation
78# for a list of supported languages.
79# language = None
80
81# There are two options for replacing |today|: either, you set today to some
82# non-false value, then it is used:
83# today = ''
84# Else, today_fmt is used as the format for a strftime call.
85# today_fmt = '%B %d, %Y'
86
87# List of patterns, relative to source directory, that match files and
88# directories to ignore when looking for source files.
89exclude_patterns = []
90
91# The reST default role (used for this markup: `text`) to use for all
92# documents.
93# default_role = None
94
95# If true, '()' will be appended to :func: etc. cross-reference text.
96# add_function_parentheses = True
97
98# If true, the current module name will be prepended to all description
99# unit titles (such as .. function::).
100# add_module_names = True
101
102# If true, sectionauthor and moduleauthor directives will be shown in the
103# output. They are ignored by default.
104# show_authors = False
105
106# The name of the Pygments (syntax highlighting) style to use.
Andreas Jaegerd2c48812020-05-28 14:32:42 +0200107pygments_style = 'native'
Michael Johnson34139b02017-03-15 10:31:10 -0700108
109# A list of ignored prefixes for module index sorting.
110# modindex_common_prefix = []
111
112# If true, keep warnings as "system message" paragraphs in the built documents.
113# keep_warnings = False
114
115
116# -- Options for HTML output ----------------------------------------------
117
118# The theme to use for HTML and HTML Help pages. See the documentation for
119# a list of builtin themes.
Michael Johnsonbdf01df2019-04-01 13:42:19 -0700120html_theme = 'openstackdocs'
Michael Johnson34139b02017-03-15 10:31:10 -0700121
122# Theme options are theme-specific and customize the look and feel of a theme
123# further. For a list of options available for each theme, see the
124# documentation.
125# html_theme_options = {}
126
127# Add any paths that contain custom themes here, relative to this directory.
128# html_theme_path = []
129
130# The name for this set of Sphinx documents. If None, it defaults to
131# "<project> v<release> documentation".
132# html_title = None
133
134# A shorter title for the navigation bar. Default is the same as html_title.
135# html_short_title = None
136
137# The name of an image file (relative to this directory) to place at the top
138# of the sidebar.
139# html_logo = None
140
141# The name of an image file (within the static path) to use as favicon of the
142# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
143# pixels large.
144# html_favicon = None
145
146# Add any paths that contain custom static files (such as style sheets) here,
147# relative to this directory. They are copied after the builtin static files,
148# so a file named "default.css" will overwrite the builtin "default.css".
149html_static_path = ['_static']
150
151# Add any extra paths that contain custom files (such as robots.txt or
152# .htaccess) here, relative to this directory. These files are copied
153# directly to the root of the documentation.
154# html_extra_path = []
155
156# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
157# using the given strftime format.
158# html_last_updated_fmt = '%b %d, %Y'
159
160# If true, SmartyPants will be used to convert quotes and dashes to
161# typographically correct entities.
162# html_use_smartypants = True
163
164# Custom sidebar templates, maps document names to template names.
165# html_sidebars = {}
166
167# Additional templates that should be rendered to pages, maps page names to
168# template names.
169# html_additional_pages = {}
170
171# If false, no module index is generated.
172# html_domain_indices = True
173
174# If false, no index is generated.
175# html_use_index = True
176
177# If true, the index is split into individual pages for each letter.
178# html_split_index = False
179
180# If true, links to the reST sources are added to the pages.
181# html_show_sourcelink = True
182
183# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
184# html_show_sphinx = True
185
186# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
187# html_show_copyright = True
188
189# If true, an OpenSearch description file will be output, and all pages will
190# contain a <link> tag referring to it. The value of this option must be the
191# base URL from which the finished HTML is served.
192# html_use_opensearch = ''
193
194# This is the file name suffix for HTML files (e.g. ".xhtml").
195# html_file_suffix = None
196
197# Output file base name for HTML help builder.
Michael Johnsonbdf01df2019-04-01 13:42:19 -0700198htmlhelp_basename = 'OctaviaTempestPluginReleaseNotesdoc'
Michael Johnson34139b02017-03-15 10:31:10 -0700199
200
201# -- Options for LaTeX output ---------------------------------------------
202
Michael Johnsonbdf01df2019-04-01 13:42:19 -0700203# latex_elements = {
204# # The paper size ('letterpaper' or 'a4paper').
205# # 'papersize': 'letterpaper',
206#
207# # The font size ('10pt', '11pt' or '12pt').
208# # 'pointsize': '10pt',
209#
210# # Additional stuff for the LaTeX preamble.
211# # 'preamble': '',
212# }
Michael Johnson34139b02017-03-15 10:31:10 -0700213
214# Grouping the document tree into LaTeX files. List of tuples
215# (source start file, target name, title,
216# author, documentclass [howto, manual, or own class]).
217latex_documents = [
Michael Johnsonbdf01df2019-04-01 13:42:19 -0700218 ('index', 'OctaviaTempestPluginReleaseNotes.tex',
219 u'Octavia Tempest Plugin Release Notes Documentation',
220 u'Octavia Developers', 'manual'),
Michael Johnson34139b02017-03-15 10:31:10 -0700221]
222
223# The name of an image file (relative to this directory) to place at the top of
224# the title page.
225# latex_logo = None
226
227# For "manual" documents, if this is true, then toplevel headings are parts,
228# not chapters.
229# latex_use_parts = False
230
231# If true, show page references after internal links.
232# latex_show_pagerefs = False
233
234# If true, show URL addresses after external links.
235# latex_show_urls = False
236
237# Documents to append as an appendix to all manuals.
238# latex_appendices = []
239
240# If false, no module index is generated.
241# latex_domain_indices = True
242
243
244# -- Options for manual page output ---------------------------------------
245
246# One entry per manual page. List of tuples
247# (source start file, name, description, authors, manual section).
248man_pages = [
Michael Johnsonbdf01df2019-04-01 13:42:19 -0700249 ('index', 'octaviatempestpluginreleasenotes',
250 u'Octavia Tempest Plugin Release Notes Documentation',
251 [u'Octavia Developers'], 1)
Michael Johnson34139b02017-03-15 10:31:10 -0700252]
253
254# If true, show URL addresses after external links.
255# man_show_urls = False
256
257
258# -- Options for Texinfo output -------------------------------------------
259
260# Grouping the document tree into Texinfo files. List of tuples
261# (source start file, target name, title, author,
262# dir menu entry, description, category)
263texinfo_documents = [
Michael Johnsonbdf01df2019-04-01 13:42:19 -0700264 ('index', 'OctaviaTempestPluginReleaseNotes',
265 u'Octavia Tempest Plugin Release Notes Documentation',
266 u'Octavia Developers', 'OctaviaTempestPluginReleaseNotes',
267 'Octavia Load Balancing as a Service for OpenStack.',
Michael Johnson34139b02017-03-15 10:31:10 -0700268 'Miscellaneous'),
269]
270
271# Documents to append as an appendix to all manuals.
272# texinfo_appendices = []
273
274# If false, no module index is generated.
275# texinfo_domain_indices = True
276
277# How to display URL addresses: 'footnote', 'no', or 'inline'.
278# texinfo_show_urls = 'footnote'
279
280# If true, do not generate a @detailmenu in the "Top" node's menu.
281# texinfo_no_detailmenu = False
282
283# -- Options for Internationalization output ------------------------------
284locale_dirs = ['locale/']