diff options
author | Rob Austein <sra@hactrn.net> | 2014-10-02 04:54:51 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-10-02 04:54:51 +0000 |
commit | edc75cd9d1cb569cbccedbd792ed818d3416bc66 (patch) | |
tree | a8da24c20f73cb5dc8c6085a75866996292f4dcd /rpki/left_right.py | |
parent | b82932b6be2165ff06c5515bb59d5603759e200f (diff) |
Whittle one small chunk off the left-right protocol SAX mess.
svn path=/branches/tk705/; revision=5981
Diffstat (limited to 'rpki/left_right.py')
-rw-r--r-- | rpki/left_right.py | 19 |
1 files changed, 14 insertions, 5 deletions
diff --git a/rpki/left_right.py b/rpki/left_right.py index 3b2c9b9f..7d3b0f60 100644 --- a/rpki/left_right.py +++ b/rpki/left_right.py @@ -46,11 +46,20 @@ xmlns = rpki.relaxng.left_right.xmlns nsmap = rpki.relaxng.left_right.nsmap version = rpki.relaxng.left_right.version -tag_list_resources = xmlns + "list_resources" -tag_list_roa_requests = xmlns + "list_roa_requests" -tag_msg = xmlns + "msg" -tag_pkcs10 = xmlns + "pkcs10" -tag_report_error = xmlns + "report_error" +tag_bsc = xmlns + "bsc" +tag_child = xmlns + "child" +tag_list_ee_certificate_requests = xmlns + "list_ee_certificate_requests" +tag_list_ghostbuster_requests = xmlns + "list_ghostbuster_requests" +tag_list_published_objects = xmlns + "list_published_objects" +tag_list_received_resources = xmlns + "list_received_resources" +tag_list_resources = xmlns + "list_resources" +tag_list_roa_requests = xmlns + "list_roa_requests" +tag_msg = xmlns + "msg" +tag_parent = xmlns + "parent" +tag_pkcs10 = xmlns + "pkcs10" +tag_report_error = xmlns + "report_error" +tag_repository = xmlns + "repository" +tag_self = xmlns + "self" ## @var enforce_strict_up_down_xml_sender |