blob: 29923a0547ae370e53d9d335a308f55f2329174c [file] [log] [blame]
elinuxhenrikc9a39472020-09-21 10:11:08 +02001from docs_conf.conf import *
elinuxhenrik3d854202020-09-22 15:48:10 +02002
elinuxhenrik3d854202020-09-22 15:48:10 +02003branch = 'latest'
Jessica Wagantall449c8be2020-02-06 13:25:49 -08004master_doc = 'index'
5
6linkcheck_ignore = [
7 'http://localhost',
8]
9
elinuxhenrik3c0cb322020-10-01 10:52:59 +020010extensions = ['sphinx_tabs.tabs', 'sphinxcontrib.redoc',]
11
12redoc = [
13 {
14 'name': 'PMS API',
15 'page': 'offeredapis/pms-api',
16 'spec': './offeredapis/swagger/pms-api.json',
17 'embed': True,
elinuxhenrikea2fcc82020-10-13 16:39:13 +020018 },
19 {
20 'name': 'A1 ADAPTER API',
21 'page': 'offeredapis/a1-adapter-api',
22 'spec': './offeredapis/swagger/a1-adapter-api.json',
23 'embed': True,
elinuxhenrik3c0cb322020-10-01 10:52:59 +020024 }
25 ]
26
27redoc_uri = 'https://cdn.jsdelivr.net/npm/redoc@next/bundles/redoc.standalone.js'
Singal, Kapil (ks220y)82fe9262020-09-29 13:02:36 -040028
Jessica Wagantall449c8be2020-02-06 13:25:49 -080029intersphinx_mapping = {}
30
31html_last_updated_fmt = '%d-%b-%y %H:%M'
32
33def setup(app):
Jessica Wagantallfc3b6b32020-10-01 16:20:24 -070034 app.add_css_file("css/ribbon.css")