blob: b0ee980cb7a6ba2416777ddd199bd94613ef02d2 [file] [log] [blame]
DavidPurcell663aedf2017-01-03 10:01:14 -05001# -*- 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
raiesmh08a6348e12017-02-07 00:24:59 +053015# Patrole Release Notes documentation build configuration file, created by
16# sphinx-quickstart on Tue Jan 5 17:40:50 2017.
DavidPurcell663aedf2017-01-03 10:01:14 -050017#
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 = [
Van Hung Pham34193e32017-06-28 14:51:11 +070041 'openstackdocstheme',
DavidPurcell663aedf2017-01-03 10:01:14 -050042 'reno.sphinxext',
43]
44
45# Add any paths that contain templates here, relative to this directory.
46templates_path = ['_templates']
47
48# The suffix of source filenames.
49source_suffix = '.rst'
50
51# The encoding of source files.
52# source_encoding = 'utf-8-sig'
53
54# The master toctree document.
55master_doc = 'index'
56
57# General information about the project.
Felipe Monteiro7ae2ff12017-05-11 21:12:30 +010058project = u'Patrole Release Notes'
raiesmh08a6348e12017-02-07 00:24:59 +053059copyright = u'2017, Patrole Developers'
DavidPurcell663aedf2017-01-03 10:01:14 -050060
Anusha Raminenif07edf12017-11-17 08:41:09 +053061# Release do not need a version number in the title, they
62# cover multiple versions.
63
DavidPurcell663aedf2017-01-03 10:01:14 -050064# The full version, including alpha/beta/rc tags.
Anusha Raminenif07edf12017-11-17 08:41:09 +053065release = ''
DavidPurcell663aedf2017-01-03 10:01:14 -050066# The short X.Y version.
Anusha Raminenif07edf12017-11-17 08:41:09 +053067version = ''
DavidPurcell663aedf2017-01-03 10:01:14 -050068
69# The language for content autogenerated by Sphinx. Refer to documentation
70# for a list of supported languages.
71# language = None
72
73# There are two options for replacing |today|: either, you set today to some
74# non-false value, then it is used:
75# today = ''
76# Else, today_fmt is used as the format for a strftime call.
77# today_fmt = '%B %d, %Y'
78
79# List of patterns, relative to source directory, that match files and
80# directories to ignore when looking for source files.
81exclude_patterns = []
82
83# The reST default role (used for this markup: `text`) to use for all
84# documents.
85# default_role = None
86
87# If true, '()' will be appended to :func: etc. cross-reference text.
88# add_function_parentheses = True
89
90# If true, the current module name will be prepended to all description
91# unit titles (such as .. function::).
92# add_module_names = True
93
94# If true, sectionauthor and moduleauthor directives will be shown in the
95# output. They are ignored by default.
96# show_authors = False
97
98# The name of the Pygments (syntax highlighting) style to use.
99pygments_style = 'sphinx'
100
101# A list of ignored prefixes for module index sorting.
102# modindex_common_prefix = []
103
104# If true, keep warnings as "system message" paragraphs in the built documents.
105# keep_warnings = False
106
107
108# -- Options for HTML output ----------------------------------------------
109
110# The theme to use for HTML and HTML Help pages. See the documentation for
111# a list of builtin themes.
Van Hung Pham34193e32017-06-28 14:51:11 +0700112html_theme = 'openstackdocs'
DavidPurcell663aedf2017-01-03 10:01:14 -0500113
114# Theme options are theme-specific and customize the look and feel of a theme
115# further. For a list of options available for each theme, see the
116# documentation.
117# html_theme_options = {}
118
119# Add any paths that contain custom themes here, relative to this directory.
120# html_theme_path = []
121
122# The name for this set of Sphinx documents. If None, it defaults to
123# "<project> v<release> documentation".
124# html_title = None
125
126# A shorter title for the navigation bar. Default is the same as html_title.
127# html_short_title = None
128
129# The name of an image file (relative to this directory) to place at the top
130# of the sidebar.
131# html_logo = None
132
133# The name of an image file (within the static path) to use as favicon of the
134# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
135# pixels large.
136# html_favicon = None
137
138# Add any paths that contain custom static files (such as style sheets) here,
139# relative to this directory. They are copied after the builtin static files,
140# so a file named "default.css" will overwrite the builtin "default.css".
141html_static_path = ['_static']
142
143# Add any extra paths that contain custom files (such as robots.txt or
144# .htaccess) here, relative to this directory. These files are copied
145# directly to the root of the documentation.
146# html_extra_path = []
147
DavidPurcell663aedf2017-01-03 10:01:14 -0500148# If true, SmartyPants will be used to convert quotes and dashes to
149# typographically correct entities.
150# html_use_smartypants = True
151
152# Custom sidebar templates, maps document names to template names.
153# html_sidebars = {}
154
155# Additional templates that should be rendered to pages, maps page names to
156# template names.
157# html_additional_pages = {}
158
159# If false, no module index is generated.
160# html_domain_indices = True
161
162# If false, no index is generated.
163# html_use_index = True
164
165# If true, the index is split into individual pages for each letter.
166# html_split_index = False
167
168# If true, links to the reST sources are added to the pages.
169# html_show_sourcelink = True
170
171# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
172# html_show_sphinx = True
173
174# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
175# html_show_copyright = True
176
177# If true, an OpenSearch description file will be output, and all pages will
178# contain a <link> tag referring to it. The value of this option must be the
179# base URL from which the finished HTML is served.
180# html_use_opensearch = ''
181
182# This is the file name suffix for HTML files (e.g. ".xhtml").
183# html_file_suffix = None
184
185# Output file base name for HTML help builder.
raiesmh08a6348e12017-02-07 00:24:59 +0530186htmlhelp_basename = 'PatroleReleaseNotesdoc'
DavidPurcell663aedf2017-01-03 10:01:14 -0500187
Van Hung Pham34193e32017-06-28 14:51:11 +0700188# openstackdocstheme options
Andreas Jaeger5d65c582020-05-19 20:25:58 +0200189openstackdocs_repo_name = 'openstack/patrole'
190openstackdocs_bug_project = 'patrole'
191openstackdocs_bug_tag = ''
192openstackdocs_auto_name = False
DavidPurcell663aedf2017-01-03 10:01:14 -0500193
194# -- Options for LaTeX output ---------------------------------------------
195
196latex_elements = {
197 # The paper size ('letterpaper' or 'a4paper').
198 # 'papersize': 'letterpaper',
199
200 # The font size ('10pt', '11pt' or '12pt').
201 # 'pointsize': '10pt',
202
203 # Additional stuff for the LaTeX preamble.
204 # 'preamble': '',
205}
206
207# Grouping the document tree into LaTeX files. List of tuples
208# (source start file, target name, title,
209# author, documentclass [howto, manual, or own class]).
210latex_documents = [
raiesmh08a6348e12017-02-07 00:24:59 +0530211 ('index', 'PatroleReleaseNotes.tex',
212 u'Patrole Release Notes Documentation',
213 u'Patrole Developers', 'manual'),
DavidPurcell663aedf2017-01-03 10:01:14 -0500214]
215
216# The name of an image file (relative to this directory) to place at the top of
217# the title page.
218# latex_logo = None
219
220# For "manual" documents, if this is true, then toplevel headings are parts,
221# not chapters.
222# latex_use_parts = False
223
224# If true, show page references after internal links.
225# latex_show_pagerefs = False
226
227# If true, show URL addresses after external links.
228# latex_show_urls = False
229
230# Documents to append as an appendix to all manuals.
231# latex_appendices = []
232
233# If false, no module index is generated.
234# latex_domain_indices = True
235
236
237# -- Options for manual page output ---------------------------------------
238
239# One entry per manual page. List of tuples
240# (source start file, name, description, authors, manual section).
241man_pages = [
raiesmh08a6348e12017-02-07 00:24:59 +0530242 ('index', 'patrolereleasenotes', u'Patrole Release Notes Documentation',
243 [u'Patrole Developers'], 1)
DavidPurcell663aedf2017-01-03 10:01:14 -0500244]
245
246# If true, show URL addresses after external links.
247# man_show_urls = False
248
249
250# -- Options for Texinfo output -------------------------------------------
251
252# Grouping the document tree into Texinfo files. List of tuples
253# (source start file, target name, title, author,
254# dir menu entry, description, category)
255texinfo_documents = [
raiesmh08a6348e12017-02-07 00:24:59 +0530256 ('index', 'PatroleReleaseNotes', u'Patrole Release Notes Documentation',
257 u'Patrole Developers', 'PatroleReleaseNotes',
Felipe Monteiro7ae2ff12017-05-11 21:12:30 +0100258 'A Tempest plugin for performing RBAC testing.',
DavidPurcell663aedf2017-01-03 10:01:14 -0500259 'Miscellaneous'),
260]
261
262# Documents to append as an appendix to all manuals.
263# texinfo_appendices = []
264
265# If false, no module index is generated.
266# texinfo_domain_indices = True
267
268# How to display URL addresses: 'footnote', 'no', or 'inline'.
269# texinfo_show_urls = 'footnote'
270
271# If true, do not generate a @detailmenu in the "Top" node's menu.
272# texinfo_no_detailmenu = False
273
274# -- Options for Internationalization output ------------------------------
275locale_dirs = ['locale/']