blob: 0c28118ea9bfef425ea959885fd02bc17dbb0708 [file] [log] [blame]
liamfallon688a2dd2022-11-01 13:16:21 +00001project = "onap"
2release = "master"
3version = "master"
Jessica Wagantall57cf0b52020-02-06 15:26:32 -08004
liamfallon688a2dd2022-11-01 13:16:21 +00005author = "Open Network Automation Platform"
6# yamllint disable-line rule:line-length
7copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
Jessica Wagantall57cf0b52020-02-06 15:26:32 -08008
liamfallon688a2dd2022-11-01 13:16:21 +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
18
19extensions = [
20 'sphinx.ext.intersphinx',
21 'sphinx.ext.graphviz',
22 'sphinxcontrib.blockdiag',
23 'sphinxcontrib.seqdiag',
24 'sphinxcontrib.swaggerdoc',
saul.gill9349a1a2023-03-29 16:14:06 +010025 'sphinxcontrib.plantuml',
26 'sphinx_toolbox.collapse'
liamfallon688a2dd2022-11-01 13:16:21 +000027]
Jessica Wagantall57cf0b52020-02-06 15:26:32 -080028
liamfallon94ab2ff2022-05-09 17:53:09 +010029#
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
liamfallon94ab2ff2022-05-09 17:53:09 +010034branch = 'latest'
liamfallon94ab2ff2022-05-09 17:53:09 +010035
liamfallon688a2dd2022-11-01 13:16:21 +000036intersphinx_mapping = {}
37doc_url = 'https://docs.onap.org/projects'
38master_doc = 'index'
39
40exclude_patterns = ['.tox']
41
42spelling_word_list_filename='spelling_wordlist.txt'
43spelling_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#
liamfallon12332142021-07-15 14:59:06 +010049
Jessica Wagantall57cf0b52020-02-06 15:26:32 -080050html_last_updated_fmt = '%d-%b-%y %H:%M'
51
52def setup(app):
liamfallon12332142021-07-15 14:59:06 +010053 app.add_css_file("css/ribbon.css")
liamfallon688a2dd2022-11-01 13:16:21 +000054
55linkcheck_ignore = [
56 r'http://localhost:\d+/'
57]