ChangeLog 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  2. * XmlSchemaUtil.cs: arrayType attribute needs special handling.
  3. 2003-10-01 Atsushi Enomoto <[email protected]>
  4. * XmlSchema.cs : Forgot to update with previous files.
  5. 2003-10-01 Atsushi Enomoto <[email protected]>
  6. * XmlSchemaAttribute.cs, XmlSchemaComplexType.cs, XmlSchemaElement.cs,
  7. XmlSchemaGroupRef.cs, XmlSchemaSimpleContentExtension.cs,
  8. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleTypeContent.cs,
  9. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeUnion.cs :
  10. Fixed missing sub components check. It should fix soap stuff.
  11. * XmlSchemaAny.cs, XmlSchemaAttribute.cs,
  12. XmlSchemaAttributeGroupRef.cs, XmlSchemaContent.cs :
  13. Added my responsibility on them ;-)
  14. 2003-10-01 Atsushi Enomoto <[email protected]>
  15. * XmlSchema.cs : Read() should keep current position of XmlReader if
  16. it was already positioned to 'schema' element.
  17. 2003-09-30 Atsushi Enomoto <[email protected]>
  18. * Forgot to append 8/24/2003 ChangeLog.
  19. * BUGS.txt, BUGS-MS.txt : Appended additional bug info.
  20. * BuiltInDatatype.cs, ValidationHandler.cs, XmlSchema.cs,
  21. XmlSchemaAll.cs, XmlSchemaAnnotation.cs. XmlSchemaAny.cs,
  22. XmlSchemaAnyAttribute.cs, XmlSchemaAttribute.cs,
  23. XmlSchemaAttributeGroup.cs, XmlSchemaAttributeGroupRef.cs,
  24. XmlSchemaChoice.cs, XmlSchemaCollection.cs,
  25. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  26. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  27. XmlSchemaContent.cs, XmlSchemaDatatype.cs, XmlSchemaElement.cs,
  28. XmlSchemaException.cs, XmlSchemaGroup.cs, XmlSchemaGroupBase.cs,
  29. XmlSchemaGroupRef.cs, XmlSchemaIdentityConstraint.cs,
  30. XmlSchemaKey.cs, XmlSchemaKeyref.cs, XmlSchemaNotation.cs,
  31. XmlSchemaObject.cs, XmlSchemaObjectTable.cs, XmlSchemaParticle.cs,
  32. XmlSchemaReader.cs, XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  33. XmlSchemaSimpleContentExtension.cs,
  34. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  35. XmlSchemaSimpleTypeContent.cs, XmlSchemaSimpleTypeList.cs,
  36. XmlSchemaSimpleTypeRestriction.cs, XmlSchemaSimpleTypeUnion.cs,
  37. XmlSchemaType.cs, XmlSchemaUnique.cs, XmlSchemaUtil.cs,
  38. XmlSchemaXPath.cs :
  39. - Almost all classes are changed to implement schema component
  40. constraints, and schema validation using XsdValidatingReader.
  41. - better exception messages.
  42. - More datatype support.
  43. and so on.
  44. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  45. * XmlSchema.cs: Do not add schema namespace declaration if it is already
  46. declared.
  47. 2003-08-28 Lluis Sanchez Gual <[email protected]>
  48. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs: Added double type.
  49. 2003-08-24 Atsushi Enomoto <[email protected]>
  50. * BuiltInDatatype.cs : XsdDecimal.TokenizedType should be None.
  51. * XmlSchemaCollection.cs : Add(uri) should not reject chameleon schema.
  52. Add() should compile specified schema.
  53. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  54. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs: Added XsdAnyURI,
  55. XsdDateTime, XsdDate, XsdTime.
  56. 2003-08-07 Atsushi Enomoto <[email protected]>
  57. * BuiltInDatatypes.cs : Fixed whitespace facet in XsdToken.
  58. Tokenized type of nmtokens and entities is string [].
  59. * XmlSchema.cs : Changed IsCompile implementation a bit.
  60. Compile() should reset compiled contents.
  61. * XmlSchemaDatatype.cs : Fixed collapsing Normalize().
  62. * XmlSchemaObject.cs : added CompilationId initialization.
  63. 2003-08-05 Lluis Sanchez Gual <[email protected]>
  64. * XmlSchema.cs: Set IsCompiled to true after compiling.
  65. In Compile(): ignore included schemas that do not have a value
  66. in SchemaLocation. It means that FindElement can return null
  67. if the referred schema was ignored. Added check for that case.
  68. Compile schema after reading it.
  69. * XmlSchemaCollection.cs: The targetNamespace of a schema may
  70. be null. Make XmlSchemaCollection work for this case.
  71. * BuiltInDataType.cs, XmlSchemaDataType.cs: added new primitive
  72. types: float, base64Binary, boolean.
  73. 2003-08-02 Atsushi Enomoto <[email protected]>
  74. * XmlSchema.cs :
  75. - Changed missingElementTypeRefs from Hashtable to ArrayList.
  76. - Added internal XmlSchemas for keeping imported schemas.
  77. - Added private Compile() that takes the original rootSchema and
  78. schema location stack for nested inclusion check.
  79. - Added basic xs:import and xs:include support.
  80. - Compile() is now aware of included XmlSchemaObject items.
  81. - Changed Compile() to fill missing elements' types and that of
  82. referencing elements.
  83. - Read() now adds SourceUri property (although only to itself).
  84. * XmlSchemaCollection.cs : Implemented Add().
  85. * XmlSchemaCollectionEnumerator.cs :
  86. Changed .ctor() to use schema collection as its argument.
  87. Fixed Current to return hashtable's Value, instead of Current
  88. (which returns DictionaryEntry).
  89. * XmlSchemaComplexType.cs :
  90. Added internal static AnyType.
  91. Compile() is now searches for its base type into other schemas.
  92. * XmlSchemaElement.cs : anyType is supported.
  93. It now searches for type information after Compile().
  94. SetReferedElementInfo() is now changed to SetSchemaType().
  95. * XmlSchemaObjectTable.cs :
  96. It had problems similar to schema collection. Now it uses internal
  97. class XmlSchemaObjectTableEnumerator to support GetEnumerator().
  98. * XmlSchemaParticle.cs : added internal class XmlSchemaParticleEmpty
  99. and internal static Empty.
  100. 2003-07-26 Atsushi Enomoto <[email protected]>
  101. * BuiltInDatatype.cs : XsdIDRefs.ParseValue () should be implemented.
  102. * XmlSchemaDatatype.cs : public Whitespace and protected Normalize()
  103. should be internal.
  104. 2003-07-24 Atsushi Enomoto <[email protected]>
  105. * XmlSchema.cs : Read() now uses XmlSerializer.Deserialize().
  106. 2003-07-21 Atsushi Enomoto <[email protected]>
  107. * XmlSchema.cs, XmlSchemaElement.cs :
  108. added internal MissingElementTypeRefs and support for refering
  109. element's elementType.
  110. 2003-07-20 Atsushi Enomoto <[email protected]>
  111. * XmlSchema.cs : added support for collecting missing type references
  112. at compilation-time.
  113. * XmlSchemaType.cs, XmlSchemaComplexType.cs, XmlSchemaSimpleType.cs:
  114. - Renamed qName to QNameInternal.
  115. - Added BaseSchemaType and ContentTypeParticle support.
  116. 2003-07-19 Atsushi Enomoto <[email protected]>
  117. * XmlSchema.cs, XmlSchemaAll.cs, XmlSchemaAnnotated.cs,
  118. XmlSchemaAnnotation.cs, XmlSchemaAny.cs, XmlSchemaAnyAttribute.cs,
  119. XmlSchemaAttribute.cs, XmlSchemaAttributeGroup.cs,
  120. XmlSchemaAttributeGroupRef.cs, XmlSchemaChoice.cs,
  121. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  122. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  123. XmlSchemaElement.cs, XmlSchemaGroup.cs, XmlSchemaGroupRef.cs,
  124. XmlSchemaIdentityConstraint.cs, XmlSchemaImport.cs,
  125. XmlSchemaInclude.cs, XmlSchemaKey.cs, XmlSchemaKeyref.cs,
  126. XmlSchemaNotation.cs, XmlSchemaObject.cs, XmlSchemaRedefine.cs,
  127. XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  128. XmlSchemaSimpleContentExtension.cs,
  129. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  130. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeRestriction.cs,
  131. XmlSchemaSimpleTypeUnion.cs, XmlSchemaUnique.cs,
  132. XmlSchemaXPath.cs,
  133. As to Compile() and Validate(),
  134. - Added CompilationId and check it while compiling schema components.
  135. - Code refactory. Replaced literal xmlns with XmlSchema.Namespace
  136. - Replaced XmlSchemaInfo with compiling XmlSchema itself (XmlSchema
  137. also has PSVI components inside it, so passing itself seems enough).
  138. - Related to above change, IDCollection was moved to XmlSchema, and
  139. blockDefault/finalDefault/blockResolved/finalResolved resolution
  140. was changed to reference only to schema.BlockDefault/FinalDefault.
  141. - The similar change has done against XmlSchemaForm related stuff.
  142. - Changed compilation order of schema type definitions (it is
  143. workaround). First it compiles types, and then it compiles others.
  144. * XmlSchemaElement.cs : added ElementType PSVI contribution support.
  145. 2003-07-19 Atsushi Enomoto <[email protected]>
  146. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs :
  147. Added decimal and its derived datatypes.
  148. Added abstract XsdAnySimpleType.
  149. 2003-07-15 Lluis Sanchez Gual <[email protected]>
  150. * BuiltInDatatype.cs,
  151. XmlSchemaDatatype.cs : added unsignedByte type support.
  152. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  153. * XmlSchemaDatatype.cs: Fixed compiler warning.
  154. 2003-07-12 Atsushi Enomoto <[email protected]>
  155. * BuiltInDatatype.cs,
  156. XmlSchemaDatatype.cs : added NOTATION type support.
  157. 2003-07-06 Atsushi Enomoto <[email protected]>
  158. * added BuiltInDatatype.cs.
  159. * XmlSchemaDatatype.cs : [GetType()] added support for some
  160. built-in datatypes.
  161. 2003-05-05 Atsushi Enomoto <[email protected]>
  162. * XmlSchemaAnnotation.cs : It depended on incorrect ReadNode().
  163. 2003-02-19 Atsushi Enomoto <[email protected]>
  164. * XmlSchemaAnnotation.cs : expect the correct closing tag on <appinfo>
  165. and <documentation> elements. (patch by Peter Pentchev)
  166. * XmlSchemaObjectEnumerator.cs : cast properly to XmlSchemaObject
  167. instead of XmlSchema. (patch by Peter Pentchev)
  168. 2002-07-23 Duncan Mak <[email protected]>
  169. * XmlSchemaException.cs: Partiall implement the ISerializable
  170. methods. It's not clear now SourceSchemaObject should be deserialized.
  171. 2002-07-22 Tim Coleman <[email protected]>
  172. * XmlSchema.cs: Removed isCompiled which is defined as internal
  173. in XmlSchemaObject.
  174. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  175. * XmlSchema: Started work on Validate methods
  176. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  177. * XmlSchema: The Read and Write methods are no more [MonoTODO] :)
  178. * XmlSchemaAppInfo: Xml Markup is now being read.
  179. * XmlSchemaDocumentation: Xml Markup is now being read.
  180. * All: Unhandled attributes are being handled properly.
  181. * All: Reordered the properties in all cs files to match with MS
  182. Implementation. This was required since the order is importatnt
  183. for the XmlSerializer.
  184. 2002-06-14 Dwivedi, Ajay kumar <[email protected]>
  185. * General: Fixed a few more Bugs
  186. 2002-06-10 Dwivedi, Ajay kumar <[email protected]>
  187. * XmlSchemaReader: A Wrapper class around XmlReader with customized
  188. methods to suit reading a schema.
  189. * General: Implemented Read() method for the schema. There are only
  190. a few minor bugs remaining.
  191. 2002-05-25 Dwivedi, Ajay kumar <[email protected]>
  192. * BUGS.txt: New file to keep track of bugs
  193. * ALL: All classes are initialized exactly as in .NET except
  194. 1. inclusion of language attribute in schema
  195. 2. ComplexContent's Particle is initialized to null whereas .NET
  196. to some internal implementation. IMO Null is more appropriate
  197. * ALL: Changed the Compile methods to return the count of errors.
  198. * ALL: Complile methods are almost complete. Pass 1453 of 3061 tests.
  199. This number should shoot up if we write a parser to read the
  200. Schema instead of using reflection (which is slower too)
  201. 2002-05-04 Dwivedi, Ajay kumar <[email protected]>
  202. * XmlSchemaUtil.cs: New file added.
  203. * Parser.cs: New file Added. Unused at the moment.
  204. * XmlSchemaObjectCollection: Fixed GetEnumerator
  205. * General: Preprocessing for Attributes and SimpleTypes completed.
  206. 2002-04-26 Duncan Mak <[email protected]>
  207. * ValidationHandler.cs: New file.
  208. * XmlSchemaInfo.cs: New file.
  209. * *.cs: More updates from Ajay.
  210. 2002-03-27 Duncan Mak <[email protected]>
  211. * *.cs: Updates from Ajay Dwivedi <[email protected]>.