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