diff options
Diffstat (limited to 'rpkid/rpki')
-rw-r--r-- | rpkid/rpki/__init__.py | 3 | ||||
-rw-r--r-- | rpkid/rpki/left_right.py | 2 | ||||
-rw-r--r-- | rpkid/rpki/relaxng.py | 7 |
3 files changed, 1 insertions, 11 deletions
diff --git a/rpkid/rpki/__init__.py b/rpkid/rpki/__init__.py index f010fa3c..6eec48dc 100644 --- a/rpkid/rpki/__init__.py +++ b/rpkid/rpki/__init__.py @@ -1477,9 +1477,6 @@ # timestamp is expressed as an XML @c xsd:dateTime, must be # expressed in UTC, and must carry the "Z" suffix indicating UTC. # -# @li @c subject_name: -# An optional text string naming the child. Not currently used. -# # @li @c asn: # A %list of autonomous sequence numbers, expressed as a # comma-separated sequence of decimal integers with no whitespace. diff --git a/rpkid/rpki/left_right.py b/rpkid/rpki/left_right.py index 17778b12..41f15e0e 100644 --- a/rpkid/rpki/left_right.py +++ b/rpkid/rpki/left_right.py @@ -964,7 +964,7 @@ class list_resources_elt(rpki.xml_utils.base_elt, left_right_namespace): """ element_name = "list_resources" - attributes = ("self_id", "tag", "child_id", "valid_until", "asn", "ipv4", "ipv6", "subject_name") + attributes = ("self_id", "tag", "child_id", "valid_until", "asn", "ipv4", "ipv6") valid_until = None def startElement(self, stack, name, attrs): diff --git a/rpkid/rpki/relaxng.py b/rpkid/rpki/relaxng.py index 7083b11c..3c96a1d0 100644 --- a/rpkid/rpki/relaxng.py +++ b/rpkid/rpki/relaxng.py @@ -904,13 +904,6 @@ left_right = lxml.etree.RelaxNG(lxml.etree.fromstring('''<?xml version="1.0" enc </data> </attribute> <optional> - <attribute name="subject_name"> - <data type="token"> - <param name="maxLength">1024</param> - </data> - </attribute> - </optional> - <optional> <attribute name="asn"> <ref name="asn_list"/> </attribute> |