autoport: Don't initialize already initialized fields in acpi_tables
[coreboot.git] / Documentation / conf.py
blobf82fa0e182951b920b2521b999d06d92b48bd20d
1 # -*- coding: utf-8 -*-
2 import subprocess
3 from recommonmark.parser import CommonMarkParser
4 import sphinx
6 # Get Sphinx version
7 major = 0
8 minor = 0
9 patchlevel = 0
10 version = sphinx.__version__.split(".")
11 if len(version) > 1:
12 major = int(version[0])
13 minor = int(version[1])
14 if len(version) > 2:
15 patchlevel = int(version[2])
17 # Add any paths that contain templates here, relative to this directory.
18 templates_path = ['_templates']
20 # The suffix(es) of source filenames.
21 source_suffix = ['.md']
23 # The master toctree document.
24 master_doc = 'index'
26 # General information about the project.
27 project = u'coreboot'
28 copyright = u'CC-by 4.0 the coreboot project'
29 author = u'the coreboot project'
31 # The version info for the project you're documenting, acts as replacement for
32 # |version| and |release|, also used in various other places throughout the
33 # built documents.
35 # The full version, including alpha/beta/rc tags.
36 release = subprocess.check_output(('git', 'describe')).decode("utf-8")
37 # The short X.Y version.
38 version = release.split("-")[0]
40 extensions = []
41 # Load recommonmark, supported since 1.8+
42 if major >= 2 or (major == 1 and minor >= 8):
43 extensions += ['recommonmark']
45 # Try to load DITAA
46 try:
47 import sphinxcontrib.ditaa
48 except ImportError:
49 print("Error: Please install sphinxcontrib.ditaa for ASCII art conversion\n")
50 else:
51 extensions += 'sphinxcontrib.ditaa'
53 # The language for content autogenerated by Sphinx. Refer to documentation
54 # for a list of supported languages.
56 # This is also used if you do content translation via gettext catalogs.
57 # Usually you set "language" from the command line for these cases.
58 language = None
60 # List of patterns, relative to source directory, that match files and
61 # directories to ignore when looking for source files.
62 # This patterns also effect to html_static_path and html_extra_path
63 exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
65 # The name of the Pygments (syntax highlighting) style to use.
66 pygments_style = 'sphinx'
68 # A list of ignored prefixes for module index sorting.
69 # modindex_common_prefix = []
71 # If true, keep warnings as "system message" paragraphs in the built documents.
72 # keep_warnings = False
74 # If true, `todo` and `todoList` produce output, else they produce nothing.
75 todo_include_todos = False
78 # -- Options for HTML output ----------------------------------------------
80 # The theme to use for HTML and HTML Help pages. See the documentation for
81 # a list of builtin themes.
83 html_theme = 'sphinx_rtd_theme'
85 # Add any paths that contain custom static files (such as style sheets) here,
86 # relative to this directory. They are copied after the builtin static files,
87 # so a file named "default.css" will overwrite the builtin "default.css".
88 html_static_path = ['_static']
90 html_context = {
91 'css_files': [
92 '_static/theme_overrides.css', # override wide tables in RTD theme
96 # Output file base name for HTML help builder.
97 htmlhelp_basename = 'corebootdoc'
99 # -- Options for LaTeX output ---------------------------------------------
101 latex_elements = {
102 # The paper size ('letterpaper' or 'a4paper').
104 # 'papersize': 'letterpaper',
106 # The font size ('10pt', '11pt' or '12pt').
108 # 'pointsize': '10pt',
110 # Additional stuff for the LaTeX preamble.
112 # 'preamble': '',
114 # Latex figure (float) alignment
116 # 'figure_align': 'htbp',
119 # Grouping the document tree into LaTeX files. List of tuples
120 # (source start file, target name, title,
121 # author, documentclass [howto, manual, or own class]).
122 latex_documents = [
123 (master_doc, 'coreboot.tex', u'coreboot Documentation',
124 u'the coreboot project', 'manual'),
127 # The name of an image file (relative to this directory) to place at the top of
128 # the title page.
130 # latex_logo = None
132 # For "manual" documents, if this is true, then toplevel headings are parts,
133 # not chapters.
135 # latex_use_parts = False
137 # If true, show page references after internal links.
139 # latex_show_pagerefs = False
141 # If true, show URL addresses after external links.
143 # latex_show_urls = False
145 # Documents to append as an appendix to all manuals.
147 # latex_appendices = []
149 # If false, will not define \strong, \code, itleref, \crossref ... but only
150 # \sphinxstrong, ..., \sphinxtitleref, ... To help avoid clash with user added
151 # packages.
153 # latex_keep_old_macro_names = True
155 # If false, no module index is generated.
157 # latex_domain_indices = True
160 # -- Options for manual page output ---------------------------------------
162 # One entry per manual page. List of tuples
163 # (source start file, name, description, authors, manual section).
164 man_pages = [
165 (master_doc, 'coreboot', u'coreboot Documentation',
166 [author], 1)
169 # If true, show URL addresses after external links.
171 # man_show_urls = False
174 # -- Options for Texinfo output -------------------------------------------
176 # Grouping the document tree into Texinfo files. List of tuples
177 # (source start file, target name, title, author,
178 # dir menu entry, description, category)
179 texinfo_documents = [
180 (master_doc, 'coreboot', u'coreboot Documentation',
181 author, 'coreboot', 'One line description of project.',
182 'Miscellaneous'),
185 enable_auto_toc_tree = True
187 class MyCommonMarkParser(CommonMarkParser):
188 # remove this hack once upsteam RecommonMark supports inline code
189 def visit_code(self, mdnode):
190 from docutils import nodes
191 n = nodes.literal(mdnode.literal, mdnode.literal)
192 self.current_node.append(n)
194 # Documents to append as an appendix to all manuals.
196 # texinfo_appendices = []
198 # If false, no module index is generated.
200 # texinfo_domain_indices = True
202 # How to display URL addresses: 'footnote', 'no', or 'inline'.
204 # texinfo_show_urls = 'footnote'
206 # If true, do not generate a @detailmenu in the "Top" node's menu.
208 # texinfo_no_detailmenu = False
211 def setup(app):
212 from recommonmark.transform import AutoStructify
213 # Load recommonmark on old Sphinx
214 if major == 1 and minor < 8:
215 app.add_source_parser('.md', MyCommonMarkParser)
217 app.add_config_value('recommonmark_config', {
218 'enable_auto_toc_tree': True,
219 'enable_auto_doc_ref': False, # broken in Sphinx 1.6+
220 'enable_eval_rst': True,
221 'url_resolver': lambda url: '/' + url
222 }, True)
223 app.add_transform(AutoStructify)