Updated policy/acm OOM install docs
[policy/parent.git] / docs / conf.py
1 project = "onap"
2 release = "master"
3 version = "master"
4
5 author = "Open Network Automation Platform"
6 # yamllint disable-line rule:line-length
7 copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
8
9 pygments_style = "sphinx"
10 html_theme = "sphinx_rtd_theme"
11 html_theme_options = {
12   "style_nav_header_background": "white",
13   "sticky_navigation": "False" }
14 html_logo = "_static/logo_onap_2017.png"
15 html_favicon = "_static/favicon.ico"
16 html_static_path = ["_static"]
17 html_show_sphinx = False
18
19 extensions = [
20     'sphinx.ext.intersphinx',
21     'sphinx.ext.graphviz',
22     'sphinxcontrib.blockdiag',
23     'sphinxcontrib.seqdiag',
24     'sphinxcontrib.swaggerdoc',
25     'sphinxcontrib.plantuml',
26     'sphinx_toolbox.collapse'
27 ]
28
29 #
30 # Map to 'latest' if this file is used in 'latest' (master) 'doc' branch.
31 # Change to {releasename} after you have created the new 'doc' branch.
32 #
33
34 branch = 'latest'
35
36 intersphinx_mapping = {}
37 doc_url = 'https://docs.onap.org/projects'
38 master_doc = 'index'
39
40 exclude_patterns = ['.tox']
41
42 spelling_word_list_filename='spelling_wordlist.txt'
43 spelling_lang = "en_GB"
44
45 #
46 # Example:
47 # intersphinx_mapping['onap-aai-aai-common'] = ('{}/onap-aai-aai-common/en/%s'.format(doc_url) % branch, None)
48 #
49
50 html_last_updated_fmt = '%d-%b-%y %H:%M'
51
52 def setup(app):
53     app.add_css_file("css/ribbon.css")
54
55 linkcheck_ignore = [
56   r'http://localhost:\d+/'
57 ]