blob: 393e2ac42ebb35908af01eda8f364fe68875d9e6 [file] [log] [blame]
Rich Bennett22ef0852017-07-19 18:05:55 -04001# -*- coding: utf-8 -*-
2#
3# ONAP documentation build configuration file, created by
4# sphinx-quickstart on Wed Jul 19 16:25:31 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 shlex
Rich Bennettae91ceb2017-10-16 08:28:03 -040018#import sphinx_bootstrap_theme
Rich Bennett22ef0852017-07-19 18:05:55 -040019
20# If extensions (or modules to document with autodoc) are in another directory,
21# add these directories to sys.path here. If the directory is relative to the
22# documentation root, use os.path.abspath to make it absolute, like shown here.
23#sys.path.insert(0, os.path.abspath('.'))
24
25# -- General configuration ------------------------------------------------
26
27# If your documentation needs a minimal Sphinx version, state it here.
Rich Bennettda7f8a12017-08-08 20:27:58 -040028needs_sphinx = '1.5.3'
Rich Bennett22ef0852017-07-19 18:05:55 -040029
30# Add any Sphinx extension module names here, as strings. They can be
31# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
32# ones.
33extensions = [
34 'sphinx.ext.autodoc',
35 'sphinx.ext.doctest',
36 'sphinx.ext.graphviz',
37 'sphinx.ext.todo',
Rich Bennett9f0875c2017-08-07 21:38:02 -040038 'sphinx.ext.imgmath',
Rich Bennett22ef0852017-07-19 18:05:55 -040039 'sphinx.ext.viewcode',
Rich Bennett1da30462017-08-24 12:11:36 -040040 'sphinxcontrib.blockdiag',
Rich Bennett3beeced2017-09-18 10:01:25 -040041 'sphinxcontrib.seqdiag',
42 'sphinx.ext.ifconfig',
43 'sphinx.ext.todo',
Rich Bennett3beeced2017-09-18 10:01:25 -040044 'sphinxcontrib.plantuml',
45 'sphinxcontrib.swaggerdoc'
Rich Bennett22ef0852017-07-19 18:05:55 -040046]
47
Rich Bennetta9d6a442017-08-25 02:37:15 -040048# Font path for seqdiag
49seqdiag_fontpath= '/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf'
50
Rich Bennett22ef0852017-07-19 18:05:55 -040051# Add any paths that contain templates here, relative to this directory.
52templates_path = ['_templates']
53
54# The suffix(es) of source filenames.
55# You can specify multiple suffix as a list of string:
56# source_suffix = ['.rst', '.md']
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.
Rich Bennettae91ceb2017-10-16 08:28:03 -040066project = u''
Rich Bennettc5995662017-10-18 15:27:52 -040067copyright = u'2017 ONAP. Licensed under Creative Commons Attribution 4.0 International License'
68
69
Rich Bennettae91ceb2017-10-16 08:28:03 -040070author = u'Open Network Automation Platform'
Rich Bennett22ef0852017-07-19 18:05:55 -040071
72# The version info for the project you're documenting, acts as replacement for
73# |version| and |release|, also used in various other places throughout the
74# built documents.
75#
76# The short X.Y version.
Rich Bennettae91ceb2017-10-16 08:28:03 -040077version = 'Latest'
Rich Bennett22ef0852017-07-19 18:05:55 -040078# The full version, including alpha/beta/rc tags.
Rich Bennettae91ceb2017-10-16 08:28:03 -040079release = 'Latest'
Rich Bennett22ef0852017-07-19 18:05:55 -040080
81# The language for content autogenerated by Sphinx. Refer to documentation
82# for a list of supported languages.
83#
84# This is also used if you do content translation via gettext catalogs.
85# Usually you set "language" from the command line for these cases.
86language = None
87
88# There are two options for replacing |today|: either, you set today to some
89# non-false value, then it is used:
90#today = ''
91# Else, today_fmt is used as the format for a strftime call.
92#today_fmt = '%B %d, %Y'
93
94# List of patterns, relative to source directory, that match files and
95# directories to ignore when looking for source files.
Rich Bennettd1f09492017-07-25 19:28:00 -040096exclude_patterns = [
Rich Bennett082a34d2017-10-24 10:08:26 -040097 '_build'
Rich Bennettd1f09492017-07-25 19:28:00 -040098 ]
Rich Bennett22ef0852017-07-19 18:05:55 -040099
100# The reST default role (used for this markup: `text`) to use for all
101# documents.
102#default_role = None
103
104# If true, '()' will be appended to :func: etc. cross-reference text.
105#add_function_parentheses = True
106
107# If true, the current module name will be prepended to all description
108# unit titles (such as .. function::).
109#add_module_names = True
110
111# If true, sectionauthor and moduleauthor directives will be shown in the
112# output. They are ignored by default.
113#show_authors = False
114
115# The name of the Pygments (syntax highlighting) style to use.
116pygments_style = 'sphinx'
117
118# A list of ignored prefixes for module index sorting.
119#modindex_common_prefix = []
120
121# If true, keep warnings as "system message" paragraphs in the built documents.
122#keep_warnings = False
123
124# If true, `todo` and `todoList` produce output, else they produce nothing.
125todo_include_todos = True
126
127
128# -- Options for HTML output ----------------------------------------------
129
130# The theme to use for HTML and HTML Help pages. See the documentation for
131# a list of builtin themes.
Rich Bennettae91ceb2017-10-16 08:28:03 -0400132#html_theme = 'bootstrap'
Rich Bennett22ef0852017-07-19 18:05:55 -0400133html_theme = 'classic'
134
135# Theme options are theme-specific and customize the look and feel of a theme
136# further. For a list of options available for each theme, see the
137# documentation.
138#html_theme_options = {}
139
140# Add any paths that contain custom themes here, relative to this directory.
Rich Bennettae91ceb2017-10-16 08:28:03 -0400141#html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
Rich Bennett22ef0852017-07-19 18:05:55 -0400142
143# The name for this set of Sphinx documents. If None, it defaults to
144# "<project> v<release> documentation".
145#html_title = None
146
147# A shorter title for the navigation bar. Default is the same as html_title.
148#html_short_title = None
149
150# The name of an image file (relative to this directory) to place at the top
151# of the sidebar.
152html_logo = '_static/logo_onap_2017.png'
153
154# The name of an image file (within the static path) to use as favicon of the
155# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
156# pixels large.
157html_favicon = '_static/favicon.ico'
158
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".
162html_static_path = ['_static']
163
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.
167#html_extra_path = []
168
169# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
170# using the given strftime format.
Rich Bennett80455a52017-11-08 05:17:00 -0500171html_last_updated_fmt = '%d-%b-%y %H:%M'
Rich Bennett22ef0852017-07-19 18:05:55 -0400172
173# If true, SmartyPants will be used to convert quotes and dashes to
174# typographically correct entities.
175#html_use_smartypants = True
176
177# Custom sidebar templates, maps document names to template names.
178#html_sidebars = {}
179
180# Additional templates that should be rendered to pages, maps page names to
181# template names.
182#html_additional_pages = {}
183
184# If false, no module index is generated.
185#html_domain_indices = True
186
187# If false, no index is generated.
188#html_use_index = True
189
190# If true, the index is split into individual pages for each letter.
191#html_split_index = False
192
193# If true, links to the reST sources are added to the pages.
194#html_show_sourcelink = True
195
196# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
Rich Bennett80455a52017-11-08 05:17:00 -0500197html_show_sphinx = False
Rich Bennett22ef0852017-07-19 18:05:55 -0400198
199# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
200#html_show_copyright = True
201
202# If true, an OpenSearch description file will be output, and all pages will
203# contain a <link> tag referring to it. The value of this option must be the
204# base URL from which the finished HTML is served.
205#html_use_opensearch = ''
206
207# This is the file name suffix for HTML files (e.g. ".xhtml").
208#html_file_suffix = None
209
210# Language to be used for generating the HTML full-text search index.
211# Sphinx supports the following languages:
212# 'da', 'de', 'en', 'es', 'fi', 'fr', 'hu', 'it', 'ja'
213# 'nl', 'no', 'pt', 'ro', 'ru', 'sv', 'tr'
214#html_search_language = 'en'
215
216# A dictionary with options for the search language support, empty by default.
217# Now only 'ja' uses this config value
218#html_search_options = {'type': 'default'}
219
220# The name of a javascript file (relative to the configuration directory) that
221# implements a search results scorer. If empty, the default will be used.
222#html_search_scorer = 'scorer.js'
223
224# Output file base name for HTML help builder.
225htmlhelp_basename = 'ONAPdoc'
226
227# -- Options for LaTeX output ---------------------------------------------
228
229latex_elements = {
230# The paper size ('letterpaper' or 'a4paper').
231#'papersize': 'letterpaper',
232
233# The font size ('10pt', '11pt' or '12pt').
234#'pointsize': '10pt',
235
236# Additional stuff for the LaTeX preamble.
237#'preamble': '',
238
239# Latex figure (float) alignment
240#'figure_align': 'htbp',
241}
242
243# Grouping the document tree into LaTeX files. List of tuples
244# (source start file, target name, title,
245# author, documentclass [howto, manual, or own class]).
246latex_documents = [
247 (master_doc, 'ONAP.tex', u'ONAP Documentation',
248 u'ONAP Contributors', 'manual'),
249]
250
251# The name of an image file (relative to this directory) to place at the top of
252# the title page.
253#latex_logo = None
254
255# For "manual" documents, if this is true, then toplevel headings are parts,
256# not chapters.
257#latex_use_parts = False
258
259# If true, show page references after internal links.
260#latex_show_pagerefs = False
261
262# If true, show URL addresses after external links.
263#latex_show_urls = False
264
265# Documents to append as an appendix to all manuals.
266#latex_appendices = []
267
268# If false, no module index is generated.
269#latex_domain_indices = True
270
271
272# -- Options for manual page output ---------------------------------------
273
274# One entry per manual page. List of tuples
275# (source start file, name, description, authors, manual section).
276man_pages = [
277 (master_doc, 'onap', u'ONAP Documentation',
278 [author], 1)
279]
280
281# If true, show URL addresses after external links.
282#man_show_urls = False
283
284
285# -- Options for Texinfo output -------------------------------------------
286
287# Grouping the document tree into Texinfo files. List of tuples
288# (source start file, target name, title, author,
289# dir menu entry, description, category)
290texinfo_documents = [
291 (master_doc, 'ONAP', u'ONAP Documentation',
292 author, 'ONAP', 'Open Network Automation Platform',
293 'Platform'),
294]
295
296# Documents to append as an appendix to all manuals.
297#texinfo_appendices = []
298
299# If false, no module index is generated.
300#texinfo_domain_indices = True
301
302# How to display URL addresses: 'footnote', 'no', or 'inline'.
303#texinfo_show_urls = 'footnote'
304
305# If true, do not generate a @detailmenu in the "Top" node's menu.
306#texinfo_no_detailmenu = False
307
308
309# -- Options for Epub output ----------------------------------------------
310
311# Bibliographic Dublin Core info.
312epub_title = project
313epub_author = author
314epub_publisher = author
315epub_copyright = copyright
316
317# The basename for the epub file. It defaults to the project name.
318#epub_basename = project
319
320# The HTML theme for the epub output. Since the default themes are not optimized
321# for small screen space, using the same theme for HTML and epub output is
322# usually not wise. This defaults to 'epub', a theme designed to save visual
323# space.
324#epub_theme = 'epub'
325
326# The language of the text. It defaults to the language option
327# or 'en' if the language is not set.
328#epub_language = ''
329
330# The scheme of the identifier. Typical schemes are ISBN or URL.
331#epub_scheme = ''
332
333# The unique identifier of the text. This can be a ISBN number
334# or the project homepage.
335#epub_identifier = ''
336
337# A unique identification for the text.
338#epub_uid = ''
339
340# A tuple containing the cover image and cover page html template filenames.
341#epub_cover = ()
342
343# A sequence of (type, uri, title) tuples for the guide element of content.opf.
344#epub_guide = ()
345
346# HTML files that should be inserted before the pages created by sphinx.
347# The format is a list of tuples containing the path and title.
348#epub_pre_files = []
349
350# HTML files shat should be inserted after the pages created by sphinx.
351# The format is a list of tuples containing the path and title.
352#epub_post_files = []
353
354# A list of files that should not be packed into the epub file.
355epub_exclude_files = ['search.html']
356
357# The depth of the table of contents in toc.ncx.
358#epub_tocdepth = 3
359
360# Allow duplicate toc entries.
361#epub_tocdup = True
362
363# Choose between 'default' and 'includehidden'.
364#epub_tocscope = 'default'
365
366# Fix unsupported image types using the Pillow.
367#epub_fix_images = False
368
369# Scale large images.
370#epub_max_image_width = 0
371
372# How to display URL addresses: 'footnote', 'no', or 'inline'.
373#epub_show_urls = 'inline'
374
375# If false, no index is generated.
376#epub_use_index = True
Rich Bennett927141f2017-09-13 14:15:20 -0400377
378# Patterns to ignore in linkcheck builder
379linkcheck_ignore = [r'http://localhost:\d+/']
Rich Bennett3beeced2017-09-18 10:01:25 -0400380