All,
This issue was raised at the SM face to face. It was observed that the
Version definition in PwgCommon.xsd is incorrect. The definition only
allows '0' or '9' for the major and miner version numbers.
The incorrect (i.e. current) definition is
<xsd:element name="Version">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[0,9]\.[0,9]+"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
The correct definition is
<xsd:element name="Version">
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[0-9]+\.[0-9]+"/>
</xsd:restriction>
</xsd:simpleType>
</xsd:element>
The proposal is to replace the incorrect definition in PwgCommon.xsd with
the correct one. I will bump the minor version number of the schema file.
Please send out a note to the mailing list if you have any objections to
this change.
Pete
Peter Zehler
XEROX
Xerox Innovation Group
Email: PZehler@crt.xerox.com
Voice: (585) 265-8755
FAX: (585) 422-7961
US Mail: Peter Zehler
Xerox Corp.
800 Phillips Rd.
M/S 128-25E
Webster NY, 14580-9701
This archive was generated by hypermail 2b29 : Thu Jun 03 2004 - 14:48:08 EDT