ChangeLog 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534
  1. 2004-01-13 Jackson Harper <[email protected]>
  2. * XmlSchemaComplexType.cs: Comment out line that was breaking the build.
  3. 2004-01-13 Atsushi Enomoto <[email protected]>
  4. * XmlSchemaSimpleTypeUnion.cs : The same reason as the previous patch.
  5. * XmlSchemaComplexType.cs : Now it handles ContentTypeParticle and
  6. ContentType much more presise than before.
  7. * XmlSchemaElement.cs :
  8. Simplified property handling for reference element.
  9. 2004-01-13 Atsushi Enomoto <[email protected]>
  10. * XmlSchema.cs, XmlSchemaComplexType.cs, XmlSchemaElement.cs :
  11. Invalid attribute should raise an error, not a warning.
  12. 2004-01-13 Atsushi Enomoto <[email protected]>
  13. * XmlSchemaObject.cs : Fixed error() not to set severity as Warning.
  14. * ValidationHandler.cs,
  15. XmlSchemaSet.cs,
  16. XmlSchemaCollection.cs : Throw exception only in case of errors.
  17. * XmlSchemaCollection.cs : Remove schema from schemaset if exist.
  18. (It might not be good to use schemaset, but keep for a while)
  19. * XmlSchemaContent.cs,
  20. XmlSchemaComplexContentExtension.cs,
  21. XmlSchemaComplexContentRestriction.cs,
  22. XmlSchemaSimpleContentExtension.cs,
  23. XmlSchemaSimpleContentRestriction.cs,
  24. : added GetBaseTypeName() and GetParticle() (not used yet).
  25. 2004-01-11 Atsushi Enomoto <[email protected]>
  26. * BuiltInDatatype.cs : internal type should not appear in protected
  27. members' signature.
  28. 2004-01-11 David Sheldon <[email protected]>
  29. * BuiltInDatatype.cs : Added XsdOrdering enum, and Compare methods
  30. to the data-types. Changed AllowedFacets to be a bitfield.
  31. * XmlSchemaFacet.cs : Added Facet enumeration to represent bitfield.
  32. * XmlSchemaEnumerationFacet.cs,
  33. XmlSchemaFractionDigitsFacet.cs,
  34. XmlSchemaLengthFacet.cs,
  35. XmlSchemaMaxExclusiveFacet.cs,
  36. XmlSchemaMaxInclusiveFacet.cs,
  37. XmlSchemaMaxLengthFacet.cs,
  38. XmlSchemaMinExclusiveFacet.cs,
  39. XmlSchemaMinInclusiveFacet.cs,
  40. XmlSchemaMinLengthFacet.cs,
  41. XmlSchemaNumericFacet.cs,
  42. XmlSchemaPatternFacet.cs,
  43. XmlSchemaTotalDigitsFacet.cs,
  44. XmlSchemaWhiteSpaceFacet.cs : Added ThisFacet Property to return facet type
  45. * XmlSchemaSimpleTypeRestriction.cs: Inherited facets from base types,
  46. checked which which were allowed on different types. Validated fixed
  47. facets, duplicated facets and derivation by restriction. Added checking
  48. for min/max Inclusive/Exclusive, totalDigits and fractionDigits facets in
  49. validation.
  50. 2004-01-09 Atsushi Enomoto <[email protected]>
  51. * XmlSchemaSet.cs : implemented some members.
  52. * XmlSchemaCollection.cs : modified to use internal schema set (This
  53. class provides more precise schema validation feature and will be
  54. commonly used for XPathNavigator2).
  55. Added .NET 1.1 .ctor() which takes XmlResolver.
  56. * XmlSchema.cs : fix related to above changes.
  57. Use validation event handler on Read() at all required places.
  58. Added .NET 1.1 .ctor() which takes XmlResolver.
  59. * XmlSchemaComplexType.cs : content type comparison was incorrect.
  60. Renamed confusing method.
  61. * XmlSchemaElement.cs : don't use ContentTypeParticle in
  62. CheckRecursion(), where that property might not be determined yet.
  63. * XmlSchemaGroupBase.cs : Modified ValidateRecurse() a bit (currently
  64. no effect)
  65. * XmlSchemaGroupBase.cs,
  66. XmlSchemaChoice.cs,
  67. XmlSchemaAll.cs,
  68. XmlSchemaSequence.cs : moved CheckRecursion to XmlSchemaGroupBase.
  69. * XmlSchemaObjectTable.cs : Fixed missing error info.
  70. * BUGS-MS.txt : Added info a bit.
  71. 2004-01-08 Atsushi Enomoto <[email protected]>
  72. * BUGS-MS.txt : added list derivation and facet case.
  73. * XmlSchemaComplexType.cs :
  74. Added some description. Avoided null reference exception in
  75. some places.
  76. Fixed incorrect 3.4.6 Derivation Valid (Extension) 1.4.1.2.2 and
  77. 3.9.6 Particle Valid (Extension) 2.
  78. * XmlSchemaGroupBase.cs : Fixed ParticleEquals() which didn't work
  79. properly against sequence and all.
  80. 2004-01-08 Atsushi Enomoto <[email protected]>
  81. * XmlSchemaObjectTable.cs : Modified enumerator's Current to return
  82. DictionaryEntry.
  83. * XmlSchemaComplexType.cs, XmlSchemaUtil.cs :
  84. In reflection to object table enumerator change.
  85. 2004-01-08 Atsushi Enomoto <[email protected]>
  86. * XmlSchemaElement.cs : Fixed incorrect unique particle attribution
  87. check on ##other and target namespace element.
  88. 2004-01-08 Nick Drochak <[email protected]>
  89. * XmlSchemaSimpleType.cs: Needed a 'new' on the property
  90. * XmlSchemaXPath.cs: Removed unreachable code.
  91. 2004-01-03 Atsushi Enomoto <[email protected]>
  92. * XmlSchemaDatatype.cs : trivial allocation fix.
  93. 2003-12-17 David Sheldon <[email protected]>
  94. * BuiltInDatatype.cs : Added whitespace=collapse to data types
  95. such as date, dateTime, .... gDay. I think I have them all now.
  96. 2003-12-15 Atsushi Enomoto <[email protected]>
  97. * BuiltInDatatype.cs : anySimpleType should allow facets.
  98. 2003-12-14 David Sheldon <[email protected]>
  99. * BuiltInDatatype.cs : Added code to tell which facets were valid on
  100. types derived from each basetype.
  101. * XmlSchemaSimpleTypeRestriction.cs : Complain if an invalid facet
  102. has been added to a restriction.
  103. 2003-12-14 David Sheldon <[email protected]>
  104. * XmlSchemaSimpleTypeRestriction.cs : Check that min/max/lengths
  105. specified are integers. Also made some error messages more useful.
  106. 2003-12-08 Atsushi Enomoto <[email protected]>
  107. * XmlSchemaSimpleTypeRestriction.cs : patch by David Sheldon. Check
  108. if max/min length range is valid.
  109. 2003-12-07 Atsushi Enomoto <[email protected]>
  110. * BuiltInDatatype.cs : XsdDecimal and XsdInteger defaults whitespace
  111. facet as collapse (patch by David Sheldon).
  112. * XmlSchemaAnnotations.cs, XmlSchemaAny.cs : No more MonoTODOs ;-)
  113. * XmlSchemaSequence.cs : MapAndSum implementation.
  114. 2003-11-17 Atsushi Enomoto <[email protected]>
  115. * XmlSchemaSet.cs, XmlSchemaBuiltInType.cs : Added .NET 1.2 classes
  116. (for convenience of ObjectSpaces stubbing).
  117. 2003-10-25 Atsushi Enomoto <[email protected]>
  118. * BuiltInDatatype.cs : XsdByte was incorrectly typed as byte, while
  119. the correct binding is sbyte.
  120. * XmlSchemaAll.cs,
  121. XmlSchemaChoice.cs,
  122. XmlSchemaSequence.cs,
  123. XmlSchemaGroupBase.cs : ActualParticle now considers pointlessness
  124. described in WXS structures 3.9.6.
  125. Added ValidateRecurse() to support 'Recurse' validation.
  126. * XmlSchemaComplexType.cs : Removed incorrect content type conformity
  127. check.
  128. * XmlSchemaElement.cs : Implemented 'RecurseAsIfGroup' validation
  129. described in WXS structures 3.9.6. Fixed type derivation check to
  130. do only if the base type is not anyType.
  131. * XmlSchemaSimpleTypeRestriction.cs : Should catch Regex()
  132. construction exception. ValidateList... and ValidateNonList... was
  133. in reverse.
  134. * XmlSchemaUtil.cs : Removed extra MonoTODO. Removed CheckToken().
  135. 2003-10-25 Atsushi Enomoto <[email protected]>
  136. * BuiltInDatatype.cs : Fixed incorrect inheritance of date and time.
  137. Fixed most of date-time related types' ParseValue().
  138. Applied Normalize() before parsing values in some ParseValue().
  139. 2003-10-23 Atsushi Enomoto <[email protected]>
  140. * XmlSchemaAll.cs,
  141. XmlSchemaChoice.cs,
  142. XmlSchemaGroupBase.cs,
  143. XmlSchemaSequence.cs : Now CompiledItems went to XmlSchemaGroupBase.
  144. * XmlSchemaAny.cs,
  145. XmlSchemaElement.cs,
  146. XmlSchemaGroupBase.cs,
  147. XmlSchemaGroupRef.cs,
  148. XmlSchemaParticle.cs,
  149. XmlSchemaSequence.cs : Added ParticleEquals() method to compare
  150. whether the particles are equal in the context of WXS part 1 - 3.9.6.
  151. * XmlSchemaAny.cs : Implemented ValidateDerivationByRestriction().
  152. * XmlSchemaAnyAttribute.cs : Removed extraneous lines and added my
  153. responsibility on this class.
  154. Added ValidateWildcardAllowsNamespaceName().
  155. * XmlSchemaAttribute.cs : Added ValidatedUse which holds post-
  156. compilation value of "Use".
  157. * XmlSchemaAttributeGroup.cs,
  158. XmlSchemaAttributeGroupRef.cs : Removed MonoTODO (same as some other
  159. classes) since there is no more errors on attribute stuff ;-)
  160. * XmlSchemaComplexType.cs : complex content extension must block
  161. derivation from any built-in primitive types.
  162. Fixed wildcard derivation by restriction.
  163. ValidateDerivationByRestriction() now checks attribute related
  164. validity of DBR (derivation by restriction).
  165. Now uses ParticleEquals() for particle DBR check.
  166. * XmlSchemaSequence.cs : Fixed to use CompiledItems instead of Items.
  167. 2003-10-21 Atsushi Enomoto <[email protected]>
  168. * XmlSchema.cs,
  169. XmlSchemaUtil.cs : Reduced warning message.
  170. * XmlSchemaAttribute.cs : NotImplementedException should no more exist.
  171. (All things are going to be implemented.)
  172. * BuiltInDatatype.cs : XsdInteger should not allow non-integer decimal.
  173. * XmlSchemaSimpleType.cs : Added internal Datatype property. Implemented
  174. list type derivation validation. Added Normalize().
  175. * XmlSchemaSimpleTypeContent.cs : Added Normalize(). Replaced anyType
  176. with anySimpleType.
  177. * XmlSchemaSimpleTypeRestriction.cs : Implemented some facet validation,
  178. such as pattern, enumeration, and length etc.
  179. 2003-10-19 Atsushi Enomoto <[email protected]>
  180. * BuiltInDatatype.cs : Implemented XsdHexBinary.Parse().
  181. * XmlSchemaCollection.cs : Implemented CopyTo().
  182. * XmlSchemaDatatype.cs : Added Normalize() with whitespace handling.
  183. Added support for anySimpleType.
  184. * XmlSchemaSimpleType.cs : Type specification named as anyType should
  185. be mapped to anySimpleType.
  186. * BUGS-MS.txt : Added more case note.
  187. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  188. * XmlSchema.cs: If the schema element is an empty element, skip it after
  189. reading the attributes.
  190. 2003-10-09 Atsushi Enomoto <[email protected]>
  191. * BuiltInDatatype.cs : Added CLSCompliant attributes to some classes.
  192. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  193. * XmlSchemaUtil.cs: arrayType attribute needs special handling.
  194. 2003-10-01 Atsushi Enomoto <[email protected]>
  195. * XmlSchema.cs : Forgot to update with previous files.
  196. 2003-10-01 Atsushi Enomoto <[email protected]>
  197. * XmlSchemaAttribute.cs, XmlSchemaComplexType.cs, XmlSchemaElement.cs,
  198. XmlSchemaGroupRef.cs, XmlSchemaSimpleContentExtension.cs,
  199. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleTypeContent.cs,
  200. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeUnion.cs :
  201. Fixed missing sub components check. It should fix soap stuff.
  202. * XmlSchemaAny.cs, XmlSchemaAttribute.cs,
  203. XmlSchemaAttributeGroupRef.cs, XmlSchemaContent.cs :
  204. Added my responsibility on them ;-)
  205. 2003-10-01 Atsushi Enomoto <[email protected]>
  206. * XmlSchema.cs : Read() should keep current position of XmlReader if
  207. it was already positioned to 'schema' element.
  208. 2003-09-30 Atsushi Enomoto <[email protected]>
  209. * Forgot to append 8/24/2003 ChangeLog.
  210. * BUGS.txt, BUGS-MS.txt : Appended additional bug info.
  211. * BuiltInDatatype.cs, ValidationHandler.cs, XmlSchema.cs,
  212. XmlSchemaAll.cs, XmlSchemaAnnotation.cs. XmlSchemaAny.cs,
  213. XmlSchemaAnyAttribute.cs, XmlSchemaAttribute.cs,
  214. XmlSchemaAttributeGroup.cs, XmlSchemaAttributeGroupRef.cs,
  215. XmlSchemaChoice.cs, XmlSchemaCollection.cs,
  216. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  217. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  218. XmlSchemaContent.cs, XmlSchemaDatatype.cs, XmlSchemaElement.cs,
  219. XmlSchemaException.cs, XmlSchemaGroup.cs, XmlSchemaGroupBase.cs,
  220. XmlSchemaGroupRef.cs, XmlSchemaIdentityConstraint.cs,
  221. XmlSchemaKey.cs, XmlSchemaKeyref.cs, XmlSchemaNotation.cs,
  222. XmlSchemaObject.cs, XmlSchemaObjectTable.cs, XmlSchemaParticle.cs,
  223. XmlSchemaReader.cs, XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  224. XmlSchemaSimpleContentExtension.cs,
  225. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  226. XmlSchemaSimpleTypeContent.cs, XmlSchemaSimpleTypeList.cs,
  227. XmlSchemaSimpleTypeRestriction.cs, XmlSchemaSimpleTypeUnion.cs,
  228. XmlSchemaType.cs, XmlSchemaUnique.cs, XmlSchemaUtil.cs,
  229. XmlSchemaXPath.cs :
  230. - Almost all classes are changed to implement schema component
  231. constraints, and schema validation using XsdValidatingReader.
  232. - better exception messages.
  233. - More datatype support.
  234. and so on.
  235. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  236. * XmlSchema.cs: Do not add schema namespace declaration if it is already
  237. declared.
  238. 2003-08-28 Lluis Sanchez Gual <[email protected]>
  239. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs: Added double type.
  240. 2003-08-24 Atsushi Enomoto <[email protected]>
  241. * BuiltInDatatype.cs : XsdDecimal.TokenizedType should be None.
  242. * XmlSchemaCollection.cs : Add(uri) should not reject chameleon schema.
  243. Add() should compile specified schema.
  244. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  245. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs: Added XsdAnyURI,
  246. XsdDateTime, XsdDate, XsdTime.
  247. 2003-08-07 Atsushi Enomoto <[email protected]>
  248. * BuiltInDatatypes.cs : Fixed whitespace facet in XsdToken.
  249. Tokenized type of nmtokens and entities is string [].
  250. * XmlSchema.cs : Changed IsCompile implementation a bit.
  251. Compile() should reset compiled contents.
  252. * XmlSchemaDatatype.cs : Fixed collapsing Normalize().
  253. * XmlSchemaObject.cs : added CompilationId initialization.
  254. 2003-08-05 Lluis Sanchez Gual <[email protected]>
  255. * XmlSchema.cs: Set IsCompiled to true after compiling.
  256. In Compile(): ignore included schemas that do not have a value
  257. in SchemaLocation. It means that FindElement can return null
  258. if the referred schema was ignored. Added check for that case.
  259. Compile schema after reading it.
  260. * XmlSchemaCollection.cs: The targetNamespace of a schema may
  261. be null. Make XmlSchemaCollection work for this case.
  262. * BuiltInDataType.cs, XmlSchemaDataType.cs: added new primitive
  263. types: float, base64Binary, boolean.
  264. 2003-08-02 Atsushi Enomoto <[email protected]>
  265. * XmlSchema.cs :
  266. - Changed missingElementTypeRefs from Hashtable to ArrayList.
  267. - Added internal XmlSchemas for keeping imported schemas.
  268. - Added private Compile() that takes the original rootSchema and
  269. schema location stack for nested inclusion check.
  270. - Added basic xs:import and xs:include support.
  271. - Compile() is now aware of included XmlSchemaObject items.
  272. - Changed Compile() to fill missing elements' types and that of
  273. referencing elements.
  274. - Read() now adds SourceUri property (although only to itself).
  275. * XmlSchemaCollection.cs : Implemented Add().
  276. * XmlSchemaCollectionEnumerator.cs :
  277. Changed .ctor() to use schema collection as its argument.
  278. Fixed Current to return hashtable's Value, instead of Current
  279. (which returns DictionaryEntry).
  280. * XmlSchemaComplexType.cs :
  281. Added internal static AnyType.
  282. Compile() is now searches for its base type into other schemas.
  283. * XmlSchemaElement.cs : anyType is supported.
  284. It now searches for type information after Compile().
  285. SetReferedElementInfo() is now changed to SetSchemaType().
  286. * XmlSchemaObjectTable.cs :
  287. It had problems similar to schema collection. Now it uses internal
  288. class XmlSchemaObjectTableEnumerator to support GetEnumerator().
  289. * XmlSchemaParticle.cs : added internal class XmlSchemaParticleEmpty
  290. and internal static Empty.
  291. 2003-07-26 Atsushi Enomoto <[email protected]>
  292. * BuiltInDatatype.cs : XsdIDRefs.ParseValue () should be implemented.
  293. * XmlSchemaDatatype.cs : public Whitespace and protected Normalize()
  294. should be internal.
  295. 2003-07-24 Atsushi Enomoto <[email protected]>
  296. * XmlSchema.cs : Read() now uses XmlSerializer.Deserialize().
  297. 2003-07-21 Atsushi Enomoto <[email protected]>
  298. * XmlSchema.cs, XmlSchemaElement.cs :
  299. added internal MissingElementTypeRefs and support for refering
  300. element's elementType.
  301. 2003-07-20 Atsushi Enomoto <[email protected]>
  302. * XmlSchema.cs : added support for collecting missing type references
  303. at compilation-time.
  304. * XmlSchemaType.cs, XmlSchemaComplexType.cs, XmlSchemaSimpleType.cs:
  305. - Renamed qName to QNameInternal.
  306. - Added BaseSchemaType and ContentTypeParticle support.
  307. 2003-07-19 Atsushi Enomoto <[email protected]>
  308. * XmlSchema.cs, XmlSchemaAll.cs, XmlSchemaAnnotated.cs,
  309. XmlSchemaAnnotation.cs, XmlSchemaAny.cs, XmlSchemaAnyAttribute.cs,
  310. XmlSchemaAttribute.cs, XmlSchemaAttributeGroup.cs,
  311. XmlSchemaAttributeGroupRef.cs, XmlSchemaChoice.cs,
  312. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  313. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  314. XmlSchemaElement.cs, XmlSchemaGroup.cs, XmlSchemaGroupRef.cs,
  315. XmlSchemaIdentityConstraint.cs, XmlSchemaImport.cs,
  316. XmlSchemaInclude.cs, XmlSchemaKey.cs, XmlSchemaKeyref.cs,
  317. XmlSchemaNotation.cs, XmlSchemaObject.cs, XmlSchemaRedefine.cs,
  318. XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  319. XmlSchemaSimpleContentExtension.cs,
  320. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  321. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeRestriction.cs,
  322. XmlSchemaSimpleTypeUnion.cs, XmlSchemaUnique.cs,
  323. XmlSchemaXPath.cs,
  324. As to Compile() and Validate(),
  325. - Added CompilationId and check it while compiling schema components.
  326. - Code refactory. Replaced literal xmlns with XmlSchema.Namespace
  327. - Replaced XmlSchemaInfo with compiling XmlSchema itself (XmlSchema
  328. also has PSVI components inside it, so passing itself seems enough).
  329. - Related to above change, IDCollection was moved to XmlSchema, and
  330. blockDefault/finalDefault/blockResolved/finalResolved resolution
  331. was changed to reference only to schema.BlockDefault/FinalDefault.
  332. - The similar change has done against XmlSchemaForm related stuff.
  333. - Changed compilation order of schema type definitions (it is
  334. workaround). First it compiles types, and then it compiles others.
  335. * XmlSchemaElement.cs : added ElementType PSVI contribution support.
  336. 2003-07-19 Atsushi Enomoto <[email protected]>
  337. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs :
  338. Added decimal and its derived datatypes.
  339. Added abstract XsdAnySimpleType.
  340. 2003-07-15 Lluis Sanchez Gual <[email protected]>
  341. * BuiltInDatatype.cs,
  342. XmlSchemaDatatype.cs : added unsignedByte type support.
  343. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  344. * XmlSchemaDatatype.cs: Fixed compiler warning.
  345. 2003-07-12 Atsushi Enomoto <[email protected]>
  346. * BuiltInDatatype.cs,
  347. XmlSchemaDatatype.cs : added NOTATION type support.
  348. 2003-07-06 Atsushi Enomoto <[email protected]>
  349. * added BuiltInDatatype.cs.
  350. * XmlSchemaDatatype.cs : [GetType()] added support for some
  351. built-in datatypes.
  352. 2003-05-05 Atsushi Enomoto <[email protected]>
  353. * XmlSchemaAnnotation.cs : It depended on incorrect ReadNode().
  354. 2003-02-19 Atsushi Enomoto <[email protected]>
  355. * XmlSchemaAnnotation.cs : expect the correct closing tag on <appinfo>
  356. and <documentation> elements. (patch by Peter Pentchev)
  357. * XmlSchemaObjectEnumerator.cs : cast properly to XmlSchemaObject
  358. instead of XmlSchema. (patch by Peter Pentchev)
  359. 2002-07-23 Duncan Mak <[email protected]>
  360. * XmlSchemaException.cs: Partiall implement the ISerializable
  361. methods. It's not clear now SourceSchemaObject should be deserialized.
  362. 2002-07-22 Tim Coleman <[email protected]>
  363. * XmlSchema.cs: Removed isCompiled which is defined as internal
  364. in XmlSchemaObject.
  365. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  366. * XmlSchema: Started work on Validate methods
  367. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  368. * XmlSchema: The Read and Write methods are no more [MonoTODO] :)
  369. * XmlSchemaAppInfo: Xml Markup is now being read.
  370. * XmlSchemaDocumentation: Xml Markup is now being read.
  371. * All: Unhandled attributes are being handled properly.
  372. * All: Reordered the properties in all cs files to match with MS
  373. Implementation. This was required since the order is importatnt
  374. for the XmlSerializer.
  375. 2002-06-14 Dwivedi, Ajay kumar <[email protected]>
  376. * General: Fixed a few more Bugs
  377. 2002-06-10 Dwivedi, Ajay kumar <[email protected]>
  378. * XmlSchemaReader: A Wrapper class around XmlReader with customized
  379. methods to suit reading a schema.
  380. * General: Implemented Read() method for the schema. There are only
  381. a few minor bugs remaining.
  382. 2002-05-25 Dwivedi, Ajay kumar <[email protected]>
  383. * BUGS.txt: New file to keep track of bugs
  384. * ALL: All classes are initialized exactly as in .NET except
  385. 1. inclusion of language attribute in schema
  386. 2. ComplexContent's Particle is initialized to null whereas .NET
  387. to some internal implementation. IMO Null is more appropriate
  388. * ALL: Changed the Compile methods to return the count of errors.
  389. * ALL: Complile methods are almost complete. Pass 1453 of 3061 tests.
  390. This number should shoot up if we write a parser to read the
  391. Schema instead of using reflection (which is slower too)
  392. 2002-05-04 Dwivedi, Ajay kumar <[email protected]>
  393. * XmlSchemaUtil.cs: New file added.
  394. * Parser.cs: New file Added. Unused at the moment.
  395. * XmlSchemaObjectCollection: Fixed GetEnumerator
  396. * General: Preprocessing for Attributes and SimpleTypes completed.
  397. 2002-04-26 Duncan Mak <[email protected]>
  398. * ValidationHandler.cs: New file.
  399. * XmlSchemaInfo.cs: New file.
  400. * *.cs: More updates from Ajay.
  401. 2002-03-27 Duncan Mak <[email protected]>
  402. * *.cs: Updates from Ajay Dwivedi <[email protected]>.