blob: 909d8b876734a6d373cf13234d75593126580961 [file] [log] [blame]
efiacor49ba5082022-11-07 09:12:01 +00001project = "onap"
2release = "kohn"
3version = "kohn"
Jessica Wagantall8e3363f2020-02-06 15:21:38 -08004
efiacor49ba5082022-11-07 09:12:01 +00005author = "Open Network Automation Platform"
6# yamllint disable-line rule:line-length
7copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
Jessica Wagantall8e3363f2020-02-06 15:21:38 -08008
efiacor49ba5082022-11-07 09:12:01 +00009pygments_style = "sphinx"
10html_theme = "sphinx_rtd_theme"
11html_theme_options = {
12 "style_nav_header_background": "white",
13 "sticky_navigation": "False" }
14html_logo = "_static/logo_onap_2017.png"
15html_favicon = "_static/favicon.ico"
16html_static_path = ["_static"]
17html_show_sphinx = False
Jessica Wagantall8e3363f2020-02-06 15:21:38 -080018
efiacor49ba5082022-11-07 09:12:01 +000019extensions = [
20 'sphinx.ext.intersphinx',
21 'sphinx.ext.graphviz',
22 'sphinxcontrib.blockdiag',
23 'sphinxcontrib.seqdiag',
24 'sphinxcontrib.swaggerdoc',
25 'sphinxcontrib.plantuml'
efiacor3988f222021-10-11 11:32:03 +010026]
27
efiacor49ba5082022-11-07 09:12:01 +000028#
29# Map to 'latest' if this file is used in 'latest' (master) 'doc' branch.
30# Change to {releasename} after you have created the new 'doc' branch.
31#
32
33branch = 'kohn'
34
35intersphinx_mapping = {}
36doc_url = 'https://docs.onap.org/projects'
37master_doc = 'index'
38
39exclude_patterns = ['.tox']
40
41spelling_word_list_filename='spelling_wordlist.txt'
42spelling_lang = "en_GB"
43
44#
45# Example:
46# intersphinx_mapping['onap-aai-aai-common'] = ('{}/onap-aai-aai-common/en/%s'.format(doc_url) % branch, None)
47#
efiacor3988f222021-10-11 11:32:03 +010048
Jessica Wagantall8e3363f2020-02-06 15:21:38 -080049html_last_updated_fmt = '%d-%b-%y %H:%M'
50
51def setup(app):
efiacor3988f222021-10-11 11:32:03 +010052 app.add_css_file("css/ribbon.css")
efiacor49ba5082022-11-07 09:12:01 +000053
54linkcheck_ignore = [
55 r'http://localhost:\d+/',
56 r'http://www\.\[host]:\[port]/webapi',
57 r'https://gerrit\.onap\.org/'
58]