blob: 5b7f3274dc110230b9e7f898aaaa85407fd442b4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
from docs_conf.conf import *
branch = 'latest'
master_doc = 'index'
version = 'frankfurt'
linkcheck_ignore = [
'http://localhost',
]
intersphinx_mapping = {}
html_last_updated_fmt = '%d-%b-%y %H:%M'
def setup(app):
app.add_stylesheet("css/ribbon_onap.css")
from docutils.parsers.rst import directives
needs_extra_options = {
"target": directives.unchanged,
"keyword": directives.unchanged,
"introduced": directives.unchanged,
"updated": directives.unchanged,
"impacts": directives.unchanged,
"validation_mode": directives.unchanged,
"validated_by": directives.unchanged,
"test": directives.unchanged,
"test_case": directives.unchanged,
"test_file": directives.unchanged,
"notes": directives.unchanged,
}
needs_id_regex = "^[A-Z0-9]+-[A-Z0-9]+"
needs_id_required = True
needs_title_optional = True
|