diff options
Diffstat (limited to 'schemas/relaxng')
-rw-r--r-- | schemas/relaxng/publication.rnc | 9 | ||||
-rw-r--r-- | schemas/relaxng/publication.rng | 19 |
2 files changed, 26 insertions, 2 deletions
diff --git a/schemas/relaxng/publication.rnc b/schemas/relaxng/publication.rnc index 8c129546..f3d1f94e 100644 --- a/schemas/relaxng/publication.rnc +++ b/schemas/relaxng/publication.rnc @@ -58,8 +58,8 @@ start |= element msg { # PDUs allowed in queries and replies. -query_elt = publish_query | withdraw_query -reply_elt = publish_reply | withdraw_reply | report_error_reply +query_elt = publish_query | withdraw_query | list_query +reply_elt = publish_reply | withdraw_reply | list_reply | report_error_reply # Tag attributes for bulk operations. @@ -91,6 +91,11 @@ publish_reply = element publish { tag?, uri } withdraw_query = element withdraw { tag?, uri, hash } withdraw_reply = element withdraw { tag?, uri } +# <list/> element + +list_query = element list { tag? } +list_reply = element list { tag?, uri, hash } + # <report_error/> element report_error_reply = element report_error { diff --git a/schemas/relaxng/publication.rng b/schemas/relaxng/publication.rng index e88db011..39d78c00 100644 --- a/schemas/relaxng/publication.rng +++ b/schemas/relaxng/publication.rng @@ -74,12 +74,14 @@ <choice> <ref name="publish_query"/> <ref name="withdraw_query"/> + <ref name="list_query"/> </choice> </define> <define name="reply_elt"> <choice> <ref name="publish_reply"/> <ref name="withdraw_reply"/> + <ref name="list_reply"/> <ref name="report_error_reply"/> </choice> </define> @@ -156,6 +158,23 @@ <ref name="uri"/> </element> </define> + <!-- <list/> element --> + <define name="list_query"> + <element name="list"> + <optional> + <ref name="tag"/> + </optional> + </element> + </define> + <define name="list_reply"> + <element name="list"> + <optional> + <ref name="tag"/> + </optional> + <ref name="uri"/> + <ref name="hash"/> + </element> + </define> <!-- <report_error/> element --> <define name="report_error_reply"> <element name="report_error"> |