Doc config updates
[dcaegen2.git] / docs / conf.py
1 project = "onap"
2 release = "master"
3 version = "master"
4 branch = 'latest'
5 master_doc = 'index'
6
7 linkcheck_ignore = [
8   r'http://localhost:\d+/'
9 ]
10
11 extensions = [
12     'sphinx.ext.intersphinx',
13     'sphinx.ext.graphviz',
14     'sphinxcontrib.blockdiag',
15     'sphinxcontrib.seqdiag',
16     'sphinxcontrib.swaggerdoc',
17     'sphinxcontrib.plantuml'
18 ]
19
20 pygments_style = "sphinx"
21 html_theme = "sphinx_rtd_theme"
22 html_theme_options = {
23   "style_nav_header_background": "white",
24   "sticky_navigation": "False" }
25 html_logo = "_static/logo_onap_2017.png"
26 html_favicon = "_static/favicon.ico"
27 html_static_path = ["_static"]
28 html_show_sphinx = False
29
30 intersphinx_mapping = {}
31
32 html_last_updated_fmt = '%d-%b-%y %H:%M'
33
34 def setup(app):
35     app.add_css_file("css/ribbon.css")
36
37
38