- From: <bugzilla@farnsworth.w3.org>
- Date: Thu, 15 May 2008 16:47:18 +0000
- To: public-sml@w3.org
- CC:
http://www.w3.org/Bugs/Public/show_bug.cgi?id=5505
virginia.smith@hp.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|editorial |needsReview
------- Comment #3 from virginia.smith@hp.com 2008-05-15 16:47 -------
Fixed per comment #2.
Schema changed from:
--------
<xs:complexType name="namespaceBindingType" mixed="false">
<xs:attribute name="namespace" type="xs:NCName" use="optional"/>
<xs:attribute name="aliases" use="required">
<xs:simpleType>
<xs:list itemType="xs:anyURI"/>
</xs:simpleType>
</xs:attribute>
<xs:anyAttribute namespace="##other" processContents="lax"/>
</xs:complexType>
---------
To:
---------
<!-- The value of the aliases attribute in the complexType below
is a list of instance document URIs -->
<xs:complexType name="namespaceBindingType" mixed="false">
<xs:attribute name="namespace" type="xs:anyURI" use="optional"/>
<xs:attribute name="aliases" use="required">
<xs:simpleType>
<xs:list itemType="xs:anyURI"/>
</xs:simpleType>
</xs:attribute>
<xs:anyAttribute namespace="##other" processContents="lax"/>
</xs:complexType>
---------
Received on Thursday, 15 May 2008 16:47:52 UTC