glsl-1.10: test mesa bug conflict between globals
[piglit.git] / docs / conf.py
blob64ddeab4d669453c9d885ae9da46212c54a3ed4b
1 # -*- coding: utf-8 -*-
3 # Sphinx Example Project documentation build configuration file, created by
4 # sphinx-quickstart on Tue Oct 25 09:18:20 2016.
6 # This file is execfile()d with the current directory set to its
7 # containing dir.
9 # Note that not all possible configuration values are present in this
10 # autogenerated file.
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
15 # If extensions (or modules to document with autodoc) are in another directory,
16 # add these directories to sys.path here. If the directory is relative to the
17 # documentation root, use os.path.abspath to make it absolute, like shown here.
19 # import os
20 # import sys
21 # sys.path.insert(0, os.path.abspath('.'))
23 # -- General configuration ------------------------------------------------
25 # If your documentation needs a minimal Sphinx version, state it here.
27 # needs_sphinx = '1.0'
29 # Add any Sphinx extension module names here, as strings. They can be
30 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
31 # ones.
32 extensions = [
33 'sphinx.ext.autodoc',
34 'sphinx.ext.intersphinx',
35 'sphinx.ext.mathjax',
36 'sphinx.ext.ifconfig',
39 # Add any paths that contain templates here, relative to this directory.
40 templates_path = ['_templates']
42 # The suffix(es) of source filenames.
43 # You can specify multiple suffix as a list of string:
45 # source_suffix = ['.rst', '.md']
46 source_suffix = '.rst'
48 # The encoding of source files.
50 # source_encoding = 'utf-8-sig'
52 # The master toctree document.
53 master_doc = 'index'
55 # General information about the project.
56 project = u'Piglit'
57 copyright = u'2018, freedesktop.org'
58 author = u'freedesktop.org'
60 # The version info for the project you're documenting, acts as replacement for
61 # |version| and |release|, also used in various other places throughout the
62 # built documents.
64 # The short X.Y version.
65 #version = u'0'
66 # The full version, including alpha/beta/rc tags.
67 #release = u'1'
69 # The language for content autogenerated by Sphinx. Refer to documentation
70 # for a list of supported languages.
72 # This is also used if you do content translation via gettext catalogs.
73 # Usually you set "language" from the command line for these cases.
74 language = None
76 # There are two options for replacing |today|: either, you set today to some
77 # non-false value, then it is used:
79 # today = ''
81 # Else, today_fmt is used as the format for a strftime call.
83 # today_fmt = '%B %d, %Y'
85 # List of patterns, relative to source directory, that match files and
86 # directories to ignore when looking for source files.
87 # This patterns also effect to html_static_path and html_extra_path
88 exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
90 # The reST default role (used for this markup: `text`) to use for all
91 # documents.
93 # default_role = None
95 # If true, '()' will be appended to :func: etc. cross-reference text.
97 # add_function_parentheses = True
99 # If true, the current module name will be prepended to all description
100 # unit titles (such as .. function::).
102 # add_module_names = True
104 # If true, sectionauthor and moduleauthor directives will be shown in the
105 # output. They are ignored by default.
107 # show_authors = False
109 # The name of the Pygments (syntax highlighting) style to use.
110 pygments_style = 'sphinx'
112 # A list of ignored prefixes for module index sorting.
113 # modindex_common_prefix = []
115 # If true, keep warnings as "system message" paragraphs in the built documents.
116 # keep_warnings = False
118 # If true, `todo` and `todoList` produce output, else they produce nothing.
119 todo_include_todos = False
122 # -- Options for HTML output ----------------------------------------------
124 # The theme to use for HTML and HTML Help pages. See the documentation for
125 # a list of builtin themes.
127 html_theme = 'flask'
129 # Theme options are theme-specific and customize the look and feel of a theme
130 # further. For a list of options available for each theme, see the
131 # documentation.
133 # html_theme_options = {}
135 # Add any paths that contain custom themes here, relative to this directory.
136 # html_theme_path = []
138 # The name for this set of Sphinx documents.
139 # "<project> v<release> documentation" by default.
141 # html_title = u'Sphinx Example Project v1'
142 html_title = None
144 # A shorter title for the navigation bar. Default is the same as html_title.
146 # html_short_title = None
148 # The name of an image file (relative to this directory) to place at the top
149 # of the sidebar.
151 # html_logo = None
153 # The name of an image file (relative to this directory) to use as a favicon of
154 # the docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
155 # pixels large.
157 # html_favicon = None
159 # Add any paths that contain custom static files (such as style sheets) here,
160 # relative to this directory. They are copied after the builtin static files,
161 # so a file named "default.css" will overwrite the builtin "default.css".
162 #html_static_path = ['_static']
164 # Add any extra paths that contain custom files (such as robots.txt or
165 # .htaccess) here, relative to this directory. These files are copied
166 # directly to the root of the documentation.
168 # html_extra_path = []
170 # If not None, a 'Last updated on:' timestamp is inserted at every page
171 # bottom, using the given strftime format.
172 # The empty string is equivalent to '%b %d, %Y'.
174 # html_last_updated_fmt = None
176 # If true, SmartyPants will be used to convert quotes and dashes to
177 # typographically correct entities.
179 # html_use_smartypants = True
181 # Custom sidebar templates, maps document names to template names.
183 # html_sidebars = {}
184 html_sidebars = { '**': [ ] }
186 # Additional templates that should be rendered to pages, maps page names to
187 # template names.
189 # html_additional_pages = {}
191 # If false, no module index is generated.
193 # html_domain_indices = True
194 html_domain_indices = False
196 # If false, no index is generated.
198 # html_use_index = True
199 html_use_index = False
201 # If true, the index is split into individual pages for each letter.
203 # html_split_index = False
205 # If true, links to the reST sources are added to the pages.
207 # html_show_sourcelink = True
208 html_show_sourcelink = False
210 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
212 # html_show_sphinx = True
213 html_show_sphinx = False
215 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
217 # html_show_copyright = True
218 html_show_copyright = False
220 # If true, an OpenSearch description file will be output, and all pages will
221 # contain a <link> tag referring to it. The value of this option must be the
222 # base URL from which the finished HTML is served.
224 # html_use_opensearch = ''
226 # This is the file name suffix for HTML files (e.g. ".xhtml").
227 # html_file_suffix = None
229 # Language to be used for generating the HTML full-text search index.
230 # Sphinx supports the following languages:
231 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
232 # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr', 'zh'
234 # html_search_language = 'en'
236 # A dictionary with options for the search language support, empty by default.
237 # 'ja' uses this config value.
238 # 'zh' user can custom change `jieba` dictionary path.
240 # html_search_options = {'type': 'default'}
242 # The name of a javascript file (relative to the configuration directory) that
243 # implements a search results scorer. If empty, the default will be used.
245 # html_search_scorer = 'scorer.js'
247 # Output file base name for HTML help builder.
248 htmlhelp_basename = 'PiglitProjectdoc'
250 # -- Options for LaTeX output ---------------------------------------------
252 latex_elements = {
253 # The paper size ('letterpaper' or 'a4paper').
255 # 'papersize': 'letterpaper',
257 # The font size ('10pt', '11pt' or '12pt').
259 # 'pointsize': '10pt',
261 # Additional stuff for the LaTeX preamble.
263 # 'preamble': '',
265 # Latex figure (float) alignment
267 # 'figure_align': 'htbp',
270 # Grouping the document tree into LaTeX files. List of tuples
271 # (source start file, target name, title,
272 # author, documentclass [howto, manual, or own class]).
273 latex_documents = [
274 (master_doc, 'PiglitProject.tex', u'Piglit Project Documentation',
275 u'John Doe', 'manual'),
278 # The name of an image file (relative to this directory) to place at the top of
279 # the title page.
281 # latex_logo = None
283 # For "manual" documents, if this is true, then toplevel headings are parts,
284 # not chapters.
286 # latex_use_parts = False
288 # If true, show page references after internal links.
290 # latex_show_pagerefs = False
292 # If true, show URL addresses after external links.
294 # latex_show_urls = False
296 # Documents to append as an appendix to all manuals.
298 # latex_appendices = []
300 # It false, will not define \strong, \code, itleref, \crossref ... but only
301 # \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added
302 # packages.
304 # latex_keep_old_macro_names = True
306 # If false, no module index is generated.
308 # latex_domain_indices = True
311 # -- Options for manual page output ---------------------------------------
313 # One entry per manual page. List of tuples
314 # (source start file, name, description, authors, manual section).
315 man_pages = [
316 (master_doc, 'piglitproject', u'Piglit Project Documentation',
317 [author], 1)
320 # If true, show URL addresses after external links.
322 # man_show_urls = False
325 # -- Options for Texinfo output -------------------------------------------
327 # Grouping the document tree into Texinfo files. List of tuples
328 # (source start file, target name, title, author,
329 # dir menu entry, description, category)
330 texinfo_documents = [
331 (master_doc, 'PiglitProject', u'Piglit Project Documentation',
332 author, 'PiglitProject', 'One line description of project.',
333 'Miscellaneous'),
336 # Documents to append as an appendix to all manuals.
338 # texinfo_appendices = []
340 # If false, no module index is generated.
342 # texinfo_domain_indices = True
344 # How to display URL addresses: 'footnote', 'no', or 'inline'.
346 # texinfo_show_urls = 'footnote'
348 # If true, do not generate a @detailmenu in the "Top" node's menu.
350 # texinfo_no_detailmenu = False
353 # Example configuration for intersphinx: refer to the Python standard library.
354 intersphinx_mapping = {'https://docs.python.org/': None}