]> git.proxmox.com Git - mirror_frr.git/blob - doc/user/conf.py
Merge pull request #2624 from donaldsharp/PIM_ZOMILY_ZOM
[mirror_frr.git] / doc / user / conf.py
1 # -*- coding: utf-8 -*-
2 #
3 # FRR documentation build configuration file, created by
4 # sphinx-quickstart on Tue Jan 31 16:00:52 2017.
5 #
6 # This file is execfile()d with the current directory set to its
7 # containing dir.
8 #
9 # Note that not all possible configuration values are present in this
10 # autogenerated file.
11 #
12 # All configuration values have a default; values that are commented out
13 # serve to show the default.
14
15 import sys
16 import os
17 import re
18 import pygments
19 from sphinx.highlighting import lexers
20
21 # If extensions (or modules to document with autodoc) are in another directory,
22 # add these directories to sys.path here. If the directory is relative to the
23 # documentation root, use os.path.abspath to make it absolute, like shown here.
24 #sys.path.insert(0, os.path.abspath('.'))
25
26 # -- General configuration ------------------------------------------------
27
28 # If your documentation needs a minimal Sphinx version, state it here.
29 needs_sphinx = '1.0'
30
31 # prolog for various variable substitutions
32 rst_prolog = ''
33
34 # Add any Sphinx extension module names here, as strings. They can be
35 # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
36 # ones.
37 extensions = ['sphinx.ext.todo']
38
39 # Add any paths that contain templates here, relative to this directory.
40 templates_path = ['_templates']
41
42 # The suffix(es) of source filenames.
43 # You can specify multiple suffix as a list of string:
44 # source_suffix = ['.rst']
45 source_suffix = '.rst'
46
47 # The encoding of source files.
48 #source_encoding = 'utf-8-sig'
49
50 # The master toctree document.
51 master_doc = 'index'
52
53 # General information about the project.
54 project = u'FRR'
55 copyright = u'2017, FRR'
56 author = u'FRR authors'
57
58 # The version info for the project you're documenting, acts as replacement for
59 # |version| and |release|, also used in various other places throughout the
60 # built documents.
61
62 # The short X.Y version.
63 version = u'?.?'
64 # The full version, including alpha/beta/rc tags.
65 release = u'?.?-?'
66
67
68 # -----------------------------------------------------------------------------
69 # Extract values from codebase for substitution into docs.
70 # -----------------------------------------------------------------------------
71
72 # Various installation prefixes. Values are extracted from config.status.
73 # Reasonable defaults are set in case that file does not exist.
74 replace_vars = {
75 'AUTHORS': author,
76 'COPYRIGHT_YEAR': '1999-2005',
77 'COPYRIGHT_STR': 'Copyright (c) 1999-2005',
78 'PACKAGE_NAME': project.lower(),
79 'PACKAGE_TARNAME': project.lower(),
80 'PACKAGE_STRING': project.lower() + ' latest',
81 'PACKAGE_URL': 'https://frrouting.org/',
82 'PACKAGE_VERSION': 'latest',
83 'INSTALL_PREFIX_ETC': '/etc/frr',
84 'INSTALL_PREFIX_SBIN': '/usr/lib/frr',
85 'INSTALL_PREFIX_STATE': '/var/run/frr',
86 'INSTALL_PREFIX_MODULES': '/usr/lib/frr/modules',
87 'INSTALL_USER': 'frr',
88 'INSTALL_GROUP': 'frr',
89 'INSTALL_VTY_GROUP': 'frrvty',
90 'GROUP': 'frr',
91 'USER': 'frr',
92 }
93
94 # extract version information, installation location, other stuff we need to
95 # use when building final documents
96 val = re.compile('^S\["([^"]+)"\]="(.*)"$')
97 try:
98 with open('../../config.status', 'r') as cfgstatus:
99 for ln in cfgstatus.readlines():
100 m = val.match(ln)
101 if not m or m.group(1) not in replace_vars.keys(): continue
102 replace_vars[m.group(1)] = m.group(2)
103 except IOError:
104 # if config.status doesn't exist, just ignore it
105 pass
106
107 # manually fill out some of these we can't get from config.status
108 replace_vars['COPYRIGHT_STR'] = "Copyright (c)"
109 replace_vars['COPYRIGHT_STR'] += ' {0}'.format(replace_vars['COPYRIGHT_YEAR'])
110 replace_vars['COPYRIGHT_STR'] += ' {0}'.format(replace_vars['AUTHORS'])
111 release = replace_vars['PACKAGE_VERSION']
112 version = release.split('-')[0]
113
114 # add substitutions to prolog
115 for key, value in replace_vars.items():
116 rst_prolog += '.. |{0}| replace:: {1}\n'.format(key, value)
117
118
119 # The language for content autogenerated by Sphinx. Refer to documentation
120 # for a list of supported languages.
121 #
122 # This is also used if you do content translation via gettext catalogs.
123 # Usually you set "language" from the command line for these cases.
124 language = None
125
126 # There are two options for replacing |today|: either, you set today to some
127 # non-false value, then it is used:
128 #today = ''
129 # Else, today_fmt is used as the format for a strftime call.
130 #today_fmt = '%B %d, %Y'
131
132 # List of patterns, relative to source directory, that match files and
133 # directories to ignore when looking for source files.
134 exclude_patterns = ['_build', 'rpki.rst', 'routeserver.rst',
135 'ospf_fundamentals.rst', 'flowspec.rst']
136
137 # The reST default role (used for this markup: `text`) to use for all
138 # documents.
139 #default_role = None
140
141 # If true, '()' will be appended to :func: etc. cross-reference text.
142 #add_function_parentheses = True
143
144 # If true, the current module name will be prepended to all description
145 # unit titles (such as .. function::).
146 #add_module_names = True
147
148 # If true, sectionauthor and moduleauthor directives will be shown in the
149 # output. They are ignored by default.
150 #show_authors = False
151
152 # The name of the Pygments (syntax highlighting) style to use.
153 pygments_style = 'sphinx'
154
155 # A list of ignored prefixes for module index sorting.
156 #modindex_common_prefix = []
157
158 # If true, keep warnings as "system message" paragraphs in the built documents.
159 #keep_warnings = False
160
161 # If true, `todo` and `todoList` produce output, else they produce nothing.
162 todo_include_todos = True
163
164
165 # -- Options for HTML output ----------------------------------------------
166
167 # The theme to use for HTML and HTML Help pages. See the documentation for
168 # a list of builtin themes.
169 html_theme = 'default'
170
171 # Theme options are theme-specific and customize the look and feel of a theme
172 # further. For a list of options available for each theme, see the
173 # documentation.
174 html_theme_options = {
175 'sidebarbgcolor': '#374249'
176 }
177
178 # Add any paths that contain custom themes here, relative to this directory.
179 #html_theme_path = []
180
181 # The name for this set of Sphinx documents. If None, it defaults to
182 # "<project> v<release> documentation".
183 #html_title = None
184
185 # A shorter title for the navigation bar. Default is the same as html_title.
186 #html_short_title = None
187
188 # The name of an image file (relative to this directory) to place at the top
189 # of the sidebar.
190 html_logo = '../figures/frr-icon.svg'
191
192 # The name of an image file (within the static path) to use as favicon of the
193 # docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
194 # pixels large.
195 html_favicon = '../figures/frr-logo-icon.png'
196
197 # Add any paths that contain custom static files (such as style sheets) here,
198 # relative to this directory. They are copied after the builtin static files,
199 # so a file named "default.css" will overwrite the builtin "default.css".
200 html_static_path = ['_static']
201
202 # Add any extra paths that contain custom files (such as robots.txt or
203 # .htaccess) here, relative to this directory. These files are copied
204 # directly to the root of the documentation.
205 #html_extra_path = []
206
207 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
208 # using the given strftime format.
209 #html_last_updated_fmt = '%b %d, %Y'
210
211 # If true, SmartyPants will be used to convert quotes and dashes to
212 # typographically correct entities.
213 #html_use_smartypants = True
214
215 # Custom sidebar templates, maps document names to template names.
216 #html_sidebars = {}
217
218 # Additional templates that should be rendered to pages, maps page names to
219 # template names.
220 #html_additional_pages = {}
221
222 # If false, no module index is generated.
223 #html_domain_indices = True
224
225 # If false, no index is generated.
226 #html_use_index = True
227
228 # If true, the index is split into individual pages for each letter.
229 #html_split_index = False
230
231 # If true, links to the reST sources are added to the pages.
232 #html_show_sourcelink = True
233
234 # If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
235 #html_show_sphinx = True
236
237 # If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
238 #html_show_copyright = True
239
240 # If true, an OpenSearch description file will be output, and all pages will
241 # contain a <link> tag referring to it. The value of this option must be the
242 # base URL from which the finished HTML is served.
243 #html_use_opensearch = ''
244
245 # This is the file name suffix for HTML files (e.g. ".xhtml").
246 #html_file_suffix = None
247
248 # Language to be used for generating the HTML full-text search index.
249 # Sphinx supports the following languages:
250 # 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
251 # 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
252 #html_search_language = 'en'
253
254 # A dictionary with options for the search language support, empty by default.
255 # Now only 'ja' uses this config value
256 #html_search_options = {'type': 'default'}
257
258 # The name of a javascript file (relative to the configuration directory) that
259 # implements a search results scorer. If empty, the default will be used.
260 #html_search_scorer = 'scorer.js'
261
262 # Output file base name for HTML help builder.
263 htmlhelp_basename = 'FRRdoc'
264
265 # -- Options for LaTeX output ---------------------------------------------
266
267 latex_elements = {
268 # The paper size ('letterpaper' or 'a4paper').
269 #'papersize': 'letterpaper',
270
271 # The font size ('10pt', '11pt' or '12pt').
272 #'pointsize': '10pt',
273
274 # Additional stuff for the LaTeX preamble.
275 #'preamble': '',
276
277 # Latex figure (float) alignment
278 #'figure_align': 'htbp',
279 }
280
281 # Grouping the document tree into LaTeX files. List of tuples
282 # (source start file, target name, title,
283 # author, documentclass [howto, manual, or own class]).
284 latex_documents = [
285 (master_doc, 'FRR.tex', u'FRR User Manual',
286 u'FRR', 'manual'),
287 ]
288
289 # The name of an image file (relative to this directory) to place at the top of
290 # the title page.
291 latex_logo = '../figures/frr-logo-medium.png'
292
293 # For "manual" documents, if this is true, then toplevel headings are parts,
294 # not chapters.
295 #latex_use_parts = False
296
297 # If true, show page references after internal links.
298 #latex_show_pagerefs = False
299
300 # If true, show URL addresses after external links.
301 #latex_show_urls = False
302
303 # Documents to append as an appendix to all manuals.
304 #latex_appendices = []
305
306 # If false, no module index is generated.
307 #latex_domain_indices = True
308
309
310 # -- Options for manual page output ---------------------------------------
311
312 # One entry per manual page. List of tuples
313 # (source start file, name, description, authors, manual section).
314 man_pages = [
315 (master_doc, 'frr', u'FRR User Manual',
316 [author], 1)
317 ]
318
319 # If true, show URL addresses after external links.
320 #man_show_urls = False
321
322
323 # -- Options for Texinfo output -------------------------------------------
324
325 # Grouping the document tree into Texinfo files. List of tuples
326 # (source start file, target name, title, author,
327 # dir menu entry, description, category)
328 texinfo_documents = [
329 (master_doc, 'frr', u'FRR User Manual',
330 author, 'FRR', 'One line description of project.',
331 'Miscellaneous'),
332 ]
333
334 # Documents to append as an appendix to all manuals.
335 #texinfo_appendices = []
336
337 # If false, no module index is generated.
338 #texinfo_domain_indices = True
339
340 # How to display URL addresses: 'footnote', 'no', or 'inline'.
341 #texinfo_show_urls = 'footnote'
342
343 # If true, do not generate a @detailmenu in the "Top" node's menu.
344 #texinfo_no_detailmenu = False
345
346 # contents of ../extra/frrlexer.py.
347 # This is read here to support VPATH build. Since this section is execfile()'d
348 # with the file location, we can safely use a relative path here to save the
349 # contents of the lexer file for later use even if our relative path changes
350 # due to VPATH.
351 with open('../extra/frrlexer.py', 'rb') as lex:
352 frrlexerpy = lex.read()
353
354 # custom extensions here
355 def setup(app):
356 # object type for FRR CLI commands, can be extended to document parent CLI
357 # node later on
358 app.add_object_type('clicmd', 'clicmd')
359 # css overrides for HTML theme
360 app.add_stylesheet('overrides.css')
361 # load Pygments lexer for FRR config syntax
362 #
363 # NB: in Pygments 2.2+ this can be done with `load_lexer_from_file`, but we
364 # do it manually since not all of our supported build platforms have 2.2
365 # yet.
366 #
367 # frrlexer = pygments.lexers.load_lexer_from_file('../extra/frrlexer.py', lexername="FRRLexer")
368 custom_namespace = {}
369 exec(frrlexerpy, custom_namespace)
370 lexers['frr'] = custom_namespace['FRRLexer']()