blob: 7220d1182e21fe649056a0226760711b5eefc292 [file] [log] [blame]
vasraz3d4de282023-03-21 17:18:18 +00001project = "onap"
2release = "master"
3version = "master"
4
5author = "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#
Jessica Wagantallcdff1c42020-02-06 15:10:49 -080032
33branch = 'latest'
vasraz3d4de282023-03-21 17:18:18 +000034
35intersphinx_mapping = {}
vasraz1e39e4c2022-04-08 11:06:06 +010036doc_url = 'https://docs.onap.org/projects'
Jessica Wagantallcdff1c42020-02-06 15:10:49 -080037master_doc = 'index'
38
vasraz3d4de282023-03-21 17:18:18 +000039exclude_patterns = ['.tox']
Jessica Wagantallcdff1c42020-02-06 15:10:49 -080040
vasraz3d4de282023-03-21 17:18:18 +000041spelling_lang = "en_GB"
42spelling_word_list_filename='spelling_wordlist.txt'
43spelling_exclude_patterns=['release-notes.rst']
vasraz1e39e4c2022-04-08 11:06:06 +010044
45linkcheck_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
60
Jessica Wagantallcdff1c42020-02-06 15:10:49 -080061html_last_updated_fmt = '%d-%b-%y %H:%M'
62
vasraz1e39e4c2022-04-08 11:06:06 +010063
Jessica Wagantallcdff1c42020-02-06 15:10:49 -080064def setup(app):
vasraz1e39e4c2022-04-08 11:06:06 +010065 app.add_css_file("css/ribbon.css")