blob: 80888b361febd1c6c9b0514451fc5304d2b4ed16 [file] [log] [blame]
efiacor248a9f12022-10-25 11:46:34 +01001project = "onap"
2release = "master"
3version = "master"
Jessica Wagantall8d66fe82020-02-06 15:08:47 -08004
efiacor248a9f12022-10-25 11:46:34 +01005author = "Open Network Automation Platform"
6# yamllint disable-line rule:line-length
7copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
Jessica Wagantall8d66fe82020-02-06 15:08:47 -08008
efiacor248a9f12022-10-25 11:46:34 +01009pygments_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',
25 'sphinxcontrib.plantuml'
Jessica Wagantall8d66fe82020-02-06 15:08:47 -080026]
27
efiacor248a9f12022-10-25 11:46:34 +010028exclude_patterns = ['archived/*.rst', '.tox']
29#
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
34branch = 'latest'
35
Jessica Wagantall8d66fe82020-02-06 15:08:47 -080036intersphinx_mapping = {}
efiacor248a9f12022-10-25 11:46:34 +010037doc_url = 'https://docs.onap.org/projects'
38master_doc = 'index'
39
40spelling_word_list_filename='spelling_wordlist.txt'
41spelling_lang = "en_GB"
42
43#
44# Example:
45# intersphinx_mapping['onap-aai-aai-common'] = ('{}/onap-aai-aai-common/en/%s'.format(doc_url) % branch, None)
46#
Jessica Wagantall8d66fe82020-02-06 15:08:47 -080047
48html_last_updated_fmt = '%d-%b-%y %H:%M'
49
efiacor248a9f12022-10-25 11:46:34 +010050
Jessica Wagantall8d66fe82020-02-06 15:08:47 -080051def setup(app):
efiacor248a9f12022-10-25 11:46:34 +010052 app.add_css_file("css/ribbon.css")
53
54
55linkcheck_ignore = [
56 r'http://localhost:\d+/',
57 r'https:\/\/mvnrepository.com\/.*'
58]