diff options
author | Rob Austein <sra@hactrn.net> | 2007-12-17 18:21:32 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2007-12-17 18:21:32 +0000 |
commit | 3893c4df6ce19c85e360e085d41b0461a29de970 (patch) | |
tree | 312d8d28a607fc62703df7ab8376e5160f525570 | |
parent | 20117e771667afb88c77bfb64f2973edf7e10151 (diff) |
regen
svn path=/scripts/left-right-schema.rng; revision=1384
-rw-r--r-- | scripts/left-right-schema.rng | 3 | ||||
-rw-r--r-- | scripts/rpki/relaxng.py | 5 |
2 files changed, 7 insertions, 1 deletions
diff --git a/scripts/left-right-schema.rng b/scripts/left-right-schema.rng index 2445ed55..e0917fa9 100644 --- a/scripts/left-right-schema.rng +++ b/scripts/left-right-schema.rng @@ -880,6 +880,7 @@ <attribute name="type"> <value>query</value> </attribute> + <ref name="tag"/> <ref name="self_id"/> <ref name="child_id"/> </group> @@ -887,6 +888,7 @@ <attribute name="type"> <value>reply</value> </attribute> + <ref name="tag"/> <ref name="self_id"/> <ref name="child_id"/> <attribute name="valid_until"> @@ -929,6 +931,7 @@ <!-- <report_error/> element --> <define name="report_error_elt"> <element name="report_error"> + <ref name="tag"/> <ref name="self_id"/> <attribute name="error_code"> <data type="token"> diff --git a/scripts/rpki/relaxng.py b/scripts/rpki/relaxng.py index f1896cd9..9c78e2ce 100644 --- a/scripts/rpki/relaxng.py +++ b/scripts/rpki/relaxng.py @@ -6,7 +6,7 @@ import lxml.etree ## Parsed RelaxNG left_right schema left_right = lxml.etree.RelaxNG(lxml.etree.fromstring('''<?xml version="1.0" encoding="UTF-8"?> <!-- - $Id: left-right-schema.rng 1373 2007-12-12 13:35:07Z sra $ + $Id: left-right-schema.rnc 1372 2007-12-12 13:34:15Z sra $ RelaxNG (Compact Syntax) Schema for RPKI left-right protocol. @@ -886,6 +886,7 @@ left_right = lxml.etree.RelaxNG(lxml.etree.fromstring('''<?xml version="1.0" enc <attribute name="type"> <value>query</value> </attribute> + <ref name="tag"/> <ref name="self_id"/> <ref name="child_id"/> </group> @@ -893,6 +894,7 @@ left_right = lxml.etree.RelaxNG(lxml.etree.fromstring('''<?xml version="1.0" enc <attribute name="type"> <value>reply</value> </attribute> + <ref name="tag"/> <ref name="self_id"/> <ref name="child_id"/> <attribute name="valid_until"> @@ -935,6 +937,7 @@ left_right = lxml.etree.RelaxNG(lxml.etree.fromstring('''<?xml version="1.0" enc <!-- <report_error/> element --> <define name="report_error_elt"> <element name="report_error"> + <ref name="tag"/> <ref name="self_id"/> <attribute name="error_code"> <data type="token"> |