ChangeLog 39 KB

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