"dllVersion" attribute which specifies version of grammar checker module is too platform dependent.
Use more general mechanism. Change data type of attribute to string.
p. 1106 Part 4/2.15.1.1
te
Proposed Disposition of DIS 29500 Comment CZ-0050 (Modified: 2007-12-04) Agreed; in order to provide more platform independence, the dllVersion attribute will be changed to the ST_String base type. The following changes will be made: Part 4, §2.15.1.1, page 1,106: dllVersion (Grammatical Check Engine Version) Specifies the version of the engine that was used to check the grammatical content of the WordprocessingML document. [Example: Consider the following WordprocessingML fragment: <w:activeWritingStyle … w:dllVersion="131078" /> The dllVersion attribute specifies that the writing style DLL version used to check the writing style of is the writing style DLL version associated with the decimal number 131078 . end example] The possible values for this attribute are defined by the ST_String ST_DecimalNumber simple type (§ 2.18.16 2.18.89 ). Part 4, §2.15.1.1, page 1,107, lines 1-9: The following XML Schema fragment defines the contents of this element: <complexType name="CT_WritingStyle"> <attribute name="lang" type="ST_Lang" use="required"/> <attribute name="vendorID" type="ST_DecimalNumber" use="required"/> <attribute name="dllVersion" type=" ST_DecimalNumber ST_String " use="required"/> <attribute name="nlCheck" type="ST_OnOff" use="optional"/> <attribute name="checkStyle" type="ST_OnOff" use="required"/> <attribute name="appName" type="ST_String" use="required"/> </complexType> In wml.xsd: <complexType name="CT_WritingStyle"> <attribute name="lang" type="ST_Lang" use="required"/> <attribute name="vendorID" type="ST_DecimalNumber" use="required"/> <attribute name="dllVersion" type=" ST_DecimalNumber ST_String " use="required"/> <attribute name="nlCheck" type="ST_OnOff" use="optional"/> <attribute name="checkStyle" type="ST_OnOff" use="required"/> <attribute name="appName" type="ST_String" use="required"/> </complexType>
