ChangeLog 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. 2003-07-26 Atsushi Enomoto <[email protected]>
  2. * BuiltInDatatype.cs : XsdIDRefs.ParseValue () should be implemented.
  3. * XmlSchemaDatatype.cs : public Whitespace and protected Normalize()
  4. should be internal.
  5. 2003-07-24 Atsushi Enomoto <[email protected]>
  6. * XmlSchema.cs : Read() now uses XmlSerializer.Deserialize().
  7. 2003-07-21 Atsushi Enomoto <[email protected]>
  8. * XmlSchema.cs, XmlSchemaElement.cs :
  9. added internal MissingElementTypeRefs and support for refering
  10. element's elementType.
  11. 2003-07-20 Atsushi Enomoto <[email protected]>
  12. * XmlSchema.cs : added support for collecting missing type references
  13. at compilation-time.
  14. * XmlSchemaType.cs, XmlSchemaComplexType.cs, XmlSchemaSimpleType.cs:
  15. - Renamed qName to QNameInternal.
  16. - Added BaseSchemaType and ContentTypeParticle support.
  17. 2003-07-19 Atsushi Enomoto <[email protected]>
  18. * XmlSchema.cs, XmlSchemaAll.cs, XmlSchemaAnnotated.cs,
  19. XmlSchemaAnnotation.cs, XmlSchemaAny.cs, XmlSchemaAnyAttribute.cs,
  20. XmlSchemaAttribute.cs, XmlSchemaAttributeGroup.cs,
  21. XmlSchemaAttributeGroupRef.cs, XmlSchemaChoice.cs,
  22. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  23. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  24. XmlSchemaElement.cs, XmlSchemaGroup.cs, XmlSchemaGroupRef.cs,
  25. XmlSchemaIdentityConstraint.cs, XmlSchemaImport.cs,
  26. XmlSchemaInclude.cs, XmlSchemaKey.cs, XmlSchemaKeyref.cs,
  27. XmlSchemaNotation.cs, XmlSchemaObject.cs, XmlSchemaRedefine.cs,
  28. XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  29. XmlSchemaSimpleContentExtension.cs,
  30. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  31. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeRestriction.cs,
  32. XmlSchemaSimpleTypeUnion.cs, XmlSchemaUnique.cs,
  33. XmlSchemaXPath.cs,
  34. As to Compile() and Validate(),
  35. - Added CompilationId and check it while compiling schema components.
  36. - Code refactory. Replaced literal xmlns with XmlSchema.Namespace
  37. - Replaced XmlSchemaInfo with compiling XmlSchema itself (XmlSchema
  38. also has PSVI components inside it, so passing itself seems enough).
  39. - Related to above change, IDCollection was moved to XmlSchema, and
  40. blockDefault/finalDefault/blockResolved/finalResolved resolution
  41. was changed to reference only to schema.BlockDefault/FinalDefault.
  42. - The similar change has done against XmlSchemaForm related stuff.
  43. - Changed compilation order of schema type definitions (it is
  44. workaround). First it compiles types, and then it compiles others.
  45. * XmlSchemaElement.cs : added ElementType PSVI contribution support.
  46. 2003-07-19 Atsushi Enomoto <[email protected]>
  47. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs :
  48. Added decimal and its derived datatypes.
  49. Added abstract XsdAnySimpleType.
  50. 2003-07-15 Lluis Sanchez Gual <[email protected]>
  51. * BuiltInDatatype.cs,
  52. XmlSchemaDatatype.cs : added unsignedByte type support.
  53. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  54. * XmlSchemaDatatype.cs: Fixed compiler warning.
  55. 2003-07-12 Atsushi Enomoto <[email protected]>
  56. * BuiltInDatatype.cs,
  57. XmlSchemaDatatype.cs : added NOTATION type support.
  58. 2003-07-06 Atsushi Enomoto <[email protected]>
  59. * added BuiltInDatatype.cs.
  60. * XmlSchemaDatatype.cs : [GetType()] added support for some
  61. built-in datatypes.
  62. 2003-05-05 Atsushi Enomoto <[email protected]>
  63. * XmlSchemaAnnotation.cs : It depended on incorrect ReadNode().
  64. 2003-02-19 Atsushi Enomoto <[email protected]>
  65. * XmlSchemaAnnotation.cs : expect the correct closing tag on <appinfo>
  66. and <documentation> elements. (patch by Peter Pentchev)
  67. * XmlSchemaObjectEnumerator.cs : cast properly to XmlSchemaObject
  68. instead of XmlSchema. (patch by Peter Pentchev)
  69. 2002-07-23 Duncan Mak <[email protected]>
  70. * XmlSchemaException.cs: Partiall implement the ISerializable
  71. methods. It's not clear now SourceSchemaObject should be deserialized.
  72. 2002-07-22 Tim Coleman <[email protected]>
  73. * XmlSchema.cs: Removed isCompiled which is defined as internal
  74. in XmlSchemaObject.
  75. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  76. * XmlSchema: Started work on Validate methods
  77. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  78. * XmlSchema: The Read and Write methods are no more [MonoTODO] :)
  79. * XmlSchemaAppInfo: Xml Markup is now being read.
  80. * XmlSchemaDocumentation: Xml Markup is now being read.
  81. * All: Unhandled attributes are being handled properly.
  82. * All: Reordered the properties in all cs files to match with MS
  83. Implementation. This was required since the order is importatnt
  84. for the XmlSerializer.
  85. 2002-06-14 Dwivedi, Ajay kumar <[email protected]>
  86. * General: Fixed a few more Bugs
  87. 2002-06-10 Dwivedi, Ajay kumar <[email protected]>
  88. * XmlSchemaReader: A Wrapper class around XmlReader with customized
  89. methods to suit reading a schema.
  90. * General: Implemented Read() method for the schema. There are only
  91. a few minor bugs remaining.
  92. 2002-05-25 Dwivedi, Ajay kumar <[email protected]>
  93. * BUGS.txt: New file to keep track of bugs
  94. * ALL: All classes are initialized exactly as in .NET except
  95. 1. inclusion of language attribute in schema
  96. 2. ComplexContent's Particle is initialized to null whereas .NET
  97. to some internal implementation. IMO Null is more appropriate
  98. * ALL: Changed the Compile methods to return the count of errors.
  99. * ALL: Complile methods are almost complete. Pass 1453 of 3061 tests.
  100. This number should shoot up if we write a parser to read the
  101. Schema instead of using reflection (which is slower too)
  102. 2002-05-04 Dwivedi, Ajay kumar <[email protected]>
  103. * XmlSchemaUtil.cs: New file added.
  104. * Parser.cs: New file Added. Unused at the moment.
  105. * XmlSchemaObjectCollection: Fixed GetEnumerator
  106. * General: Preprocessing for Attributes and SimpleTypes completed.
  107. 2002-04-26 Duncan Mak <[email protected]>
  108. * ValidationHandler.cs: New file.
  109. * XmlSchemaInfo.cs: New file.
  110. * *.cs: More updates from Ajay.
  111. 2002-03-27 Duncan Mak <[email protected]>
  112. * *.cs: Updates from Ajay Dwivedi <[email protected]>.