blob: 8b63262d13c755f98e678c8d00d859ba2411fc5e [file] [log] [blame]
marineMDfa6dc192022-11-14 15:38:02 +01001project = "onap"
2release = "master"
3version = "master"
Herbert Eiselt092189e2019-04-03 17:24:29 +02004
marineMDfa6dc192022-11-14 15:38:02 +01005author = "Open Network Automation Platform"
6# yamllint disable-line rule:line-length
7copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
Herbert Eiselt092189e2019-04-03 17:24:29 +02008
marineMDfa6dc192022-11-14 15:38:02 +01009pygments_style = "sphinx"
10html_theme = "sphinx_rtd_theme"
11html_theme_options = {
12 "style_nav_header_background": "white",
13 "sticky_navigation": "False" }
thmsdt55630642024-08-14 10:16:38 +020014html_logo = "_static/logo_onap_2024.png"
marineMDfa6dc192022-11-14 15:38:02 +010015html_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',
25 'sphinxcontrib.plantuml'
Jessica Wagantall72348172020-02-06 15:25:50 -080026]
Herbert Eiselt092189e2019-04-03 17:24:29 +020027
marineMDfa6dc192022-11-14 15:38:02 +010028#
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 = 'latest'
34
Jessica Wagantall72348172020-02-06 15:25:50 -080035intersphinx_mapping = {}
marineMDfa6dc192022-11-14 15:38:02 +010036doc_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#
Herbert Eiselt092189e2019-04-03 17:24:29 +020048
Herbert Eiselt092189e2019-04-03 17:24:29 +020049html_last_updated_fmt = '%d-%b-%y %H:%M'
50
Herbert Eiselt092189e2019-04-03 17:24:29 +020051def setup(app):
lf-jobbuilderede64762020-05-28 13:59:24 -070052 app.add_css_file("css/ribbon.css")
marineMDfa6dc192022-11-14 15:38:02 +010053
54linkcheck_ignore = [
55 r'http://localhost:\d+/'
56]