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