blob: 127613dcb43bcdd7c46d9d11ef04520c368dd849 [file] [log] [blame]
Sean Dagueb56052b2013-05-21 17:57:41 -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
Matthew Treinish6d5c0522013-09-11 15:50:30 +000014import sys
15import os
Matthew Treinish13ed69f2015-08-10 11:51:54 -040016import subprocess
17
Matthew Treinishfc463262016-06-29 10:39:02 -040018# Build the plugin registry
19def build_plugin_registry(app):
20 root_dir = os.path.dirname(
21 os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
22 subprocess.call(['tools/generate-tempest-plugins-list.sh'], cwd=root_dir)
23
24def setup(app):
25 app.connect('builder-inited', build_plugin_registry)
26
27
28
Sean Dagueb56052b2013-05-21 17:57:41 -040029# If extensions (or modules to document with autodoc) are in another directory,
30# add these directories to sys.path here. If the directory is relative to the
31# documentation root, use os.path.abspath to make it absolute, like shown here.
32#sys.path.insert(0, os.path.abspath('.'))
33
34# -- General configuration -----------------------------------------------------
35
36# If your documentation needs a minimal Sphinx version, state it here.
37#needs_sphinx = '1.0'
38
39# Add any Sphinx extension module names here, as strings. They can be extensions
40# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Matthew Treinish6d5c0522013-09-11 15:50:30 +000041extensions = ['sphinx.ext.autodoc',
Matthew Treinish6d5c0522013-09-11 15:50:30 +000042 'sphinx.ext.todo',
43 'sphinx.ext.viewcode',
Matthew Treinish1719dfe2015-08-24 17:55:09 -040044 'oslosphinx',
45 'oslo_config.sphinxconfiggen',
Matthew Treinish6d5c0522013-09-11 15:50:30 +000046 ]
47
Matthew Treinishbdef1c72016-06-21 18:06:49 -040048config_generator_config_file = '../../tempest/cmd/config-generator.tempest.conf'
Matthew Treinish1719dfe2015-08-24 17:55:09 -040049sample_config_basename = '_static/tempest'
50
Matthew Treinish6d5c0522013-09-11 15:50:30 +000051todo_include_todos = True
Sean Dagueb56052b2013-05-21 17:57:41 -040052
53# Add any paths that contain templates here, relative to this directory.
54templates_path = ['_templates']
55
56# The suffix of source filenames.
57source_suffix = '.rst'
58
59# The encoding of source files.
60#source_encoding = 'utf-8-sig'
61
62# The master toctree document.
63master_doc = 'index'
64
65# General information about the project.
66project = u'Tempest'
Matthew Treinish6d5c0522013-09-11 15:50:30 +000067copyright = u'2013, OpenStack QA Team'
Sean Dagueb56052b2013-05-21 17:57:41 -040068
Sean Dagueb56052b2013-05-21 17:57:41 -040069# 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 = ['_build']
82
83# The reST default role (used for this markup: `text`) to use for all documents.
84#default_role = None
85
86# If true, '()' will be appended to :func: etc. cross-reference text.
87#add_function_parentheses = True
88
89# If true, the current module name will be prepended to all description
90# unit titles (such as .. function::).
Matthew Treinish6d5c0522013-09-11 15:50:30 +000091add_module_names = False
Sean Dagueb56052b2013-05-21 17:57:41 -040092
93# If true, sectionauthor and moduleauthor directives will be shown in the
94# output. They are ignored by default.
Matthew Treinish6d5c0522013-09-11 15:50:30 +000095show_authors = False
Sean Dagueb56052b2013-05-21 17:57:41 -040096
97# The name of the Pygments (syntax highlighting) style to use.
98pygments_style = 'sphinx'
99
100# A list of ignored prefixes for module index sorting.
Matthew Treinish6d5c0522013-09-11 15:50:30 +0000101modindex_common_prefix = ['tempest.']
Sean Dagueb56052b2013-05-21 17:57:41 -0400102
103
104# -- Options for HTML output ---------------------------------------------------
105
106# The theme to use for HTML and HTML Help pages. See the documentation for
107# a list of builtin themes.
Sean Dague7679b482013-05-24 08:49:44 -0400108html_theme = 'nature'
Sean Dagueb56052b2013-05-21 17:57:41 -0400109
110# Theme options are theme-specific and customize the look and feel of a theme
111# further. For a list of options available for each theme, see the
112# documentation.
113#html_theme_options = {}
114
115# Add any paths that contain custom themes here, relative to this directory.
116#html_theme_path = []
117
118# The name for this set of Sphinx documents. If None, it defaults to
119# "<project> v<release> documentation".
120#html_title = None
121
122# A shorter title for the navigation bar. Default is the same as html_title.
123#html_short_title = None
124
125# The name of an image file (relative to this directory) to place at the top
126# of the sidebar.
127#html_logo = None
128
129# The name of an image file (within the static path) to use as favicon of the
130# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
131# pixels large.
132#html_favicon = None
133
134# Add any paths that contain custom static files (such as style sheets) here,
135# relative to this directory. They are copied after the builtin static files,
136# so a file named "default.css" will overwrite the builtin "default.css".
137html_static_path = ['_static']
138
139# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
140# using the given strftime format.
Harshada Mangesh Kakadd11d5ee2015-12-31 01:38:46 -0800141git_cmd = ["git", "log", "--pretty=format:'%ad, commit %h'", "--date=local",
142 "-n1"]
143html_last_updated_fmt = subprocess.Popen(git_cmd,
144 stdout=subprocess.PIPE).\
145 communicate()[0]
Sean Dagueb56052b2013-05-21 17:57:41 -0400146
147# If true, SmartyPants will be used to convert quotes and dashes to
148# typographically correct entities.
Masayuki Igawa44ca9ed2016-06-10 09:25:48 +0900149html_use_smartypants = False
Sean Dagueb56052b2013-05-21 17:57:41 -0400150
151# Custom sidebar templates, maps document names to template names.
152#html_sidebars = {}
153
154# Additional templates that should be rendered to pages, maps page names to
155# template names.
156#html_additional_pages = {}
157
158# If false, no module index is generated.
Michael Chapman4410ca12013-06-25 13:05:10 +1000159html_domain_indices = False
Sean Dagueb56052b2013-05-21 17:57:41 -0400160
161# If false, no index is generated.
Michael Chapman4410ca12013-06-25 13:05:10 +1000162html_use_index = False
Sean Dagueb56052b2013-05-21 17:57:41 -0400163
164# If true, the index is split into individual pages for each letter.
165#html_split_index = False
166
167# If true, links to the reST sources are added to the pages.
168#html_show_sourcelink = True
169
170# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
171#html_show_sphinx = True
172
173# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
174#html_show_copyright = True
175
176# If true, an OpenSearch description file will be output, and all pages will
177# contain a <link> tag referring to it. The value of this option must be the
178# base URL from which the finished HTML is served.
179#html_use_opensearch = ''
180
181# This is the file name suffix for HTML files (e.g. ".xhtml").
182#html_file_suffix = None
183
184# Output file base name for HTML help builder.
185htmlhelp_basename = 'Tempestdoc'
186
187
188# -- Options for LaTeX output --------------------------------------------------
189
190latex_elements = {
191# The paper size ('letterpaper' or 'a4paper').
192#'papersize': 'letterpaper',
193
194# The font size ('10pt', '11pt' or '12pt').
195#'pointsize': '10pt',
196
197# Additional stuff for the LaTeX preamble.
198#'preamble': '',
199}
200
201# Grouping the document tree into LaTeX files. List of tuples
202# (source start file, target name, title, author, documentclass [howto/manual]).
203latex_documents = [
204 ('index', 'Tempest.tex', u'Tempest Documentation',
Matthew Treinish6d5c0522013-09-11 15:50:30 +0000205 u'OpenStack QA Team', 'manual'),
Sean Dagueb56052b2013-05-21 17:57:41 -0400206]
207
208# The name of an image file (relative to this directory) to place at the top of
209# the title page.
210#latex_logo = None
211
212# For "manual" documents, if this is true, then toplevel headings are parts,
213# not chapters.
214#latex_use_parts = False
215
216# If true, show page references after internal links.
217#latex_show_pagerefs = False
218
219# If true, show URL addresses after external links.
220#latex_show_urls = False
221
222# Documents to append as an appendix to all manuals.
223#latex_appendices = []
224
225# If false, no module index is generated.
226#latex_domain_indices = True
227
228
229# -- Options for manual page output --------------------------------------------
230
231# One entry per manual page. List of tuples
232# (source start file, name, description, authors, manual section).
233man_pages = [
234 ('index', 'tempest', u'Tempest Documentation',
Matthew Treinish6d5c0522013-09-11 15:50:30 +0000235 [u'OpenStack QA Team'], 1)
Sean Dagueb56052b2013-05-21 17:57:41 -0400236]
237
238# If true, show URL addresses after external links.
239#man_show_urls = False
240
241
242# -- Options for Texinfo output ------------------------------------------------
243
244# Grouping the document tree into Texinfo files. List of tuples
245# (source start file, target name, title, author,
246# dir menu entry, description, category)
247texinfo_documents = [
248 ('index', 'Tempest', u'Tempest Documentation',
Matthew Treinish6d5c0522013-09-11 15:50:30 +0000249 u'OpenStack QA Team', 'Tempest', 'One line description of project.',
Sean Dagueb56052b2013-05-21 17:57:41 -0400250 'Miscellaneous'),
251]
252
253# Documents to append as an appendix to all manuals.
254#texinfo_appendices = []
255
256# If false, no module index is generated.
257#texinfo_domain_indices = True
258
259# How to display URL addresses: 'footnote', 'no', or 'inline'.
260#texinfo_show_urls = 'footnote'
261
262
263# -- Options for Epub output ---------------------------------------------------
264
265# Bibliographic Dublin Core info.
266epub_title = u'Tempest'
267epub_author = u'Sean Dague'
Matthew Treinish6d5c0522013-09-11 15:50:30 +0000268epub_publisher = u'OpenStack QA Team'
269epub_copyright = u'2013, OpenStack QA Team'
Sean Dagueb56052b2013-05-21 17:57:41 -0400270
271# The language of the text. It defaults to the language option
272# or en if the language is not set.
273#epub_language = ''
274
275# The scheme of the identifier. Typical schemes are ISBN or URL.
276#epub_scheme = ''
277
278# The unique identifier of the text. This can be a ISBN number
279# or the project homepage.
280#epub_identifier = ''
281
282# A unique identification for the text.
283#epub_uid = ''
284
285# A tuple containing the cover image and cover page html template filenames.
286#epub_cover = ()
287
288# HTML files that should be inserted before the pages created by sphinx.
289# The format is a list of tuples containing the path and title.
290#epub_pre_files = []
291
292# HTML files shat should be inserted after the pages created by sphinx.
293# The format is a list of tuples containing the path and title.
294#epub_post_files = []
295
296# A list of files that should not be packed into the epub file.
297#epub_exclude_files = []
298
299# The depth of the table of contents in toc.ncx.
300#epub_tocdepth = 3
301
302# Allow duplicate toc entries.
303#epub_tocdup = True