summaryrefslogtreecommitdiffstats
path: root/docs/conf.py
diff options
context:
space:
mode:
authorHagop Bozawglanian <hagop.bozawglanian@att.com>2020-03-31 14:43:17 -0700
committerHagop Bozawglanian <hagop.bozawglanian@att.com>2020-03-31 14:43:17 -0700
commitbcdcc217e0cded5521aa5bcf343f03a18def9298 (patch)
tree379a3622815ab06ce1ba27d1f0b4ab2b69dc8ed9 /docs/conf.py
parent1e9417a22ea4ec8f58e1ba100d9096312b1c4729 (diff)
VNFRQTS - Fixing requirement generation in new model
Issue-ID: VNFRQTS-868 Signed-off-by: Hagop Bozawglanian <hagop.bozawglanian@att.com> Change-Id: I610dfa9d6bdb42235feff7aea1a4631f13cfcfd9
Diffstat (limited to 'docs/conf.py')
-rw-r--r--docs/conf.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py
index 8f40e8b..314670a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -13,3 +13,24 @@ 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