blob: 27c418493641327ba7bb3107e17b1d138043532d [file] [log] [blame]
thmsdtbe64eed2022-11-21 14:20:51 +01001project = "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 'sphinx_tabs.tabs'
27]
28
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#
Jessica Wagantalldcf40a72020-02-06 15:24:45 -080033
34branch = 'latest'
thmsdtbe64eed2022-11-21 14:20:51 +010035
36intersphinx_mapping = {}
JakobKriegca623d62020-12-15 13:27:39 +010037doc_url = 'https://docs.onap.org/projects'
Jessica Wagantalldcf40a72020-02-06 15:24:45 -080038master_doc = 'index'
39
thmsdtbe64eed2022-11-21 14:20:51 +010040exclude_patterns = ['.tox']
Jessica Wagantalldcf40a72020-02-06 15:24:45 -080041
thmsdtbe64eed2022-11-21 14:20:51 +010042spelling_word_list_filename='spelling_wordlist.txt'
43spelling_lang = "en_GB"
JakobKrieg7c3f3952020-08-04 20:46:50 +020044
thmsdtbe64eed2022-11-21 14:20:51 +010045intersphinx_mapping['onap-integration'] = ('{}/onap-integration/en/%s'.format(doc_url) % branch, None)
JakobKriegca623d62020-12-15 13:27:39 +010046
Jessica Wagantalldcf40a72020-02-06 15:24:45 -080047html_last_updated_fmt = '%d-%b-%y %H:%M'
48
49def setup(app):
lf-jobbuilder585b5c22020-05-28 13:59:01 -070050 app.add_css_file("css/ribbon.css")
thmsdtbe64eed2022-11-21 14:20:51 +010051
52linkcheck_ignore = [
53 r'http://localhost:\d+/'
54]