blob: bb0357286a32f7cba144d596bf19da881e29c6d2 [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.
Stephen Finucane6512f012024-08-26 12:19:06 +010026extensions = [
27 'sphinx.ext.autodoc',
28 'zuul_sphinx',
29 'openstackdocstheme',
30]
Ian Wienandd2fbcd22017-07-24 10:34:22 +100031
32# openstackdocstheme options
Stephen Finucane6512f012024-08-26 12:19:06 +010033openstackdocs_repo_name = 'openstack/devstack'
Andreas Jaeger7f1a8c12020-05-19 08:40:52 +020034openstackdocs_pdf_link = True
35openstackdocs_bug_project = 'devstack'
36openstackdocs_bug_tag = ''
37openstackdocs_auto_name = False
38# This repo is not tagged, so don't set versions
39openstackdocs_auto_version = False
40version = ''
41release = ''
Sean M. Collins09e550c2014-10-21 11:40:08 -040042
43todo_include_todos = True
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.
58project = u'DevStack'
59copyright = u'2014, OpenStack Foundation'
60
61# The language for content autogenerated by Sphinx. Refer to documentation
62# for a list of supported languages.
63#language = None
64
65# There are two options for replacing |today|: either, you set today to some
66# non-false value, then it is used:
67#today = ''
68# Else, today_fmt is used as the format for a strftime call.
69#today_fmt = '%B %d, %Y'
70
71# List of patterns, relative to source directory, that match files and
72# directories to ignore when looking for source files.
73exclude_patterns = ['_build']
74
75# The reST default role (used for this markup: `text`) to use for all documents.
76#default_role = None
77
78# If true, '()' will be appended to :func: etc. cross-reference text.
79#add_function_parentheses = True
80
81# If true, the current module name will be prepended to all description
82# unit titles (such as .. function::).
83add_module_names = False
84
85# If true, sectionauthor and moduleauthor directives will be shown in the
86# output. They are ignored by default.
87show_authors = False
88
89# The name of the Pygments (syntax highlighting) style to use.
Andreas Jaeger7f1a8c12020-05-19 08:40:52 +020090pygments_style = 'native'
Sean M. Collins09e550c2014-10-21 11:40:08 -040091
92# A list of ignored prefixes for module index sorting.
93modindex_common_prefix = ['DevStack-doc.']
94
95# -- Options for man page output ----------------------------------------------
96man_pages = []
97
98# -- Options for HTML output ---------------------------------------------------
99
100# The theme to use for HTML and HTML Help pages. See the documentation for
101# a list of builtin themes.
Ian Wienandd2fbcd22017-07-24 10:34:22 +1000102html_theme = 'openstackdocs'
Sean M. Collins09e550c2014-10-21 11:40:08 -0400103
104# Theme options are theme-specific and customize the look and feel of a theme
105# further. For a list of options available for each theme, see the
106# documentation.
107#html_theme_options = {}
108
109# Add any paths that contain custom themes here, relative to this directory.
110#html_theme_path = []
111
112# The name for this set of Sphinx documents. If None, it defaults to
113# "<project> v<release> documentation".
114#html_title = None
115
116# A shorter title for the navigation bar. Default is the same as html_title.
117#html_short_title = None
118
119# The name of an image file (relative to this directory) to place at the top
120# of the sidebar.
121#html_logo = None
122
123# The name of an image file (within the static path) to use as favicon of the
124# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
125# pixels large.
126#html_favicon = None
127
Sean M. Collins09e550c2014-10-21 11:40:08 -0400128# If true, SmartyPants will be used to convert quotes and dashes to
129# typographically correct entities.
130#html_use_smartypants = True
131
132# Custom sidebar templates, maps document names to template names.
133#html_sidebars = {}
134
135# Additional templates that should be rendered to pages, maps page names to
136# template names.
137#html_additional_pages = {}
138
139# If false, no module index is generated.
140html_domain_indices = False
141
142# If false, no index is generated.
143html_use_index = False
144
145# If true, the index is split into individual pages for each letter.
146#html_split_index = False
147
148# If true, links to the reST sources are added to the pages.
149#html_show_sourcelink = True
150
151# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
152#html_show_sphinx = True
153
154# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
155#html_show_copyright = True
156
157# If true, an OpenSearch description file will be output, and all pages will
158# contain a <link> tag referring to it. The value of this option must be the
159# base URL from which the finished HTML is served.
160#html_use_opensearch = ''
161
162# This is the file name suffix for HTML files (e.g. ".xhtml").
163#html_file_suffix = None
164
165# Output file base name for HTML help builder.
166htmlhelp_basename = 'DevStack-doc'
167
168
169# -- Options for LaTeX output --------------------------------------------------
170
Sean M. Collins09e550c2014-10-21 11:40:08 -0400171# Grouping the document tree into LaTeX files. List of tuples
172# (source start file, target name, title, author, documentclass [howto/manual]).
173latex_documents = [
Masayuki Igawa12e5ddc2019-09-25 12:23:16 +0900174 ('index', 'doc-devstack.tex', u'DevStack Docs',
Sean M. Collins09e550c2014-10-21 11:40:08 -0400175 u'OpenStack DevStack Team', 'manual'),
176]
177
178# The name of an image file (relative to this directory) to place at the top of
179# the title page.
180#latex_logo = None
181
182# For "manual" documents, if this is true, then toplevel headings are parts,
183# not chapters.
184#latex_use_parts = False
185
186# If true, show page references after internal links.
187#latex_show_pagerefs = False
188
189# If true, show URL addresses after external links.
190#latex_show_urls = False
191
192# Documents to append as an appendix to all manuals.
193#latex_appendices = []
194
195# If false, no module index is generated.
196#latex_domain_indices = True
197
198# -- Options for Texinfo output ------------------------------------------------
199
200# Grouping the document tree into Texinfo files. List of tuples
201# (source start file, target name, title, author,
202# dir menu entry, description, category)
203texinfo_documents = [
204 ('index', 'DevStack-doc', u'DevStack Docs',
205 u'OpenStack DevStack Team', 'DevStack-doc', 'DevStack documentation',
206 'Miscellaneous'),
207]
208
209# Documents to append as an appendix to all manuals.
210#texinfo_appendices = []
211
212# If false, no module index is generated.
213#texinfo_domain_indices = True
214
215# How to display URL addresses: 'footnote', 'no', or 'inline'.
216#texinfo_show_urls = 'footnote'
217
218
219# -- Options for Epub output ---------------------------------------------------
220
221# Bibliographic Dublin Core info.
222epub_title = u'DevStack Documentation'
223epub_author = u'OpenStack DevStack Team'
224epub_publisher = u'OpenStack DevStack Team'
225epub_copyright = u'2014, OpenStack DevStack Team'
226
227# The language of the text. It defaults to the language option
228# or en if the language is not set.
229#epub_language = ''
230
231# The scheme of the identifier. Typical schemes are ISBN or URL.
232#epub_scheme = ''
233
234# The unique identifier of the text. This can be a ISBN number
235# or the project homepage.
236#epub_identifier = ''
237
238# A unique identification for the text.
239#epub_uid = ''
240
241# A tuple containing the cover image and cover page html template filenames.
242#epub_cover = ()
243
244# HTML files that should be inserted before the pages created by sphinx.
245# The format is a list of tuples containing the path and title.
246#epub_pre_files = []
247
248# HTML files shat should be inserted after the pages created by sphinx.
249# The format is a list of tuples containing the path and title.
250#epub_post_files = []
251
252# A list of files that should not be packed into the epub file.
253#epub_exclude_files = []
254
255# The depth of the table of contents in toc.ncx.
256#epub_tocdepth = 3
257
258# Allow duplicate toc entries.
259#epub_tocdup = True