RFC Errata
RFC 4826, "Extensible Markup Language (XML) Formats for Representing Resource Lists", May 2007
Source of RFC: simple (rai)See Also: RFC 4826 w/ inline errata
Errata ID: 1477
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Byron Campen
Date Reported: 2008-07-22
Verifier Name: Cullen Jennings
Date Verified: 2009-01-08
Section 3.2 says:
<xs:complexType name="externalType"> <xs:sequence> <xs:element name="display-name" type="display-nameType" minOccurs="0"/> <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="anchor" type="xs:anyURI"/> <xs:anyAttribute namespace="##other" processContents="lax"/> </xs:complexType>
It should say:
<xs:complexType name="externalType"> <xs:sequence> <xs:element name="display-name" type="display-nameType" minOccurs="0"/> <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded"/> </xs:sequence> <xs:attribute name="anchor" type="xs:anyURI" use="required"/> <xs:anyAttribute namespace="##other" processContents="lax"/> </xs:complexType>
Notes:
Normative text reads:
The <external> element has a single
mandatory attribute, "anchor", which specifies the external list by
means of an absolute HTTP URI.