blob: 56043ba6f73e11954fcdc63f829c16035495ac0e [file] [log] [blame]
Sean M. Collins09e550c2014-10-21 11:40:08 -04001# -*- coding: utf-8 -*-
2#
3# Tempest documentation build configuration file, created by
4# sphinx-quickstart on Tue May 21 17:43:32 2013.
5#
6# This file is execfile()d with the current directory set to its containing dir.
7#
8# Note that not all possible configuration values are present in this
9# autogenerated file.
10#
11# All configuration values have a default; values that are commented out
12# serve to show the default.
13
Sean M. Collins09e550c2014-10-21 11:40:08 -040014# If extensions (or modules to document with autodoc) are in another directory,
15# add these directories to sys.path here. If the directory is relative to the
16# documentation root, use os.path.abspath to make it absolute, like shown here.
17#sys.path.insert(0, os.path.abspath('.'))
18
19# -- General configuration -----------------------------------------------------
20
21# If your documentation needs a minimal Sphinx version, state it here.
22#needs_sphinx = '1.0'
23
24# Add any Sphinx extension module names here, as strings. They can be extensions
25# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Andreas Jaeger8dd89e52019-08-11 16:00:12 +020026extensions = [ 'sphinx.ext.autodoc',
27 'zuul_sphinx',
28 'openstackdocstheme',
29 'sphinxcontrib.blockdiag',
30 'sphinxcontrib.nwdiag' ]
Ian Wienandd2fbcd22017-07-24 10:34:22 +100031
32# openstackdocstheme options
33repository_name = 'openstack-dev/devstack'
34bug_project = 'devstack'
35bug_tag = ''
Sean M. Collins09e550c2014-10-21 11:40:08 -040036
37todo_include_todos = True
38
39# Add any paths that contain templates here, relative to this directory.
40templates_path = ['_templates']
41
42# The suffix of source filenames.
43source_suffix = '.rst'
44
45# The encoding of source files.
46#source_encoding = 'utf-8-sig'
47
48# The master toctree document.
49master_doc = 'index'
50
51# General information about the project.
52project = u'DevStack'
53copyright = u'2014, OpenStack Foundation'
54
55# The language for content autogenerated by Sphinx. Refer to documentation
56# for a list of supported languages.
57#language = None
58
59# There are two options for replacing |today|: either, you set today to some
60# non-false value, then it is used:
61#today = ''
62# Else, today_fmt is used as the format for a strftime call.
63#today_fmt = '%B %d, %Y'
64
65# List of patterns, relative to source directory, that match files and
66# directories to ignore when looking for source files.
67exclude_patterns = ['_build']
68
69# The reST default role (used for this markup: `text`) to use for all documents.
70#default_role = None
71
72# If true, '()' will be appended to :func: etc. cross-reference text.
73#add_function_parentheses = True
74
75# If true, the current module name will be prepended to all description
76# unit titles (such as .. function::).
77add_module_names = False
78
79# If true, sectionauthor and moduleauthor directives will be shown in the
80# output. They are ignored by default.
81show_authors = False
82
83# The name of the Pygments (syntax highlighting) style to use.
84pygments_style = 'sphinx'
85
86# A list of ignored prefixes for module index sorting.
87modindex_common_prefix = ['DevStack-doc.']
88
89# -- Options for man page output ----------------------------------------------
90man_pages = []
91
92# -- Options for HTML output ---------------------------------------------------
93
94# The theme to use for HTML and HTML Help pages. See the documentation for
95# a list of builtin themes.
Ian Wienandd2fbcd22017-07-24 10:34:22 +100096html_theme = 'openstackdocs'
Sean M. Collins09e550c2014-10-21 11:40:08 -040097
98# Theme options are theme-specific and customize the look and feel of a theme
99# further. For a list of options available for each theme, see the
100# documentation.
101#html_theme_options = {}
102
103# Add any paths that contain custom themes here, relative to this directory.
104#html_theme_path = []
105
106# The name for this set of Sphinx documents. If None, it defaults to
107# "<project> v<release> documentation".
108#html_title = None
109
110# A shorter title for the navigation bar. Default is the same as html_title.
111#html_short_title = None
112
113# The name of an image file (relative to this directory) to place at the top
114# of the sidebar.
115#html_logo = None
116
117# The name of an image file (within the static path) to use as favicon of the
118# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
119# pixels large.
120#html_favicon = None
121
Sean M. Collins09e550c2014-10-21 11:40:08 -0400122# If true, SmartyPants will be used to convert quotes and dashes to
123# typographically correct entities.
124#html_use_smartypants = True
125
126# Custom sidebar templates, maps document names to template names.
127#html_sidebars = {}
128
129# Additional templates that should be rendered to pages, maps page names to
130# template names.
131#html_additional_pages = {}
132
133# If false, no module index is generated.
134html_domain_indices = False
135
136# If false, no index is generated.
137html_use_index = False
138
139# If true, the index is split into individual pages for each letter.
140#html_split_index = False
141
142# If true, links to the reST sources are added to the pages.
143#html_show_sourcelink = True
144
145# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
146#html_show_sphinx = True
147
148# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
149#html_show_copyright = True
150
151# If true, an OpenSearch description file will be output, and all pages will
152# contain a <link> tag referring to it. The value of this option must be the
153# base URL from which the finished HTML is served.
154#html_use_opensearch = ''
155
156# This is the file name suffix for HTML files (e.g. ".xhtml").
157#html_file_suffix = None
158
159# Output file base name for HTML help builder.
160htmlhelp_basename = 'DevStack-doc'
161
162
163# -- Options for LaTeX output --------------------------------------------------
164
Sean M. Collins09e550c2014-10-21 11:40:08 -0400165# Grouping the document tree into LaTeX files. List of tuples
166# (source start file, target name, title, author, documentclass [howto/manual]).
167latex_documents = [
Masayuki Igawa12e5ddc2019-09-25 12:23:16 +0900168 ('index', 'doc-devstack.tex', u'DevStack Docs',
Sean M. Collins09e550c2014-10-21 11:40:08 -0400169 u'OpenStack DevStack Team', 'manual'),
170]
171
172# The name of an image file (relative to this directory) to place at the top of
173# the title page.
174#latex_logo = None
175
176# For "manual" documents, if this is true, then toplevel headings are parts,
177# not chapters.
178#latex_use_parts = False
179
180# If true, show page references after internal links.
181#latex_show_pagerefs = False
182
183# If true, show URL addresses after external links.
184#latex_show_urls = False
185
186# Documents to append as an appendix to all manuals.
187#latex_appendices = []
188
189# If false, no module index is generated.
190#latex_domain_indices = True
191
192# -- Options for Texinfo output ------------------------------------------------
193
194# Grouping the document tree into Texinfo files. List of tuples
195# (source start file, target name, title, author,
196# dir menu entry, description, category)
197texinfo_documents = [
198 ('index', 'DevStack-doc', u'DevStack Docs',
199 u'OpenStack DevStack Team', 'DevStack-doc', 'DevStack documentation',
200 'Miscellaneous'),
201]
202
203# Documents to append as an appendix to all manuals.
204#texinfo_appendices = []
205
206# If false, no module index is generated.
207#texinfo_domain_indices = True
208
209# How to display URL addresses: 'footnote', 'no', or 'inline'.
210#texinfo_show_urls = 'footnote'
211
212
213# -- Options for Epub output ---------------------------------------------------
214
215# Bibliographic Dublin Core info.
216epub_title = u'DevStack Documentation'
217epub_author = u'OpenStack DevStack Team'
218epub_publisher = u'OpenStack DevStack Team'
219epub_copyright = u'2014, OpenStack DevStack Team'
220
221# The language of the text. It defaults to the language option
222# or en if the language is not set.
223#epub_language = ''
224
225# The scheme of the identifier. Typical schemes are ISBN or URL.
226#epub_scheme = ''
227
228# The unique identifier of the text. This can be a ISBN number
229# or the project homepage.
230#epub_identifier = ''
231
232# A unique identification for the text.
233#epub_uid = ''
234
235# A tuple containing the cover image and cover page html template filenames.
236#epub_cover = ()
237
238# HTML files that should be inserted before the pages created by sphinx.
239# The format is a list of tuples containing the path and title.
240#epub_pre_files = []
241
242# HTML files shat should be inserted after the pages created by sphinx.
243# The format is a list of tuples containing the path and title.
244#epub_post_files = []
245
246# A list of files that should not be packed into the epub file.
247#epub_exclude_files = []
248
249# The depth of the table of contents in toc.ncx.
250#epub_tocdepth = 3
251
252# Allow duplicate toc entries.
253#epub_tocdup = True