- From: <bugzilla@wiggum.w3.org>
- Date: Wed, 05 Dec 2007 08:13:47 +0000
- To: public-sml@w3.org
- CC:
http://www.w3.org/Bugs/Public/show_bug.cgi?id=5301
kumarp@microsoft.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |ASSIGNED
------- Comment #3 from kumarp@microsoft.com 2007-12-05 08:13 -------
changed as suggested in comment# 2:
----
added base64DataType def:
<xs:complexType name="base64DataType">
<xs:simpleContent>
<xs:extension base="xs:base64Binary">
<xs:anyAttribute namespace="##other" processContents="lax"/>
</xs:extension>
</xs:simpleContent>
</xs:complexType>
----
updated type of base64Data element to base64DataType
<xs:element name="document" type="smlif:documentType"/>
<xs:complexType name="documentType">
<xs:sequence>
<xs:element ref="smlif:docinfo" minOccurs="0"/>
<xs:choice>
<xs:element name="data" type="smlif:dataType"/>
<xs:element name="base64Data" type="smlif:base64DataType"/>
<xs:element name="locator" type="smlif:locatorType"/>
</xs:choice>
... ...
Received on Wednesday, 5 December 2007 08:13:54 UTC