blob: 1aeff4b614a4b1d85ffadf85a0fc3f0441eceb64 [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
148# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
149# using the given strftime format.
Van Hung Pham34193e32017-06-28 14:51:11 +0700150html_last_updated_fmt = '%Y-%m-%d %H:%M'
DavidPurcell663aedf2017-01-03 10:01:14 -0500151
152# If true, SmartyPants will be used to convert quotes and dashes to
153# typographically correct entities.
154# html_use_smartypants = True
155
156# Custom sidebar templates, maps document names to template names.
157# html_sidebars = {}
158
159# Additional templates that should be rendered to pages, maps page names to
160# template names.
161# html_additional_pages = {}
162
163# If false, no module index is generated.
164# html_domain_indices = True
165
166# If false, no index is generated.
167# html_use_index = True
168
169# If true, the index is split into individual pages for each letter.
170# html_split_index = False
171
172# If true, links to the reST sources are added to the pages.
173# html_show_sourcelink = True
174
175# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
176# html_show_sphinx = True
177
178# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
179# html_show_copyright = True
180
181# If true, an OpenSearch description file will be output, and all pages will
182# contain a <link> tag referring to it. The value of this option must be the
183# base URL from which the finished HTML is served.
184# html_use_opensearch = ''
185
186# This is the file name suffix for HTML files (e.g. ".xhtml").
187# html_file_suffix = None
188
189# Output file base name for HTML help builder.
raiesmh08a6348e12017-02-07 00:24:59 +0530190htmlhelp_basename = 'PatroleReleaseNotesdoc'
DavidPurcell663aedf2017-01-03 10:01:14 -0500191
Van Hung Pham34193e32017-06-28 14:51:11 +0700192# openstackdocstheme options
193repository_name = 'openstack/patrole'
194bug_project = 'patrole'
195bug_tag = ''
196
DavidPurcell663aedf2017-01-03 10:01:14 -0500197
198# -- Options for LaTeX output ---------------------------------------------
199
200latex_elements = {
201 # The paper size ('letterpaper' or 'a4paper').
202 # 'papersize': 'letterpaper',
203
204 # The font size ('10pt', '11pt' or '12pt').
205 # 'pointsize': '10pt',
206
207 # Additional stuff for the LaTeX preamble.
208 # 'preamble': '',
209}
210
211# Grouping the document tree into LaTeX files. List of tuples
212# (source start file, target name, title,
213# author, documentclass [howto, manual, or own class]).
214latex_documents = [
raiesmh08a6348e12017-02-07 00:24:59 +0530215 ('index', 'PatroleReleaseNotes.tex',
216 u'Patrole Release Notes Documentation',
217 u'Patrole Developers', 'manual'),
DavidPurcell663aedf2017-01-03 10:01:14 -0500218]
219
220# The name of an image file (relative to this directory) to place at the top of
221# the title page.
222# latex_logo = None
223
224# For "manual" documents, if this is true, then toplevel headings are parts,
225# not chapters.
226# latex_use_parts = False
227
228# If true, show page references after internal links.
229# latex_show_pagerefs = False
230
231# If true, show URL addresses after external links.
232# latex_show_urls = False
233
234# Documents to append as an appendix to all manuals.
235# latex_appendices = []
236
237# If false, no module index is generated.
238# latex_domain_indices = True
239
240
241# -- Options for manual page output ---------------------------------------
242
243# One entry per manual page. List of tuples
244# (source start file, name, description, authors, manual section).
245man_pages = [
raiesmh08a6348e12017-02-07 00:24:59 +0530246 ('index', 'patrolereleasenotes', u'Patrole Release Notes Documentation',
247 [u'Patrole Developers'], 1)
DavidPurcell663aedf2017-01-03 10:01:14 -0500248]
249
250# If true, show URL addresses after external links.
251# man_show_urls = False
252
253
254# -- Options for Texinfo output -------------------------------------------
255
256# Grouping the document tree into Texinfo files. List of tuples
257# (source start file, target name, title, author,
258# dir menu entry, description, category)
259texinfo_documents = [
raiesmh08a6348e12017-02-07 00:24:59 +0530260 ('index', 'PatroleReleaseNotes', u'Patrole Release Notes Documentation',
261 u'Patrole Developers', 'PatroleReleaseNotes',
Felipe Monteiro7ae2ff12017-05-11 21:12:30 +0100262 'A Tempest plugin for performing RBAC testing.',
DavidPurcell663aedf2017-01-03 10:01:14 -0500263 'Miscellaneous'),
264]
265
266# Documents to append as an appendix to all manuals.
267# texinfo_appendices = []
268
269# If false, no module index is generated.
270# texinfo_domain_indices = True
271
272# How to display URL addresses: 'footnote', 'no', or 'inline'.
273# texinfo_show_urls = 'footnote'
274
275# If true, do not generate a @detailmenu in the "Top" node's menu.
276# texinfo_no_detailmenu = False
277
278# -- Options for Internationalization output ------------------------------
279locale_dirs = ['locale/']