Updated git submodules
[doc.git] / docs / conf.py
1 # -*- 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
15 import sys
16 import os
17 import shlex
18 #import sphinx_bootstrap_theme
19
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.
28 needs_sphinx = '1.5.3'
29
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.
33 extensions = [
34     'sphinx.ext.autodoc',
35     'sphinx.ext.doctest',
36     'sphinx.ext.graphviz',
37     'sphinx.ext.todo',
38     'sphinx.ext.imgmath',
39     'sphinx.ext.viewcode',
40     'sphinxcontrib.blockdiag',
41     'sphinxcontrib.seqdiag',
42     'sphinx.ext.ifconfig',
43     'sphinx.ext.todo',
44     'sphinxcontrib.plantuml',
45     'sphinxcontrib.swaggerdoc'
46 ]
47
48 # Font path for seqdiag
49 seqdiag_fontpath= '/usr/share/fonts/truetype/dejavu/DejaVuSansCondensed.ttf'
50
51 # Add any paths that contain templates here, relative to this directory.
52 templates_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']
57 source_suffix = '.rst'
58
59 # The encoding of source files.
60 #source_encoding = 'utf-8-sig'
61
62 # The master toctree document.
63 master_doc = 'index'
64
65 # General information about the project.
66 project = u''
67 copyright = u'2017 ONAP. Licensed under Creative Commons Attribution 4.0 International License'
68
69
70 author = u'Open Network Automation Platform'
71
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.
77 version = '1.0.0'
78 # The full version, including alpha/beta/rc tags.
79 release = 'Amsterdam'
80
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.
86 language = 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.
96 exclude_patterns = [
97         '_build' 
98         ]
99
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.
116 pygments_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.
125 todo_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.
132 #html_theme = 'bootstrap'
133 html_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.
141 #html_theme_path = sphinx_bootstrap_theme.get_html_theme_path()
142
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.
152 html_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.
157 html_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".
162 html_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.
171 html_last_updated_fmt = '%d-%b-%y %H:%M'
172
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.
197 html_show_sphinx = False
198
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.
225 htmlhelp_basename = 'ONAPdoc'
226
227 # -- Options for LaTeX output ---------------------------------------------
228
229 latex_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]).
246 latex_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).
276 man_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)
290 texinfo_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.
312 epub_title = project
313 epub_author = author
314 epub_publisher = author
315 epub_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.
355 epub_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
377
378 # Patterns to ignore in linkcheck builder
379 linkcheck_ignore = [r'http://localhost:\d+/']
380