blob: 6c817538e32f3ed6a9e14b4ec16cdb2263ca553a [file] [log] [blame]
MichaelMorrisd4a002d2022-11-08 14:14:18 +00001project = "onap"
2release = "master"
3version = "master"
Jessica Wagantalle05eb922020-02-06 15:07:46 -08004
MichaelMorrisd4a002d2022-11-08 14:14:18 +00005author = "Open Network Automation Platform"
6# yamllint disable-line rule:line-length
7copyright = "ONAP. Licensed under Creative Commons Attribution 4.0 International License"
8
9pygments_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'
26]
27
28#
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'
Jessica Wagantalle05eb922020-02-06 15:07:46 -080034
Jessica Wagantalle05eb922020-02-06 15:07:46 -080035intersphinx_mapping = {}
MichaelMorrisd4a002d2022-11-08 14:14:18 +000036doc_url = 'https://docs.onap.org/projects'
37master_doc = 'index'
38
39exclude_patterns = ['.tox']
40
41spelling_lang = "en_GB"
42spelling_word_list_filename='spelling_wordlist.txt'
43spelling_exclude_patterns=['release-notes.rst']
Jessica Wagantalle05eb922020-02-06 15:07:46 -080044
MichaelMorrise6346f62021-09-30 09:27:47 +010045linkcheck_ignore = [
46 'http://localhost',
47 'https://example.com',
48 'about:config',
49 # this URL is not directly reachable and must be configured in the system hosts file.
50 'https://portal.api.simpledemo.onap.org:30225/ONAPPORTAL/login.htm',
51 # anchor issues
52 'https://docs.onap.org/projects/onap-integration/en/latest/docs_usecases_release.html#.*',
53 'https://docs.linuxfoundation.org/docs/communitybridge/easycla/contributors/contribute-to-a-gerrit-project#.*',
54 'https://docs.onap.org/projects/onap-integration/en/latest/docs_robot.html#docs-robot',
55 'https://docs.onap.org/projects/onap-integration/en/latest/docs_usecases_release.html#docs-usecases-release',
56 'https://docs.onap.org/projects/onap-integration/en/latest/docs_usecases.html#docs-usecases',
57 'https://docs.onap.org/projects/onap-integration/en/latest/usecases/release_non_functional_requirements.html#release-non-functional-requirements',
58]
59
Tomasz Wrobelac69ef12021-05-18 16:04:25 +020060
Jessica Wagantalle05eb922020-02-06 15:07:46 -080061html_last_updated_fmt = '%d-%b-%y %H:%M'
62
MichaelMorrise6346f62021-09-30 09:27:47 +010063
Jessica Wagantalle05eb922020-02-06 15:07:46 -080064def setup(app):
MichaelMorrise6346f62021-09-30 09:27:47 +010065 app.add_css_file("css/ribbon.css")