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