blob: 81aa0084933cc3ba03a1e410b68403f8e83572ab [file] [log] [blame]
Vijay Venkatesh Kumar958df7b2022-11-01 12:02:45 -04001project = "onap"
2release = "master"
3version = "master"
Jessica Wagantalld4c19a92020-02-06 14:52:21 -08004branch = 'latest'
5master_doc = 'index'
6
Hansen, Tony (th1395)663df2c2023-05-23 21:27:17 +00007author = "Open Network Automation Platform"
8# yamllint disable-line rule:line-length
9copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License. http://creativecommons.org/licenses/by/4.0."
10
Jessica Wagantalld4c19a92020-02-06 14:52:21 -080011linkcheck_ignore = [
Hansen, Tony (th1395)663df2c2023-05-23 21:27:17 +000012 r'http://localhost:\d+/',
13 r'http:/',
14 r'https://localhost:\d+/',
15 r'https:/',
16 r'jdbc:'
17]
18
19exclude_patterns = [
20 r'.tox/**.rst'
Jessica Wagantalld4c19a92020-02-06 14:52:21 -080021]
22
Vijay Venkatesh Kumar958df7b2022-11-01 12:02:45 -040023extensions = [
24 'sphinx.ext.intersphinx',
25 'sphinx.ext.graphviz',
26 'sphinxcontrib.blockdiag',
27 'sphinxcontrib.seqdiag',
28 'sphinxcontrib.swaggerdoc',
29 'sphinxcontrib.plantuml'
30]
31
32pygments_style = "sphinx"
33html_theme = "sphinx_rtd_theme"
34html_theme_options = {
35 "style_nav_header_background": "white",
36 "sticky_navigation": "False" }
37html_logo = "_static/logo_onap_2017.png"
38html_favicon = "_static/favicon.ico"
39html_static_path = ["_static"]
40html_show_sphinx = False
41
Jessica Wagantalld4c19a92020-02-06 14:52:21 -080042intersphinx_mapping = {}
43
44html_last_updated_fmt = '%d-%b-%y %H:%M'
45
46def setup(app):
Eric Debeauea5c42a2021-09-29 21:28:28 +020047 app.add_css_file("css/ribbon.css")