ChangeLog 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995
  1. 2004-09-16 Atsushi Enomoto <[email protected]>
  2. * BuiltInDatatype.cs, SchemaDataValueType.cs :
  3. ParseValue() for xs:AnyURI should return System.Uri. MS.NET returns
  4. XmlSchemaUri, but it is derived from System.Uri, while ours was not.
  5. 2004-09-07 Atsushi Enomoto <[email protected]>
  6. * IXmlType.cs : deprecated in .NET 2.0.
  7. 2004-09-03 Atsushi Enomoto <[email protected]>
  8. * XmlSchema.cs : When schema inclusion results in a recursion, just
  9. skip recursed schema.
  10. * BUGS-MS.txt : added another entry. Reflected response from Microsoft.
  11. 2004-08-30 Atsushi Enomoto <[email protected]>
  12. * XmlSchemaType.cs : quick build fix.
  13. 2004-08-30 Atsushi Enomoto <[email protected]>
  14. * XmlSchemaDatatype.cs : Removed FromName(localName) that cannot
  15. handle xdt:* types.
  16. * XmlSchemaType.cs : added internal GetBuiltInType() methods that
  17. mix GetBuiltInSimpleType() and GetBuiltInComplexType().
  18. 2004-08-25 Atsushi Enomoto <[email protected]>
  19. * XmlSchemaSimpleType.cs : Fill list types such as xs:IDREFS.
  20. * XmlSchemaType.cs :
  21. Fixed TypeCode more (broken on predefined list types and xs:anyType).
  22. 2004-08-25 Atsushi Enomoto <[email protected]>
  23. * XmlSchemaType.cs :
  24. anyType was anonymous, thus GetBuiltInComplexType() didn't work.
  25. 2004-08-24 Atsushi Enomoto <[email protected]>
  26. * XmlSchemaType.cs : return XmlTypeCode.AnyAtomicType for
  27. anySimpleType's TypeCode property.
  28. 2004-08-10 Atsushi Enomoto <[email protected]>
  29. * XmlSchema.cs : Replace XmlSchemaCollection with XmlSchemaSet that
  30. used to maintain compiled schema state.
  31. Simplified code a bit (Include processing).
  32. Set IsCompiled = true only when successfully compiled.
  33. * XmlSchemaCollection.cs : Now it totally delegates its processing
  34. to XmlSchemaSet. Removed unused methods.
  35. * XmlSchemaElement.cs : Added post-compiled information initializer
  36. method, and call it before (re)Compile().
  37. * XmlSchemaSet.cs :
  38. - Replaced internal store from Dictionary to List, since schema
  39. resources for one target namespace can be more than one (that's why
  40. - Schemas(string targetNamespace) returns ICollection).
  41. - Now global schemaset members are added per schema addition (it is
  42. more MS compatible than before).
  43. - Use GetSafeNs() to do targetNamespace comparison correctly.
  44. XmlSchemaSet looks still unstable, so it will be changed again.
  45. * XmlSchemaSimpleTypeRestriction.cs,
  46. XmlSchemaSimpleTypeUnion.cs,
  47. * XmlSchemaUtil.cs : Consider xdt namespace.
  48. 2004-08-10 Atsushi Enomoto <[email protected]>
  49. * XmlSchemaCollection.cs : replaced CRLF to LF (they were mixed).
  50. 2004-08-10 Atsushi Enomoto <[email protected]>
  51. * XmlSchema.cs : code reformatting. convert CRLF to LF.
  52. Use String.Format() instead of +. Removed commented code.
  53. 2004-07-28 Atsushi Enomoto <[email protected]>
  54. * BuiltInDatatype.cs : use XmlQualifiedName.Parse().
  55. 2004-07-23 Atsushi Enomoto <[email protected]>
  56. * XmlSchema.cs : Added internal XdtNamespace constant. don't fill
  57. schemaset compoenents here.
  58. * XmlSchemaAttribute.cs : Implemented AttributeSchemaType.
  59. * XmlSchemaElement.cs : Implemented ElementSchemaType.
  60. * XmlSchemaSimpleType.cs : Added predefined simple types
  61. * XmlSchemaType.cs : Implemented GetBuiltInSimpleType().
  62. * XmlSchemaDatatype.cs : Allow Xdt namespaces too (not completed;
  63. quick fix for GetBuiltInSimpleType()).
  64. 2004-07-21 Atsushi Enomoto <[email protected]>
  65. * BUGS-MS.txt : updated including answer excerpts from MS team.
  66. * BUGS.txt : it turned out that some bugs I wrote as "MS bugs" are
  67. actually my bug. Noted them.
  68. * BuiltInDatatype.cs :
  69. Commented out extraneous [CLSCompliant].
  70. Switch ParseValue() argument as IXmlNamespaceResolver for 2.0, and
  71. XmlNamespaceManager for 1.x.
  72. Added TypeCode overrides.
  73. * XmlSchemaDatatype.cs : Added 2.0 members.
  74. Switch IXmlNamespaceResolver and XmlNamespaceManager.
  75. * XmlSchemaType.cs : Added some NET_2_0 members. removed old 1.2 stuff.
  76. 2004-07-13 Atsushi Enomoto <[email protected]>
  77. * XmlSchemaBuiltInType.cs, XmlSchemaValidity.cs, XmlTypeCode.cs
  78. : fixed annoying enum errors.
  79. * XmlSchemaCollection.cs : completely delegate to XmlSchemaSet.
  80. * XmlSchemaSet.cs : sealed classes. Use ListDictionary (avoid annoying
  81. order preservation matter). NameTable null check for .ctor().
  82. Fill GlobalAttributes, GlobalElements, GlobalTypes correctly.
  83. Add(string, XmlReader) checks namespace conflicts, while
  84. Add(XmlSchema) does not. Fixed Schemas() return type.
  85. 2004-07-11 Atsushi Enomoto <[email protected]>
  86. * XmlSchemaDatatypeVariety.cs : Fixed class name typo.
  87. * XmlValueConverter.cs : fixed return types.
  88. 2004-06-18 Atsushi Enomoto <[email protected]>
  89. * CustomSerializer.cs, XmlSchemaException.cs,
  90. XmlSchemaParticle.cs, XmlSchemaSimpleTypeRestriction.cs
  91. : Globalization.
  92. 2004-06-10 Atsushi Enomoto <[email protected]>
  93. * XmlSchemaFacet.cs : Fixed internal protected --> internal.
  94. 2004-06-06 Atsushi Enomoto <[email protected]>
  95. * XmlSchema.cs : Make sure to close url-based XmlTextReader.
  96. 2004-06-03 Atsushi Enomoto <[email protected]>
  97. * BuiltInDatatype.cs,
  98. XmlSchemaFacet.cs,
  99. XmlSchemaSimpleTypeRestriction.cs,
  100. XmlSchemaXPath.cs : modified some enum const to static readonly
  101. (.NET 1.0 does not allow it). Use safe overload of LookupNamespace().
  102. 2004-05-22 Atsushi Enomoto <[email protected]>
  103. * XmlSchemaDatatypeVariety.cs,
  104. XmlSchemaValidity.cs : they are NET_2_0 enums.
  105. 2004-05-22 Atsushi Enomoto <[email protected]>
  106. * XmlValueConverter.cs : missed NET_2_0.
  107. 2004-05-22 Atsushi Enomoto <[email protected]>
  108. * IXmlSchemaInfo.cs,
  109. IXmlType.cs,
  110. XmlSchemaDatatypeVariety.cs,
  111. XmlSchemaValidity.cs,
  112. XmlTypeCode.cs,
  113. XmlValueConverter.cs : added.
  114. * XmlSchemaInfo.cs : removed (.NET 1.2).
  115. * XmlSchemaBuiltInType.cs,
  116. XmlSchemaSet.cs : updated.
  117. 2004-05-19 Atsushi Enomoto <[email protected]>
  118. * CustomSerializer.cs : Added custom serializer for XmlSchema, that is
  119. generated by SerializationCodeGenerator and edited a bit.
  120. * XmlSchema.cs : Use XmlSchemaSerializationWriter.
  121. 2004-05-13 Atsushi Enomoto <[email protected]>
  122. * XmlSchema.cs : Removed FIXME. No PSVI required.
  123. * XmlSchemaAll.cs : Removed FIXME. It was not done.
  124. * XmlSchemaAttributeGroupRef.cs : Removed FIXME. It can be annotated.
  125. * XmlSchemaChoice.cs : not FIXME but LAMESPEC.
  126. * XmlSchemaSimpleTypeRestriction.cs : Added check for non
  127. XmlSchemaFacet items on Compile(). Thus removed FIXME.
  128. * XmlSchemaUtil.cs : Fixed SplitList to handle sequential spaces.
  129. Thus removed FIXME.
  130. * XmlSchemaObjectTable. cs: modified to use HybridDictionary (mostly
  131. for avoiding iterator order difference).
  132. 2004-05-13 Atsushi Enomoto <[email protected]>
  133. * XmlSchemaSimpleTypeRestriction.cs : Removed MonoTODO. done.
  134. 2004-05-12 Atsushi Enomoto <[email protected]>
  135. * BuiltInDatatype.cs : made classes/enums internal.
  136. 2004-05-05 Atsushi Enomoto <[email protected]>
  137. * BuiltInDatatype.cs : trivia fix
  138. 2004-05-05 Atsushi Enomoto <[email protected]>
  139. * BuiltInDatatype.cs : added BUGGY_MS_COMPLIANT condition and that
  140. handles ms-compatible properties.
  141. * XmlSchemaComplexType.cs : ditto for ContentTypeParticle of xs:anyType.
  142. Make sure ContentType for xs:anyType is Mixed.
  143. * XmlSchemaUtil.cs : ditto for <xs:attribute use="prohibited" ..>
  144. 2004-05-05 Atsushi Enomoto <[email protected]>
  145. * XmlSchema.cs : Write() handles schema namespace for xmlserializer
  146. (it does not look to be handled inside xmlserializer).
  147. 2004-04-27 Atsushi Enomoto <[email protected]>
  148. * XmlSchemaComplexType.cs : Set basetype as ur-type for such complex
  149. type that has an immediate Particle (W3C specified as restriction
  150. of ur-type).
  151. 2004-04-27 Atsushi Enomoto <[email protected]>
  152. * XmlSchemaAttribute.cs : When type was inline simple type, it is not
  153. validated correctly.
  154. * XmlSchemaSimpleType.cs : When Content was restriction, DataType was
  155. not indicating base type's Datatype correctly.
  156. 2004-04-06 Atsushi Enomoto <[email protected]>
  157. * XmlSchemaDatatype.cs : optimized Normalize() not to create
  158. extraneous string objects.
  159. 2004-03-15 Atsushi Enomoto <[email protected]>
  160. * reverted the latest XmlSchemaUnique.cs change (MS.NET looks fine to
  161. reject incorrect schemas ;-)
  162. 2004-03-04 Alon Gazit <[email protected]>
  163. * XmlSchemaUnique.cs : Changed Read implementation.
  164. Currently can read "field" element before "selector" element (like MS).
  165. 2004-02-26 Atsushi Enomoto <[email protected]>
  166. * XmlSchemaCollection.cs : Implemented SyncRoot and IsSynchronized
  167. (as always synchronized).
  168. 2004-02-16 Atsushi Enomoto <[email protected]>
  169. * XmlSchema.cs,
  170. XmlSchemaAttribute.cs
  171. XmlSchemaAttributeGroup.cs,
  172. XmlSchemaComplexContent.cs,
  173. XmlSchemaComplexType.cs,
  174. XmlSchemaContent.cs,
  175. XmlSchemaDatatype.cs,
  176. XmlSchemaNotation.cs,
  177. XmlSchemaObject.cs,
  178. XmlSchemaParticle.cs : extra TODO removal. foreach elimination.
  179. Moved attribute group recursion check field from XmlSchemaObject
  180. to XmlSchemaAttributeGroup.
  181. Fixed XmlSchemaParticle.EmptyParticle class access modifier.
  182. * XmlSchemaSimpleType.cs,
  183. XmlSchemaSimpleTypeContent.cs,
  184. XmlSchemaSimpleTypeList.cs,
  185. XmlSchemaSimpleTypeRestriction.cs,
  186. XmlSchemaSimpleTypeUnion.cs : Removed "actualBaseSchemaType" field
  187. and the owner simpleType should hold the corresponding type info.
  188. Collect base type info in prior to validation.
  189. 2004-02-05 Atsushi Enomoto <[email protected]>
  190. * BUGS-MS.txt : fixed incorrect thought on case 008. Added case 014.
  191. * BUGS.txt : FYI.
  192. 2004-02-03 Atsushi Enomoto <[email protected]>
  193. * BuiltInDatatype.cs : Fixed some Parse() for token based datatypes.
  194. * XmlSchemaAny.cs : set properties for cloned particle. This will fix
  195. bugzilla #53668.
  196. * XmlSchemaParticle.cs : copy occurence string after computation of
  197. validated min/max occurence. This will fix bug #53667.
  198. 2004-01-26 Atsushi Enomoto <[email protected]>
  199. * XmlSchema.cs : Raise warning event when external schema could not
  200. be resolved.
  201. * XmlSchemaAll.cs : Fixed incorrect IsEmptiable computation.
  202. * XmlSchemaAny.cs : Fixed incorrect occurence computation.
  203. * XmlSchemaChoice.cs : compiledItems were incorrectly appended.
  204. * XmlSchemaComplexType.cs : Now validatableParticle became extraneous.
  205. * XmlSchemaGroupBase.cs : Here we should not get optimized particle
  206. because it might cause infinite loop.
  207. * XmlSchemaGroupRef.cs : Fixed Validate() to avoid null reference
  208. exception (only occur with ValidationEventHandler). Fixed Occurence
  209. embedding logic that was useless because of particle optimization.
  210. 2004-01-22 Atsushi Enomoto <[email protected]>
  211. * BuiltInDatatype.cs : On parsing QName, we don't have to spend costs
  212. on Add()ing parsed name to name table.
  213. * XmlSchemaUtil.cs : Added IsBuiltInDatatypeName().
  214. * XmlSchemaAttribute.cs, XmlSchemaComplexType.cs,
  215. XmlSchemaElement.cs, XmlSchemaSimpleContentExtension.cs,
  216. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleTypeList.cs :
  217. Use the method above instead of Namespace string comparison.
  218. (it will be required to validate schema for schemas.)
  219. * XmlSchemaComplexType.cs : Type Derivation OK (3.4.6) should also
  220. treat null base type as anyType. Derivation Valid Restriction
  221. (3.4.6) should allow base type wildcard absense in case of anyType.
  222. 2004-01-22 Atsushi Enomoto <[email protected]>
  223. * XmlSchema.cs : When we have schema A which includes schema B which
  224. includes schema C (i.e. A->B->C), C components should be compiled.
  225. Here, same URL inclusions are ignored.
  226. * XmlSchemaElement.cs : Hack for missing substitution-group fix.
  227. * XmlSchemaSimpleTypeContent.cs : make actualBaseSchemaType private
  228. and initialize. This fixes bug #53178.
  229. * XmlSchemaSimpleTypeUnion.cs : Forgot to commit ;)
  230. 2004-01-22 Atsushi Enomoto <[email protected]>
  231. * XmlSchemaSimpleTypeRestriction.cs : regexp improvements. Modify
  232. pattern string as "^str$" and convert WXS specific char classes into
  233. .NET regexp patterns.
  234. 2004-01-21 Atsushi Enomoto <[email protected]>
  235. * XmlSchema.cs :
  236. - Removed extra property Language. Fill substitution-group info
  237. before ContentTypeParticle is computed.
  238. * XmlSchemaComplexType.cs : ContentType and ContentTypeParticle are
  239. now computer before Validate() (to exclude 3.4.2 from 3.4.6
  240. component constraint check).
  241. * XmlSchemaObject.cs, XmlSchemaParticle.cs :
  242. Added CopyInfo() for cloning objects.
  243. * XmlSchemaObjectTable.cs :
  244. Add() doesn't have to reject same named items.
  245. * XmlSchemaParticle.cs :
  246. - Renamed internal class XmlSchemaParticleEmpty to EmptyParticle
  247. (for ease of post compilation infoset comparison).
  248. - GetMinEffectiveTotalRange() should return max occurs for element and
  249. any.
  250. * XmlSchemaParticle.cs,
  251. XmlSchemaAll.cs,
  252. XmlSchemaAny.cs,
  253. XmlSchemaChoice.cs,
  254. XmlSchemaElement.cs,
  255. XmlSchemaGroupBase.cs,
  256. XmlSchemaGroupRef.cs,
  257. XmlSchemaSequence.cs :
  258. - Removed ActualParticle property.
  259. - Added GetOptimizedParticle() to get ContentTypeParticle.
  260. - ContentTypeParticle is now created as different object from
  261. user-specified "Particle" property.
  262. - Return Empty particle when model groups contains no Items.
  263. - When Items contains exactly 1 item, return the item (unless it is
  264. top level choice model group - it causes DBR problem).
  265. - ValidateDerivationValidRestriction() and related WXS 3.9.6 DBR
  266. check methods such as ValidateNSRecurseCheckCardinality() now
  267. returns a bool value and avoids exceptions on each failure time.
  268. - ValidateRecurse() now doesn't progress base particle incorrectly.
  269. (it caused incorrect order-preserving-mapping error.)
  270. - 3.9.6 Recurse, RecurseLax, MapAndSum are now treated as different.
  271. * XmlSchemaAll.cs : occurence validation shoud be done against values
  272. after computation (ValidatedMaxOccurs).
  273. * XmlSchemaChoice.cs : When Items is empty, then invoke warning event.
  274. * XmlSchemaElement.cs :
  275. - Consider referencedElement also for SubstitutionGroupElement.
  276. - Removed SubstitutingChoice which is not in use.
  277. - when it was targeted as substitution group by other elements, its
  278. ContentTypeParticle should be substitution choice (see 3.9.6
  279. Particle Valid (Restriction) term 2.1).
  280. - Added FillsubstitutionElementInfo() (see XmlSchema.cs above).
  281. * XmlSchemaGroup.cs : Removed extra check on model group (because it
  282. is impossible to specify non-model-group particle).
  283. * XmlSchemaIdentityConstraint.cs,
  284. XmlSchemaKey.cs,
  285. XmlSchemaKeyRef.cs,
  286. XmlSchemaUnique.cs : Removed extraneous MonoTODO.
  287. * XmlSchemaSimpleContent.cs : Made actualSchemaType as internal.
  288. * XmlSchemaSimpleType.cs : Removed extraneous new Datatype property.
  289. * XmlSchemaSimpleTypeRestriction.cs : Renamed actualBaseSchemaType to
  290. ActualBaseSchemaType.
  291. * XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeUnion.cs :
  292. Removed unused actualBaseSchemaType code.
  293. * XmlSchemaType.cs : use recently introduced BaseXmlSchemaType.
  294. * XmlSchemaUtil.cs : Removed unused CheckLanguage().
  295. 2004-01-21 Atsushi Enomoto <[email protected]>
  296. * XmlSchemaXPath.cs : wildcard with prefix (e.g. @foo:*) was
  297. incorrectly treated.
  298. 2004-01-20 Atsushi Enomoto <[email protected]>
  299. * SchemaDataValueType.cs : UriValueType.ToString() should return
  300. actual URI string (as MS's XmlSchemaUri class does).
  301. * XmlSchemaReader.cs : Make it internal.
  302. 2004-01-16 David Sheldon <[email protected]>
  303. * BuiltInDatatype.cs: added guard to stop index out of range error for
  304. invalid Base64 characters.
  305. 2004-01-15 Jackson Harper <[email protected]>
  306. * XmlSchemaContent.cs: Make actualBaseSchemaType protected (fixes
  307. build).
  308. 2004-01-15 Atsushi Enomoto <[email protected]>
  309. * XmlSchemaComplexContentExtension.cs,
  310. XmlSchemaSimpleContentExtension.cs,
  311. XmlSchemaSimpleContentExtension.cs,
  312. XmlSchemaSimpleContentRestriction.cs,
  313. XmlSchemaContent.cs : Added IsExtension. GetXXX() became nonvirtual.
  314. * XmlSchemaType.cs :
  315. - Added NET_2_0 BaseXmlSchemaType (other members are commented out).
  316. - Now BaseSchemaType redirects to new property BaseXmlSchemaType.
  317. * XmlSchemaComplexType.cs :
  318. - Now it fully uses BaseXmlSchemaType above.
  319. - Since ValidateXXX() became too huge, I divided them into
  320. CollectXXX() [spec 3.4.1] and ValidateXXX() [spec 3.4.3 / 3.4.6].
  321. Schema Components are contributed before constraint check.
  322. - Now ContentTypeParticle is distinguished from validating particle
  323. which is newly introduced as "ValidatableParticle" (only used in
  324. XsdValidatingReader).
  325. * XmlSchemaSimpleType.cs : Now it uses BaseXmlSchemaType.
  326. capitalized internal members a bit.
  327. 2004-01-14 David Sheldon <[email protected]>
  328. * XmlSchemaSimpleTypeRestriction: Convert pattern facets to be ORed,
  329. as per: http://www.w3.org/TR/xmlschema-2/#src-multiple-patterns
  330. Fixes bug 52841
  331. 2004-01-14 David Sheldon <[email protected]>
  332. * BuiltInDatatype.cs:
  333. XsdAnySimpleType - Added Length that returns the string length.
  334. XsdBase64Binary - Added Length, and used more direct, less fussy,
  335. Base64 decoder.
  336. XsdHexBinary - Added Length method
  337. * XmlSchemaSimpleTypeRestriction: use DataType Length method to
  338. determine length to compare against. Stop testing Lenght facets on
  339. QName and Notation types (as per errata)
  340. 2004-01-14 Atsushi Enomoto <[email protected]>
  341. * XmlSchemaComplexType.cs : forgot to commit ;)
  342. * XmlSchemaUtil.cs : Fixed IsSchemaDatatypeEquals() to return false
  343. for comparison between ID and IDREF.
  344. 2004-01-14 Atsushi Enomoto <[email protected]>
  345. * Added SchemaDataValueType.cs.
  346. * BuiltInDatatype.cs, XmlSchemaDatatype.cs : Adde ParseValueType() on
  347. all derived datatype classes.
  348. * XmlSchemaComplexType.cs : Fixed ContentType value for simple types.
  349. Errata-considered simple content derivation check and simple content
  350. restriction should check this too.
  351. 2004-01-13 Jackson Harper <[email protected]>
  352. * XmlSchemaComplexType.cs: Comment out line that was breaking the build.
  353. 2004-01-13 Atsushi Enomoto <[email protected]>
  354. * XmlSchemaSimpleTypeUnion.cs : The same reason as the previous patch.
  355. * XmlSchemaComplexType.cs : Now it handles ContentTypeParticle and
  356. ContentType much more presise than before.
  357. * XmlSchemaElement.cs :
  358. Simplified property handling for reference element.
  359. 2004-01-13 Atsushi Enomoto <[email protected]>
  360. * XmlSchema.cs, XmlSchemaComplexType.cs, XmlSchemaElement.cs :
  361. Invalid attribute should raise an error, not a warning.
  362. 2004-01-13 Atsushi Enomoto <[email protected]>
  363. * XmlSchemaObject.cs : Fixed error() not to set severity as Warning.
  364. * ValidationHandler.cs,
  365. XmlSchemaSet.cs,
  366. XmlSchemaCollection.cs : Throw exception only in case of errors.
  367. * XmlSchemaCollection.cs : Remove schema from schemaset if exist.
  368. (It might not be good to use schemaset, but keep for a while)
  369. * XmlSchemaContent.cs,
  370. XmlSchemaComplexContentExtension.cs,
  371. XmlSchemaComplexContentRestriction.cs,
  372. XmlSchemaSimpleContentExtension.cs,
  373. XmlSchemaSimpleContentRestriction.cs,
  374. : added GetBaseTypeName() and GetParticle() (not used yet).
  375. 2004-01-11 Atsushi Enomoto <[email protected]>
  376. * BuiltInDatatype.cs : internal type should not appear in protected
  377. members' signature.
  378. 2004-01-11 David Sheldon <[email protected]>
  379. * BuiltInDatatype.cs : Added XsdOrdering enum, and Compare methods
  380. to the data-types. Changed AllowedFacets to be a bitfield.
  381. * XmlSchemaFacet.cs : Added Facet enumeration to represent bitfield.
  382. * XmlSchemaEnumerationFacet.cs,
  383. XmlSchemaFractionDigitsFacet.cs,
  384. XmlSchemaLengthFacet.cs,
  385. XmlSchemaMaxExclusiveFacet.cs,
  386. XmlSchemaMaxInclusiveFacet.cs,
  387. XmlSchemaMaxLengthFacet.cs,
  388. XmlSchemaMinExclusiveFacet.cs,
  389. XmlSchemaMinInclusiveFacet.cs,
  390. XmlSchemaMinLengthFacet.cs,
  391. XmlSchemaNumericFacet.cs,
  392. XmlSchemaPatternFacet.cs,
  393. XmlSchemaTotalDigitsFacet.cs,
  394. XmlSchemaWhiteSpaceFacet.cs : Added ThisFacet Property to return facet type
  395. * XmlSchemaSimpleTypeRestriction.cs: Inherited facets from base types,
  396. checked which which were allowed on different types. Validated fixed
  397. facets, duplicated facets and derivation by restriction. Added checking
  398. for min/max Inclusive/Exclusive, totalDigits and fractionDigits facets in
  399. validation.
  400. 2004-01-09 Atsushi Enomoto <[email protected]>
  401. * XmlSchemaSet.cs : implemented some members.
  402. * XmlSchemaCollection.cs : modified to use internal schema set (This
  403. class provides more precise schema validation feature and will be
  404. commonly used for XPathNavigator2).
  405. Added .NET 1.1 .ctor() which takes XmlResolver.
  406. * XmlSchema.cs : fix related to above changes.
  407. Use validation event handler on Read() at all required places.
  408. Added .NET 1.1 .ctor() which takes XmlResolver.
  409. * XmlSchemaComplexType.cs : content type comparison was incorrect.
  410. Renamed confusing method.
  411. * XmlSchemaElement.cs : don't use ContentTypeParticle in
  412. CheckRecursion(), where that property might not be determined yet.
  413. * XmlSchemaGroupBase.cs : Modified ValidateRecurse() a bit (currently
  414. no effect)
  415. * XmlSchemaGroupBase.cs,
  416. XmlSchemaChoice.cs,
  417. XmlSchemaAll.cs,
  418. XmlSchemaSequence.cs : moved CheckRecursion to XmlSchemaGroupBase.
  419. * XmlSchemaObjectTable.cs : Fixed missing error info.
  420. * BUGS-MS.txt : Added info a bit.
  421. 2004-01-08 Atsushi Enomoto <[email protected]>
  422. * BUGS-MS.txt : added list derivation and facet case.
  423. * XmlSchemaComplexType.cs :
  424. Added some description. Avoided null reference exception in
  425. some places.
  426. Fixed incorrect 3.4.6 Derivation Valid (Extension) 1.4.1.2.2 and
  427. 3.9.6 Particle Valid (Extension) 2.
  428. * XmlSchemaGroupBase.cs : Fixed ParticleEquals() which didn't work
  429. properly against sequence and all.
  430. 2004-01-08 Atsushi Enomoto <[email protected]>
  431. * XmlSchemaObjectTable.cs : Modified enumerator's Current to return
  432. DictionaryEntry.
  433. * XmlSchemaComplexType.cs, XmlSchemaUtil.cs :
  434. In reflection to object table enumerator change.
  435. 2004-01-08 Atsushi Enomoto <[email protected]>
  436. * XmlSchemaElement.cs : Fixed incorrect unique particle attribution
  437. check on ##other and target namespace element.
  438. 2004-01-08 Nick Drochak <[email protected]>
  439. * XmlSchemaSimpleType.cs: Needed a 'new' on the property
  440. * XmlSchemaXPath.cs: Removed unreachable code.
  441. 2004-01-03 Atsushi Enomoto <[email protected]>
  442. * XmlSchemaDatatype.cs : trivial allocation fix.
  443. 2003-12-17 David Sheldon <[email protected]>
  444. * BuiltInDatatype.cs : Added whitespace=collapse to data types
  445. such as date, dateTime, .... gDay. I think I have them all now.
  446. 2003-12-15 Atsushi Enomoto <[email protected]>
  447. * BuiltInDatatype.cs : anySimpleType should allow facets.
  448. 2003-12-14 David Sheldon <[email protected]>
  449. * BuiltInDatatype.cs : Added code to tell which facets were valid on
  450. types derived from each basetype.
  451. * XmlSchemaSimpleTypeRestriction.cs : Complain if an invalid facet
  452. has been added to a restriction.
  453. 2003-12-14 David Sheldon <[email protected]>
  454. * XmlSchemaSimpleTypeRestriction.cs : Check that min/max/lengths
  455. specified are integers. Also made some error messages more useful.
  456. 2003-12-08 Atsushi Enomoto <[email protected]>
  457. * XmlSchemaSimpleTypeRestriction.cs : patch by David Sheldon. Check
  458. if max/min length range is valid.
  459. 2003-12-07 Atsushi Enomoto <[email protected]>
  460. * BuiltInDatatype.cs : XsdDecimal and XsdInteger defaults whitespace
  461. facet as collapse (patch by David Sheldon).
  462. * XmlSchemaAnnotations.cs, XmlSchemaAny.cs : No more MonoTODOs ;-)
  463. * XmlSchemaSequence.cs : MapAndSum implementation.
  464. 2003-11-17 Atsushi Enomoto <[email protected]>
  465. * XmlSchemaSet.cs, XmlSchemaBuiltInType.cs : Added .NET 1.2 classes
  466. (for convenience of ObjectSpaces stubbing).
  467. 2003-10-25 Atsushi Enomoto <[email protected]>
  468. * BuiltInDatatype.cs : XsdByte was incorrectly typed as byte, while
  469. the correct binding is sbyte.
  470. * XmlSchemaAll.cs,
  471. XmlSchemaChoice.cs,
  472. XmlSchemaSequence.cs,
  473. XmlSchemaGroupBase.cs : ActualParticle now considers pointlessness
  474. described in WXS structures 3.9.6.
  475. Added ValidateRecurse() to support 'Recurse' validation.
  476. * XmlSchemaComplexType.cs : Removed incorrect content type conformity
  477. check.
  478. * XmlSchemaElement.cs : Implemented 'RecurseAsIfGroup' validation
  479. described in WXS structures 3.9.6. Fixed type derivation check to
  480. do only if the base type is not anyType.
  481. * XmlSchemaSimpleTypeRestriction.cs : Should catch Regex()
  482. construction exception. ValidateList... and ValidateNonList... was
  483. in reverse.
  484. * XmlSchemaUtil.cs : Removed extra MonoTODO. Removed CheckToken().
  485. 2003-10-25 Atsushi Enomoto <[email protected]>
  486. * BuiltInDatatype.cs : Fixed incorrect inheritance of date and time.
  487. Fixed most of date-time related types' ParseValue().
  488. Applied Normalize() before parsing values in some ParseValue().
  489. 2003-10-23 Atsushi Enomoto <[email protected]>
  490. * XmlSchemaAll.cs,
  491. XmlSchemaChoice.cs,
  492. XmlSchemaGroupBase.cs,
  493. XmlSchemaSequence.cs : Now CompiledItems went to XmlSchemaGroupBase.
  494. * XmlSchemaAny.cs,
  495. XmlSchemaElement.cs,
  496. XmlSchemaGroupBase.cs,
  497. XmlSchemaGroupRef.cs,
  498. XmlSchemaParticle.cs,
  499. XmlSchemaSequence.cs : Added ParticleEquals() method to compare
  500. whether the particles are equal in the context of WXS part 1 - 3.9.6.
  501. * XmlSchemaAny.cs : Implemented ValidateDerivationByRestriction().
  502. * XmlSchemaAnyAttribute.cs : Removed extraneous lines and added my
  503. responsibility on this class.
  504. Added ValidateWildcardAllowsNamespaceName().
  505. * XmlSchemaAttribute.cs : Added ValidatedUse which holds post-
  506. compilation value of "Use".
  507. * XmlSchemaAttributeGroup.cs,
  508. XmlSchemaAttributeGroupRef.cs : Removed MonoTODO (same as some other
  509. classes) since there is no more errors on attribute stuff ;-)
  510. * XmlSchemaComplexType.cs : complex content extension must block
  511. derivation from any built-in primitive types.
  512. Fixed wildcard derivation by restriction.
  513. ValidateDerivationByRestriction() now checks attribute related
  514. validity of DBR (derivation by restriction).
  515. Now uses ParticleEquals() for particle DBR check.
  516. * XmlSchemaSequence.cs : Fixed to use CompiledItems instead of Items.
  517. 2003-10-21 Atsushi Enomoto <[email protected]>
  518. * XmlSchema.cs,
  519. XmlSchemaUtil.cs : Reduced warning message.
  520. * XmlSchemaAttribute.cs : NotImplementedException should no more exist.
  521. (All things are going to be implemented.)
  522. * BuiltInDatatype.cs : XsdInteger should not allow non-integer decimal.
  523. * XmlSchemaSimpleType.cs : Added internal Datatype property. Implemented
  524. list type derivation validation. Added Normalize().
  525. * XmlSchemaSimpleTypeContent.cs : Added Normalize(). Replaced anyType
  526. with anySimpleType.
  527. * XmlSchemaSimpleTypeRestriction.cs : Implemented some facet validation,
  528. such as pattern, enumeration, and length etc.
  529. 2003-10-19 Atsushi Enomoto <[email protected]>
  530. * BuiltInDatatype.cs : Implemented XsdHexBinary.Parse().
  531. * XmlSchemaCollection.cs : Implemented CopyTo().
  532. * XmlSchemaDatatype.cs : Added Normalize() with whitespace handling.
  533. Added support for anySimpleType.
  534. * XmlSchemaSimpleType.cs : Type specification named as anyType should
  535. be mapped to anySimpleType.
  536. * BUGS-MS.txt : Added more case note.
  537. 2003-10-13 Lluis Sanchez Gual <[email protected]>
  538. * XmlSchema.cs: If the schema element is an empty element, skip it after
  539. reading the attributes.
  540. 2003-10-09 Atsushi Enomoto <[email protected]>
  541. * BuiltInDatatype.cs : Added CLSCompliant attributes to some classes.
  542. 2003-10-01 Lluis Sanchez Gual <[email protected]>
  543. * XmlSchemaUtil.cs: arrayType attribute needs special handling.
  544. 2003-10-01 Atsushi Enomoto <[email protected]>
  545. * XmlSchema.cs : Forgot to update with previous files.
  546. 2003-10-01 Atsushi Enomoto <[email protected]>
  547. * XmlSchemaAttribute.cs, XmlSchemaComplexType.cs, XmlSchemaElement.cs,
  548. XmlSchemaGroupRef.cs, XmlSchemaSimpleContentExtension.cs,
  549. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleTypeContent.cs,
  550. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeUnion.cs :
  551. Fixed missing sub components check. It should fix soap stuff.
  552. * XmlSchemaAny.cs, XmlSchemaAttribute.cs,
  553. XmlSchemaAttributeGroupRef.cs, XmlSchemaContent.cs :
  554. Added my responsibility on them ;-)
  555. 2003-10-01 Atsushi Enomoto <[email protected]>
  556. * XmlSchema.cs : Read() should keep current position of XmlReader if
  557. it was already positioned to 'schema' element.
  558. 2003-09-30 Atsushi Enomoto <[email protected]>
  559. * Forgot to append 8/24/2003 ChangeLog.
  560. * BUGS.txt, BUGS-MS.txt : Appended additional bug info.
  561. * BuiltInDatatype.cs, ValidationHandler.cs, XmlSchema.cs,
  562. XmlSchemaAll.cs, XmlSchemaAnnotation.cs. XmlSchemaAny.cs,
  563. XmlSchemaAnyAttribute.cs, XmlSchemaAttribute.cs,
  564. XmlSchemaAttributeGroup.cs, XmlSchemaAttributeGroupRef.cs,
  565. XmlSchemaChoice.cs, XmlSchemaCollection.cs,
  566. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  567. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  568. XmlSchemaContent.cs, XmlSchemaDatatype.cs, XmlSchemaElement.cs,
  569. XmlSchemaException.cs, XmlSchemaGroup.cs, XmlSchemaGroupBase.cs,
  570. XmlSchemaGroupRef.cs, XmlSchemaIdentityConstraint.cs,
  571. XmlSchemaKey.cs, XmlSchemaKeyref.cs, XmlSchemaNotation.cs,
  572. XmlSchemaObject.cs, XmlSchemaObjectTable.cs, XmlSchemaParticle.cs,
  573. XmlSchemaReader.cs, XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  574. XmlSchemaSimpleContentExtension.cs,
  575. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  576. XmlSchemaSimpleTypeContent.cs, XmlSchemaSimpleTypeList.cs,
  577. XmlSchemaSimpleTypeRestriction.cs, XmlSchemaSimpleTypeUnion.cs,
  578. XmlSchemaType.cs, XmlSchemaUnique.cs, XmlSchemaUtil.cs,
  579. XmlSchemaXPath.cs :
  580. - Almost all classes are changed to implement schema component
  581. constraints, and schema validation using XsdValidatingReader.
  582. - better exception messages.
  583. - More datatype support.
  584. and so on.
  585. 2003-09-14 Lluis Sanchez Gual <[email protected]>
  586. * XmlSchema.cs: Do not add schema namespace declaration if it is already
  587. declared.
  588. 2003-08-28 Lluis Sanchez Gual <[email protected]>
  589. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs: Added double type.
  590. 2003-08-24 Atsushi Enomoto <[email protected]>
  591. * BuiltInDatatype.cs : XsdDecimal.TokenizedType should be None.
  592. * XmlSchemaCollection.cs : Add(uri) should not reject chameleon schema.
  593. Add() should compile specified schema.
  594. 2003-08-08 Lluis Sanchez Gual <[email protected]>
  595. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs: Added XsdAnyURI,
  596. XsdDateTime, XsdDate, XsdTime.
  597. 2003-08-07 Atsushi Enomoto <[email protected]>
  598. * BuiltInDatatypes.cs : Fixed whitespace facet in XsdToken.
  599. Tokenized type of nmtokens and entities is string [].
  600. * XmlSchema.cs : Changed IsCompile implementation a bit.
  601. Compile() should reset compiled contents.
  602. * XmlSchemaDatatype.cs : Fixed collapsing Normalize().
  603. * XmlSchemaObject.cs : added CompilationId initialization.
  604. 2003-08-05 Lluis Sanchez Gual <[email protected]>
  605. * XmlSchema.cs: Set IsCompiled to true after compiling.
  606. In Compile(): ignore included schemas that do not have a value
  607. in SchemaLocation. It means that FindElement can return null
  608. if the referred schema was ignored. Added check for that case.
  609. Compile schema after reading it.
  610. * XmlSchemaCollection.cs: The targetNamespace of a schema may
  611. be null. Make XmlSchemaCollection work for this case.
  612. * BuiltInDataType.cs, XmlSchemaDataType.cs: added new primitive
  613. types: float, base64Binary, boolean.
  614. 2003-08-02 Atsushi Enomoto <[email protected]>
  615. * XmlSchema.cs :
  616. - Changed missingElementTypeRefs from Hashtable to ArrayList.
  617. - Added internal XmlSchemas for keeping imported schemas.
  618. - Added private Compile() that takes the original rootSchema and
  619. schema location stack for nested inclusion check.
  620. - Added basic xs:import and xs:include support.
  621. - Compile() is now aware of included XmlSchemaObject items.
  622. - Changed Compile() to fill missing elements' types and that of
  623. referencing elements.
  624. - Read() now adds SourceUri property (although only to itself).
  625. * XmlSchemaCollection.cs : Implemented Add().
  626. * XmlSchemaCollectionEnumerator.cs :
  627. Changed .ctor() to use schema collection as its argument.
  628. Fixed Current to return hashtable's Value, instead of Current
  629. (which returns DictionaryEntry).
  630. * XmlSchemaComplexType.cs :
  631. Added internal static AnyType.
  632. Compile() is now searches for its base type into other schemas.
  633. * XmlSchemaElement.cs : anyType is supported.
  634. It now searches for type information after Compile().
  635. SetReferedElementInfo() is now changed to SetSchemaType().
  636. * XmlSchemaObjectTable.cs :
  637. It had problems similar to schema collection. Now it uses internal
  638. class XmlSchemaObjectTableEnumerator to support GetEnumerator().
  639. * XmlSchemaParticle.cs : added internal class XmlSchemaParticleEmpty
  640. and internal static Empty.
  641. 2003-07-26 Atsushi Enomoto <[email protected]>
  642. * BuiltInDatatype.cs : XsdIDRefs.ParseValue () should be implemented.
  643. * XmlSchemaDatatype.cs : public Whitespace and protected Normalize()
  644. should be internal.
  645. 2003-07-24 Atsushi Enomoto <[email protected]>
  646. * XmlSchema.cs : Read() now uses XmlSerializer.Deserialize().
  647. 2003-07-21 Atsushi Enomoto <[email protected]>
  648. * XmlSchema.cs, XmlSchemaElement.cs :
  649. added internal MissingElementTypeRefs and support for refering
  650. element's elementType.
  651. 2003-07-20 Atsushi Enomoto <[email protected]>
  652. * XmlSchema.cs : added support for collecting missing type references
  653. at compilation-time.
  654. * XmlSchemaType.cs, XmlSchemaComplexType.cs, XmlSchemaSimpleType.cs:
  655. - Renamed qName to QNameInternal.
  656. - Added BaseSchemaType and ContentTypeParticle support.
  657. 2003-07-19 Atsushi Enomoto <[email protected]>
  658. * XmlSchema.cs, XmlSchemaAll.cs, XmlSchemaAnnotated.cs,
  659. XmlSchemaAnnotation.cs, XmlSchemaAny.cs, XmlSchemaAnyAttribute.cs,
  660. XmlSchemaAttribute.cs, XmlSchemaAttributeGroup.cs,
  661. XmlSchemaAttributeGroupRef.cs, XmlSchemaChoice.cs,
  662. XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs,
  663. XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs,
  664. XmlSchemaElement.cs, XmlSchemaGroup.cs, XmlSchemaGroupRef.cs,
  665. XmlSchemaIdentityConstraint.cs, XmlSchemaImport.cs,
  666. XmlSchemaInclude.cs, XmlSchemaKey.cs, XmlSchemaKeyref.cs,
  667. XmlSchemaNotation.cs, XmlSchemaObject.cs, XmlSchemaRedefine.cs,
  668. XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs,
  669. XmlSchemaSimpleContentExtension.cs,
  670. XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs,
  671. XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeRestriction.cs,
  672. XmlSchemaSimpleTypeUnion.cs, XmlSchemaUnique.cs,
  673. XmlSchemaXPath.cs,
  674. As to Compile() and Validate(),
  675. - Added CompilationId and check it while compiling schema components.
  676. - Code refactory. Replaced literal xmlns with XmlSchema.Namespace
  677. - Replaced XmlSchemaInfo with compiling XmlSchema itself (XmlSchema
  678. also has PSVI components inside it, so passing itself seems enough).
  679. - Related to above change, IDCollection was moved to XmlSchema, and
  680. blockDefault/finalDefault/blockResolved/finalResolved resolution
  681. was changed to reference only to schema.BlockDefault/FinalDefault.
  682. - The similar change has done against XmlSchemaForm related stuff.
  683. - Changed compilation order of schema type definitions (it is
  684. workaround). First it compiles types, and then it compiles others.
  685. * XmlSchemaElement.cs : added ElementType PSVI contribution support.
  686. 2003-07-19 Atsushi Enomoto <[email protected]>
  687. * BuiltInDatatypes.cs, XmlSchemaDatatype.cs :
  688. Added decimal and its derived datatypes.
  689. Added abstract XsdAnySimpleType.
  690. 2003-07-15 Lluis Sanchez Gual <[email protected]>
  691. * BuiltInDatatype.cs,
  692. XmlSchemaDatatype.cs : added unsignedByte type support.
  693. 2003-07-14 Lluis Sanchez Gual <[email protected]>
  694. * XmlSchemaDatatype.cs: Fixed compiler warning.
  695. 2003-07-12 Atsushi Enomoto <[email protected]>
  696. * BuiltInDatatype.cs,
  697. XmlSchemaDatatype.cs : added NOTATION type support.
  698. 2003-07-06 Atsushi Enomoto <[email protected]>
  699. * added BuiltInDatatype.cs.
  700. * XmlSchemaDatatype.cs : [GetType()] added support for some
  701. built-in datatypes.
  702. 2003-05-05 Atsushi Enomoto <[email protected]>
  703. * XmlSchemaAnnotation.cs : It depended on incorrect ReadNode().
  704. 2003-02-19 Atsushi Enomoto <[email protected]>
  705. * XmlSchemaAnnotation.cs : expect the correct closing tag on <appinfo>
  706. and <documentation> elements. (patch by Peter Pentchev)
  707. * XmlSchemaObjectEnumerator.cs : cast properly to XmlSchemaObject
  708. instead of XmlSchema. (patch by Peter Pentchev)
  709. 2002-07-23 Duncan Mak <[email protected]>
  710. * XmlSchemaException.cs: Partiall implement the ISerializable
  711. methods. It's not clear now SourceSchemaObject should be deserialized.
  712. 2002-07-22 Tim Coleman <[email protected]>
  713. * XmlSchema.cs: Removed isCompiled which is defined as internal
  714. in XmlSchemaObject.
  715. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  716. * XmlSchema: Started work on Validate methods
  717. 2002-06-18 Dwivedi, Ajay kumar <[email protected]>
  718. * XmlSchema: The Read and Write methods are no more [MonoTODO] :)
  719. * XmlSchemaAppInfo: Xml Markup is now being read.
  720. * XmlSchemaDocumentation: Xml Markup is now being read.
  721. * All: Unhandled attributes are being handled properly.
  722. * All: Reordered the properties in all cs files to match with MS
  723. Implementation. This was required since the order is importatnt
  724. for the XmlSerializer.
  725. 2002-06-14 Dwivedi, Ajay kumar <[email protected]>
  726. * General: Fixed a few more Bugs
  727. 2002-06-10 Dwivedi, Ajay kumar <[email protected]>
  728. * XmlSchemaReader: A Wrapper class around XmlReader with customized
  729. methods to suit reading a schema.
  730. * General: Implemented Read() method for the schema. There are only
  731. a few minor bugs remaining.
  732. 2002-05-25 Dwivedi, Ajay kumar <[email protected]>
  733. * BUGS.txt: New file to keep track of bugs
  734. * ALL: All classes are initialized exactly as in .NET except
  735. 1. inclusion of language attribute in schema
  736. 2. ComplexContent's Particle is initialized to null whereas .NET
  737. to some internal implementation. IMO Null is more appropriate
  738. * ALL: Changed the Compile methods to return the count of errors.
  739. * ALL: Complile methods are almost complete. Pass 1453 of 3061 tests.
  740. This number should shoot up if we write a parser to read the
  741. Schema instead of using reflection (which is slower too)
  742. 2002-05-04 Dwivedi, Ajay kumar <[email protected]>
  743. * XmlSchemaUtil.cs: New file added.
  744. * Parser.cs: New file Added. Unused at the moment.
  745. * XmlSchemaObjectCollection: Fixed GetEnumerator
  746. * General: Preprocessing for Attributes and SimpleTypes completed.
  747. 2002-04-26 Duncan Mak <[email protected]>
  748. * ValidationHandler.cs: New file.
  749. * XmlSchemaInfo.cs: New file.
  750. * *.cs: More updates from Ajay.
  751. 2002-03-27 Duncan Mak <[email protected]>
  752. * *.cs: Updates from Ajay Dwivedi <[email protected]>.