ChangeLog 39 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218
  1. 2002-12-21 Atsushi Enomoto <[email protected]>
  2. * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs:
  3. patch by JD Conley <[email protected]>.
  4. (Fix for xmlns attribute output.)
  5. 2002-12-05 Ville Palo <[email protected]>
  6. * XmlQualifiedName.cs: Little fix to ToString () -method
  7. 2002-12-04 Tim Haynes <[email protected]>
  8. * class/System.XML/System.Xml/XmlElement.cs: Made more refined
  9. checks on attributeNode to fix 32262.
  10. 2002-12-03 Atsushi Enomoto <[email protected]>
  11. * XmlDocument.cs (CreateNavigator(XmlNode)) : reverted
  12. * XmlTextWriter.cs (WriteStartElementInternal):
  13. fixed when default namespace was specified, all descendants
  14. fail to omit the default namespace declarations.
  15. * XmlAttribute.cs,
  16. XmlDocument.cs,
  17. XmlNode.cs (internal XmlLang/XmlSpace) : implemented(defined)
  18. * XmlAttribute.cs,
  19. XmlDocumentFragment.cs,
  20. XmlElement.cs (set_InnerXml): now uses XmlLang/XmlSpace
  21. * XmlElement.cs (set_IsEmpty) : implemented
  22. (WriteTo) : removed my improper indenting (Writer already done)
  23. * XmlNode.cs (BaseURI) : fixed if ParentNode is null, NullPointerEx
  24. (ConstructDOM) : implemented when xmlReader isn't XmlTextReader
  25. ...and renamed XmlDocument.ConventionalParser to ReusableReader ;-)
  26. 2002-12-01 Atsushi Enomoto <[email protected]>
  27. * XmlNode.cs (RemoveChild):
  28. bugfixed when XmlNode is Document OwnerDocument is null
  29. * XmlDeclaration.cs (Value):
  30. bugfixed regular expression pattern.
  31. * XmlDocument.cs (CreateNavigator): bugfixed access modifier.
  32. 2002-11-24 Duncan Mak <[email protected]>
  33. * XmlImplementation.cs (HasFeature): Fixed a typo. Thanks for
  34. Fabricio Barros Cabral (fx) on #mono for spotting it. This is his
  35. first patch to Mono! ;-)
  36. 2002-11-19 Gonzalo Paniagua Javier <[email protected]>
  37. * XmlNode.cs:
  38. (AppendChild): readded refChild != null condition before throwing
  39. "cannot insert this node in this position" exception. There's probably
  40. a better solution. Fixes #34191.
  41. (RemoveAll): changed following Atsushi instructions.
  42. 2002-11-13 Duncan Mak <[email protected]>
  43. * XmlElement.cs (IsEmpty): A temporary check-in to keep gtk-sharp
  44. compiling.
  45. 2002-11-14 Atsushi Enomoto <[email protected]>
  46. * XmlDocument.cs : unified all constructors, added ConventionalParser,
  47. implemented CloneNode() and CreateEntityReference(),
  48. * XmlEntityReference.cs : set_Value, WriteContentTo, WriteTo
  49. set BaseURI to MonoTODO
  50. * XmlNode.cs : implemented PrependChild, modified ConstructDOM,
  51. bugfix InsertAfter (incorrect prepending) and InsertBefore
  52. (more than one DocumentElements hadn't caused errors)
  53. * XmlTextReader.cs : unified all constructors,
  54. added internal SetReaderContext(), SetReaderFragment()
  55. bugfix (syntax check of PUBLIC / getting internal subset)
  56. 2002-11-13 Atsushi Enomoto <[email protected]>
  57. XmlAttribute.cs : set_InnerText, set_InnerXml, some check for set_Prefix
  58. XmlAttributeCollection.cs : (indexer) this[localName, namespaceURI]
  59. XmlCharacterData.cs : exchanged Data and Value
  60. (for processing events and inheritance)
  61. XmlDocumentFragment.cs : set_InnerXml
  62. XmlSignificantWhitespace.cs : set_Value
  63. XmlTextReader.cs : ReadAttributeValue
  64. 2002-11-04 Atsushi Enomoto <[email protected]>
  65. XmlAttribute.cs: fixed missing internal 'OwnerElement''SetOwnerElement'
  66. 2002-11-03 Atsushi Enomoto <[email protected]>
  67. * XmlAttributeCollection.cs : checks owner element.
  68. implemented CopyTo, InsertAfter, InsertBefore, Prepend,
  69. Remove, RemoveAt, SetNamedItem.
  70. removed some logics that sets 'Parent' (that should be null)
  71. * XmlDocument.cs : set_InnerXml, [PreserveWhitespace(incomplete)]
  72. * XmlDocumentFragment.cs : get_InnerXml, WriteContentTo, WriteTo
  73. * XmlElement.cs : implemented WriteTo, set_InnerText.
  74. Fixed WriteTo() to add xmlns:* attributes when
  75. writer.LookupPrefix() returned mismatching.
  76. * XmlNamedNodeMap.cs : compare not only name but localname and nsuri.
  77. Removing different prefixes for the same uri now runs correct.
  78. added SetNamedItem(XmlNode node, int position_to_insert).
  79. * XmlNode.cs : ConstructDOM (logically) creates XmlEntityReference,
  80. XmlWhitespace, and XmlSignificantWhitespace
  81. 2002-10-31 Atsushi Enomoto <[email protected]>
  82. * XmlDocument.cs : implemented CreateDocumentFragment()
  83. * XmlElement.cs, XmlLinkedNode.cs :
  84. moved LastLinkedChild from XmlElement to XmlLinkedNode.
  85. * XmlEntityReference.cs : must throw NotImplementedException.
  86. * XmlNode.cs :
  87. + implemented InsertBefore() and then implemented InsertAfter()
  88. and modified AppendChild() to call it.
  89. + added logic to check ReadOnly, parent document equivalence,
  90. and inserting any 'content' before/after DocumentElement.
  91. + implemented Clone() [it is equals to CloneNode() by MS doc.]
  92. + added logic in RemoveChild() to check parent of oldChild.
  93. + fixed ConstructNamespaceManager() to internal only.
  94. 2002-10-29 Atsushi Enomoto <[email protected]>
  95. * XmlAttribute.cs : add internal 'IsDefault' property
  96. (equals to !Specified)
  97. * XmlImplementation.cs : added 'internalNameTable' property.
  98. * XmlDocument.cs :
  99. + now allows "" for 'standalone' in CreateXmlDeclaration.
  100. + implemented 'Implementation' property and constructor with it.
  101. + added logic for appending name table (but still no use)
  102. + implemented property 'DocumentType'
  103. (but without internalSubset parsing. wait for next update.)
  104. * XmlNode.cs :
  105. + modified AppendChild() and RemoveChild() to support fragment.
  106. + modified AppendChild() to remove newChild from its parent
  107. when newChild is already in the other place.
  108. + modified RemoveChild() to set parentNode null.
  109. + modified ConstructDOM() to create DocumentType,
  110. and fixed access modifier ('internal protected' to 'internal')
  111. * XmlLinkedNode.cs : fixed 'NextSibling' to return null
  112. when its parent is null.
  113. * XmlDocumentFragment.cs : added internal override 'LastLinkedChild'
  114. property to enable AppendChild() for this class.
  115. * XmlTextReader.cs : appended private publicId and systemId fields.
  116. 2002-10-28 Gonzalo Paniagua Javier <[email protected]>
  117. * XmlTextReader.cs: make it work when the underlying Stream is not
  118. 'seekable'.
  119. 2002-10-26 Piers Haken <[email protected]>
  120. * XmlNode.cs: add virtual property XPathNodeType
  121. * XmlAttribute.cs:
  122. * XmlComment.cs:
  123. * XmlDocument.cs:
  124. * XmlElement.cs::
  125. * XmlProcessingInstruction.cs:
  126. * XmlSignificantWhitespace.cs:
  127. * XmlText.cs:
  128. * XmlWhitespace.cs: implement XPathNodeType property
  129. * XmlDocumentNavigator.cs: use XPathNodeType property instead of switch
  130. 2002-10-26 Piers Haken <[email protected]>
  131. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  132. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  133. * XmlTextReader.cs: don't increment depth for entity references.
  134. 2002-10-22 Tim Haynes <[email protected]>
  135. * - Fixed the duplication of xmlns:xx = yy when serializing the
  136. XML for serialization
  137. Fixed the unnecessary parsing/serializing when adding assemblies
  138. for serialization
  139. Avoided setting the XmlNode.InnerXml property
  140. (as it's not implemented)
  141. Fixed the usage/implementation of
  142. XmlElement.GetElementsByTagName()
  143. 2002-10-21 Duncan Mak <[email protected]>
  144. * XmlDocument.cs:
  145. * XmlElement.cs:
  146. * XmlNode.cs:
  147. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  148. Atsushi Enomoto <[email protected]>.
  149. 2002-10-18 Duncan Mak <[email protected]>
  150. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  151. <[email protected]>.
  152. 2002-10-12 A.Enomoto <[email protected]>
  153. * XmlDocument.cs (ImportNode): Implemented
  154. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  155. * XmlDocument.cs: one more Load method implemented.
  156. * XmlTextReader.cs: Depth now works.
  157. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  158. * XmlConvert.cs: IsInvalid is now internal.
  159. * XmlNamespaceManager.cs: implemented RemoveNamespace
  160. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  161. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  162. 2002-09-19 Matt Hunter <[email protected]>
  163. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  164. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  165. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  166. * XmlConvert.cs: finished implementation.
  167. * XmlTextReader.cs: fixed #30239.
  168. * XmlTextWriter.cs: fixed #30240.
  169. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  170. * XmlTextReader.cs: line and position begin with 1.
  171. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  172. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  173. and output line and position info in Message.
  174. * XmlReader.cs: implemented missing bits.
  175. 2002-09-12 Piers Haken <[email protected]>
  176. * XmlDocumentNavigator.cs: implement MoveToId()
  177. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  178. * XmlTextWriter.cs: fixed bug #29886.
  179. 2002-08-26 Ravi Pratap <[email protected]>
  180. * XmlAttribute.cs (InnerText): Implement getting this property.
  181. * XmlNode.cs (InnerText): Ensure that we append only values of
  182. text nodes.
  183. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  184. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  185. that allowed compiling this.
  186. [ FIXME: filed bug #29435. mcs should have failed on this ]
  187. 2002-08-25 Tim Coleman <[email protected]>
  188. * XmlNode.cs:
  189. Change CreateNavigator to not be virtual.
  190. * XmlElement.cs:
  191. Add set_Prefix and InnerText accessors.
  192. * XmlEntityReference.cs:
  193. Add set_Value accessor.
  194. * XmlTextWriter.cs:
  195. Make objects which should be private private.
  196. * XmlWriter.cs:
  197. Remove WriteStartElementInternal abstract definition.
  198. * XmlValidatingReader.cs:
  199. New stubs added.
  200. 2002-08-22 Jason Diamond <[email protected]>
  201. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  202. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  203. 2002-08-22 Jason Diamond <[email protected]>
  204. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  205. courtesy of Matt Hunter <[email protected]>.
  206. 2002-08-22 Jason Diamond <[email protected]>
  207. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  208. qualified GetElementsByTagName courtesy of Matt Hunter
  209. <[email protected]>.
  210. 2002-08-19 Jason Diamond <[email protected]>
  211. * XmlDocument.cs, XmlElement.cs: Added implementation of
  212. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  213. 2002-08-16 Jason Diamond <[email protected]>
  214. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  215. Marcus Bürgel <[email protected]>.
  216. 2002-08-13 Tim Coleman <[email protected]>
  217. * XmlTextWriter.cs:
  218. Partial implementation of WriteQualifiedName ().
  219. 2002-08-07 Kral Ferch <[email protected]>
  220. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  221. InsertData(), and ReplaceData(). These methods fire the
  222. NodeChanging and NodeChanged events.
  223. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  224. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  225. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  226. 2002-08-03 Tim Coleman <[email protected]>
  227. * XmlNamespaceManager.cs:
  228. .Net allows the empty namespace to be redefined
  229. at a later point, but the current implementation
  230. did not. This fixes a hashtable conflict.
  231. 2002-07-26 Tim Coleman <[email protected]>
  232. * XmlTextWriter.cs:
  233. When given a textwriter, check to see if it has a
  234. null encoding. This was being done for other inputs
  235. than a textwriter.
  236. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  237. * XmlTextReader.cs: rough line/column support.
  238. 2002-07-23 Duncan Mak <[email protected]>
  239. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  240. (string, string []) is particularly strange.
  241. * XmlException.cs: Remember to call the base serialization
  242. constructor.
  243. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  244. 2002-07-14 Jason Diamond <[email protected]>
  245. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  246. parentNode field.
  247. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  248. if the current node is an attribute.
  249. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  250. owner element.
  251. 2002-07-12 Jason Diamond <[email protected]>
  252. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  253. creating an element, use String.Empty instead.
  254. 2002-07-12 Piers Haken <[email protected]>
  255. * XmlAttributeCollection.cs: implement some ItemOf indexers
  256. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  257. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  258. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  259. 2002-10-26 Piers Haken <[email protected]>
  260. * XmlDocumentNavigator.cs: return invalid XPathNodeType (-1) for unknown node types.
  261. 2002-10-23 Gonzalo Paniagua Javier <[email protected]>
  262. * XmlTextReader.cs: don't increment depth for entity references.
  263. 2002-10-22 Tim Haynes <[email protected]>
  264. * - Fixed the duplication of xmlns:xx = yy when serializing the
  265. XML for serialization
  266. Fixed the unnecessary parsing/serializing when adding assemblies
  267. for serialization
  268. Avoided setting the XmlNode.InnerXml property
  269. (as it's not implemented)
  270. Fixed the usage/implementation of
  271. XmlElement.GetElementsByTagName()
  272. 2002-10-21 Duncan Mak <[email protected]>
  273. * XmlDocument.cs:
  274. * XmlElement.cs:
  275. * XmlNode.cs:
  276. * XmlTextReader.cs: Implementation for XmlNode.InnerXml from
  277. Atsushi Enomoto <[email protected]>.
  278. 2002-10-18 Duncan Mak <[email protected]>
  279. * XmlDocument.cs: Applied a patch by Atsushi Enomoto
  280. <[email protected]>.
  281. 2002-10-12 A.Enomoto <[email protected]>
  282. * XmlDocument.cs (ImportNode): Implemented
  283. 2002-10-06 Gonzalo Paniagua Javier <[email protected]>
  284. * XmlDocument.cs: one more Load method implemented.
  285. * XmlTextReader.cs: Depth now works.
  286. 2002-09-22 Gonzalo Paniagua Javier <[email protected]>
  287. * XmlConvert.cs: IsInvalid is now internal.
  288. * XmlNamespaceManager.cs: implemented RemoveNamespace
  289. * XmlTextReader.cs: return BaseURI and Encoding from the parser.
  290. * XmlTextWriter.cs: implemented WriteName and WriteNmToken.
  291. 2002-09-19 Matt Hunter <[email protected]>
  292. * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI)
  293. * XmlAttributeCollection.cs: Implemented Append (XmlAttribute)
  294. 2002-09-19 Gonzalo Paniagua Javier <[email protected]>
  295. * XmlConvert.cs: finished implementation.
  296. * XmlTextReader.cs: fixed #30239.
  297. * XmlTextWriter.cs: fixed #30240.
  298. 2002-09-15 Gonzalo Paniagua Javier <[email protected]>
  299. * XmlTextReader.cs: line and position begin with 1.
  300. 2002-09-13 Gonzalo Paniagua Javier <[email protected]>
  301. * XmlException.cs: added a new internal constructor for IXmlLineInfo
  302. and output line and position info in Message.
  303. * XmlReader.cs: implemented missing bits.
  304. 2002-09-12 Piers Haken <[email protected]>
  305. * XmlDocumentNavigator.cs: implement MoveToId()
  306. 2002-09-05 Gonzalo Paniagua Javier <[email protected]>
  307. * XmlTextWriter.cs: fixed bug #29886.
  308. 2002-08-26 Ravi Pratap <[email protected]>
  309. * XmlAttribute.cs (InnerText): Implement getting this property.
  310. * XmlNode.cs (InnerText): Ensure that we append only values of
  311. text nodes.
  312. 2002-08-26 Gonzalo Paniagua Javier <[email protected]>
  313. * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug
  314. that allowed compiling this.
  315. [ FIXME: filed bug #29435. mcs should have failed on this ]
  316. 2002-08-25 Tim Coleman <[email protected]>
  317. * XmlNode.cs:
  318. Change CreateNavigator to not be virtual.
  319. * XmlElement.cs:
  320. Add set_Prefix and InnerText accessors.
  321. * XmlEntityReference.cs:
  322. Add set_Value accessor.
  323. * XmlTextWriter.cs:
  324. Make objects which should be private private.
  325. * XmlWriter.cs:
  326. Remove WriteStartElementInternal abstract definition.
  327. * XmlValidatingReader.cs:
  328. New stubs added.
  329. 2002-08-22 Jason Diamond <[email protected]>
  330. * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll
  331. and RemoveAllAttributes courtesy of Matt Hunter <[email protected]>.
  332. 2002-08-22 Jason Diamond <[email protected]>
  333. * XmlElement.cs: Correction to previous GetElementsByTagName patch
  334. courtesy of Matt Hunter <[email protected]>.
  335. 2002-08-22 Jason Diamond <[email protected]>
  336. * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace
  337. qualified GetElementsByTagName courtesy of Matt Hunter
  338. <[email protected]>.
  339. 2002-08-19 Jason Diamond <[email protected]>
  340. * XmlDocument.cs, XmlElement.cs: Added implementation of
  341. GetElementsByTagName courtesy of Matt Hunter <[email protected]>.
  342. 2002-08-16 Jason Diamond <[email protected]>
  343. * XmlElement.cs: Fixed writing out qualified elements courtesy of
  344. Marcus Bürgel <[email protected]>.
  345. 2002-08-13 Tim Coleman <[email protected]>
  346. * XmlTextWriter.cs:
  347. Partial implementation of WriteQualifiedName ().
  348. 2002-08-07 Kral Ferch <[email protected]>
  349. * XmlCharacterData.cs: Implemented AppendData(), DeleteData(),
  350. InsertData(), and ReplaceData(). These methods fire the
  351. NodeChanging and NodeChanged events.
  352. * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging().
  353. * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events.
  354. RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events.
  355. 2002-08-03 Tim Coleman <[email protected]>
  356. * XmlNamespaceManager.cs:
  357. .Net allows the empty namespace to be redefined
  358. at a later point, but the current implementation
  359. did not. This fixes a hashtable conflict.
  360. 2002-07-26 Tim Coleman <[email protected]>
  361. * XmlTextWriter.cs:
  362. When given a textwriter, check to see if it has a
  363. null encoding. This was being done for other inputs
  364. than a textwriter.
  365. Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro <[email protected]>
  366. * XmlTextReader.cs: rough line/column support.
  367. 2002-07-23 Duncan Mak <[email protected]>
  368. * XmlConvert.cs: Implement the ToDateTime method. ToDateTime
  369. (string, string []) is particularly strange.
  370. * XmlException.cs: Remember to call the base serialization
  371. constructor.
  372. * XmlNodeReader.cs: Keep a new variable to store the Depth.
  373. 2002-07-14 Jason Diamond <[email protected]>
  374. * XmlAttribute.cs: Removed ownerElement field since we can reuse
  375. parentNode field.
  376. * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement
  377. if the current node is an attribute.
  378. * XmlElement.cs: SetAttributeNode now sets the new attribute's
  379. owner element.
  380. 2002-07-12 Jason Diamond <[email protected]>
  381. * XmlDocument.cs: If null was passed in for prefix or namespaceURI when
  382. creating an element, use String.Empty instead.
  383. 2002-07-12 Piers Haken <[email protected]>
  384. * XmlAttributeCollection.cs: implement some ItemOf indexers
  385. * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field
  386. * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null
  387. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  388. * XmlTextWriter: Fixed Indentation. IndentationOverridden should
  389. not be set when inside a attribute.
  390. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  391. * XmlTextWriter: In WriteStartElement, if namespace is null and
  392. prefix is null|empty do not write out xmlns=""
  393. * XmlWriter: WriteStartElement calls the virtual method with null
  394. argument instead of empty string.
  395. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  396. * XmlTextReader.cs: implemented .ctor (Stream).
  397. 2002-06-26 Duncan Mak <[email protected]>
  398. * XmlNodeReader.cs: Implementation of most of the properties, and
  399. some of the related methods.
  400. 2002-06-23 Piers Haken <[email protected]>
  401. * XmlDocumentNavigator.cs: implement Clone()
  402. * XmlElement.cs: remove bogus unimplemented override of InnerText
  403. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  404. * XmlNodeArrayList.cs: new support class for SelectNodes
  405. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  406. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  407. to the constructor, set them to empty strings.
  408. Fixed the Operators.
  409. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  410. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  411. Exception.
  412. 2002-06-14 Duncan Mak <[email protected]>
  413. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  414. 2002-06-12 Duncan Mak <[email protected]>
  415. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  416. set block if the node is read-only.
  417. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  418. * XmlConstruct.cs : New Internal class with Helper methods for
  419. Checking XmlConstructs
  420. * XmlConvert.cs: Implemented most of the methods
  421. 2002-06-08 Duncan Mak <[email protected]>
  422. * XmlDocument.cs (Load):
  423. Added bits to Load (string) for BaseURI support.
  424. * XmlAttribute.cs (BaseURI):
  425. * XmlDocument.cs (BaseURI):
  426. * XmlEntity.cs (BaseURI): Implemented.
  427. 2002-05-27 Jason Diamond <[email protected]>
  428. * XmlDocumentNavigator.cs: Added file to directory.
  429. * XmlNode.cs (CreateNavigator): Implemented.
  430. (InnerText): Implemented.
  431. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  432. throwing exception.
  433. (Load(XmlReader)): Allow for namespace qualified attributes.
  434. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  435. GetAttributeNode overloads.
  436. (SetAttributeNode(XmlAttribute)): Implemented.
  437. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  438. and RemoveNamedItem(string, string).
  439. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  440. * XmlTextReader.cs: Added code to maintain the order of attributes as
  441. they're parsed. XML doesn't require this but Microsoft's parser does it and
  442. matching them makes testing easier so now we have it, too.
  443. 2002-05-26 Miguel de Icaza <[email protected]>
  444. * XmlDocument.cs: Implement the Save methods.
  445. 2002-05-08 Mike Kestner <[email protected]>
  446. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  447. 2002-04-28 Duncan Mak <[email protected]>
  448. * XmlSignificantWhitespace.cs (Value):
  449. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  450. block. Added new private method, IsValidWhitespaceChar, for
  451. checking.
  452. 2002-04-16 Duncan Mak <[email protected]>
  453. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  454. 2002-04-12 Duncan Mak <[email protected]>
  455. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  456. added comment on work that needs to be done here. A new MonoTODO item.
  457. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  458. parameter from 'NameTable' to 'XmlNameTable'.
  459. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  460. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  461. 2002-04-10 Duncan Mak <[email protected]>
  462. * XmlNodeReader.cs: Initial stubs for the class.
  463. 2002-04-08 Kral Ferch <[email protected]>
  464. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  465. implementations.
  466. * XmlDeclaration.cs: WriteTo implementation.
  467. * XmlDocument.cs: InnerXml getter implementation.
  468. * XmlElement.cs: InnerXml getter implementation.
  469. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  470. * XmlSignificantWhitespace.cs: WriteTo implementation.
  471. * XmlText.cs: WriteContentTo and WriteTo implementation.
  472. * XmlTextWriter.cs: WriteRaw implementation.
  473. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  474. 2002-04-05 Kral Ferch <[email protected]>
  475. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  476. if prefix in constructor is one of the default ones.
  477. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  478. even when constructed with null.
  479. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  480. in if they are empty.
  481. * XmlDocument.cs: Implemented CreateNode methods and this caused
  482. the changes in the other files in this checkin.
  483. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  484. even when constructed with null.
  485. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  486. 2002-04-01 Kral Ferch <[email protected]>
  487. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  488. 2002-03-31 Kral Ferch <[email protected]>
  489. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  490. and WriteCharEntity.
  491. * XmlWrite.cs: Fixed bug where attribute namespace decl
  492. was pushing a scope onto the namespace manager when it shouldn't
  493. have been.
  494. 2002-03-31 Kral Ferch <[email protected]>
  495. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  496. in different states (no open start element, in WriteState.Content mode).
  497. 2002-03-29 Kral Ferch <[email protected]>
  498. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  499. and WriteWhitespace.
  500. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  501. and XmlSpace.
  502. 2002-03-29 Kral Ferch <[email protected]>
  503. * XmlTextWriter.cs: Working on Attribute methods.
  504. * XmlWriter.cs: Working on Attribute methods.
  505. 2002-03-28 Duncan Mak <[email protected]>
  506. * XmlDocument.cs (CreateWhitespace):
  507. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  508. method.
  509. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  510. 2002-03-26 Duncan Mak <[email protected]>
  511. * XmlDocument.cs (CreateDocumentType): Implemented.
  512. * XmlNode.cs (Value): Implemented.
  513. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  514. like XmlCharacterData.
  515. * XmlDeclaration.cs (CloneNode):
  516. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  517. arguments.
  518. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  519. docs say it is the "The concatenated values of the node and all
  520. the children of the node.". I wrote some test programs and
  521. couldn't get any of the derived nodes to AppendChild. For now,
  522. InnerText == Data == Value.
  523. (Substring): Fixed typo.
  524. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  525. * XmlImplementation.cs (CreateDocument): Implemented.
  526. 2002-03-25 Duncan Mak <[email protected]>
  527. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  528. missing properties (InnerText, Value).
  529. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  530. 2002-03-23 Kral Ferch <[email protected]>
  531. * XmlTextWriter.cs: Impls for BaseStream and
  532. Namespaces and WriteState.
  533. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  534. 2002-03-23 Kral Ferch <[email protected]>
  535. * XmlNodeListChildren.cs: made class internal
  536. instead of public. Shouldn't be visible outside
  537. of System.Xml.
  538. * XmlTextWriter.cs: Implementations for Formatting,
  539. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  540. Suppresses encoding on xml declaration if null stream passed in.
  541. Formats output including suppressing indentation for elements in
  542. mixed content mode.
  543. * XmlTextWriterOpenElement.cs: Initial checkin.
  544. XmlTextWriter uses stack of these objects to track
  545. state.
  546. 2002-03-22 Mike Kestner <[email protected]>
  547. * XmlElement.cs: impl HasAttribute(string name).
  548. 2002-03-22 Duncan Mak <[email protected]>
  549. * XmlElement.cs: Reformatted.
  550. (CloneNode) Corrected.
  551. * XmlDocument.cs (CreateWhitespace):
  552. (CreateSignificantWhitespace): Implemented.
  553. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  554. true, because Attributes have ChildNodes.
  555. 2002-03-21 Kral Ferch <[email protected]>
  556. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  557. xml declaration along with encoding. WriteEndElement throws
  558. exception if no WriteStartElement exists.
  559. 2002-03-20 Duncan Mak <[email protected]>
  560. * XmlEntityReference.cs (CloneNode): Implemented.
  561. * XmlException.cs (Message): Implemented. We need to cache the
  562. message string because SystemException doesn't expose 'message'
  563. from Exception.
  564. * XmlText.cs (Value): Added in the missing Value property.
  565. 2002-03-20 Duncan Mak <[email protected]>
  566. * XmlAttribute.cs (CloneNode): Implemented.
  567. * XmlDocumentFragment.cs (CloneNode): Implemented.
  568. * XmlElement.cs (CloneNode): Implemented.
  569. 2002-03-19 Duncan Mak <[email protected]>
  570. * XmlNotation.cs: Added to CVS.
  571. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  572. * XmlCDataSection.cs (CloneNode): Implemented.
  573. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  574. (InnerXml, OwnerDocument, ParentNode).
  575. (CloneNode): Implemented.
  576. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  577. (Value) Implemented the 'get' property.
  578. * XmlWhitespace.cs (Module): implemented.
  579. 2002-03-19 Jason Diamond <[email protected]>
  580. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  581. in the prefix.
  582. 2002-03-18 Jason Diamond <[email protected]>
  583. * XmlTextReader.cs: Don't restore properties after reading last
  584. attribute on an element.
  585. * XmlDocument.cs: Move back to element after reading attributes
  586. so that IsEmptyElement test succeeds.
  587. 2002-03-18 Kral Ferch <[email protected]>
  588. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  589. * XmlTextWriter.cs: Implemented namespace and prefix support.
  590. 2002-03-18 Kral Ferch <[email protected]>
  591. * XmlTextReader.cs: Restores properties after
  592. reading last attribute on an element.
  593. * XmlNode.cs: AppendChild sets the parent
  594. on the child.
  595. 2002-03-17 Kral Ferch <[email protected]>
  596. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  597. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  598. * XmlElement.cs: Fixed bug in WriteTo.
  599. * XmlProcessingInstruction.cs: Formatting.
  600. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  601. fixes for WriteEndElement, WriteProcessingInstruction.
  602. 2002-03-17 Kral Ferch <[email protected]>
  603. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  604. had Load() add PIs to the document, moved onXXX methods to alphabetical
  605. order in the file.
  606. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  607. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  608. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  609. WriteContentTo().
  610. * XmlTextWriter.cs: Implementations for WriteEndElement,
  611. WriteProcessingInstruction, WriteStartElement, and WriteString.
  612. * XmlWriter.cs: Implemented WriteStartElement() methods.
  613. 2002-03-15 Duncan Mak <[email protected]>
  614. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  615. InnerText once I know what they do.
  616. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  617. that we can properly chain constructors.
  618. (CloneNode): implemented.
  619. (WriteContentTo): Removed MonoTODO attribute as this method has no
  620. effect in this class.
  621. * XmlProcessingInstruction.cs (Value): Added the missing Set
  622. block.
  623. (InnerText): Added in, but not implemented.
  624. 2002-03-14 Kral Ferch <[email protected]>
  625. * XmlTextWriter.cs: implemented constructors and
  626. WriteCData and WriteComment.
  627. 2002-03-14 Duncan Mak <[email protected]>
  628. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  629. file, and updated the callbacks to reflect the change.
  630. (XmlDocument): Added the NameTable constructor.
  631. (NameTable): Also the NameTable property.
  632. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  633. was in XmlDocument.cs. It has two arguments now (object,
  634. EventArgs) , instead of one (object).
  635. 2002-03-14 Kral Ferch <[email protected]>
  636. * XmlWriter.cs: Formatting.
  637. * XmlTextWriter.cs: Initial checkin.
  638. 2002-03-14 Duncan Mak <[email protected]>
  639. * Validation.cs: Removed, replaced by ValidationType.cs.
  640. * ValidationType.cs: Added.
  641. 2002-03-13 Duncan Mak <[email protected]>
  642. * XmlException.cs: Made it [Serializable], implemented good ol'
  643. GetObjectData, and the serialization constructor.
  644. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  645. (SetNamedItem): Reverted (added back in) the patch with the
  646. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  647. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  648. (GetNamedItem (string, string)): implemented.
  649. (RemoveNamedItem): implemented.
  650. (SetNamedItem): implemented.
  651. 2002-03-12 Kral Ferch <[email protected]>
  652. * XmlAttribute.cs: Moved a method from amongst properties down to
  653. it's alphabetical position in the methods section.
  654. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  655. last linked child. Set XmlNode base class to return false for IsReadOnly().
  656. Implemented GetEnumerator() and RemoveChild().
  657. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  658. This is to support the behavior that the Enumerator doesn't become invalid
  659. when changes to the children occur. Flushed out rest of implementation for
  660. MoveNext, Current, and Reset.
  661. 2002-03-12 Duncan Mak <[email protected]>
  662. * XmlCharacterData.cs: Reformatted the properties for better readability.
  663. * XmlLinkedNode.cs: Removed the awful boxy comments.
  664. * XmlNamedNodeMap.cs (Count):
  665. (Item): Implemented. Tests will be coming.
  666. * XmlEntityReference.cs:
  667. * XmlSignificantWhitespace.cs: Implemented these classes except for
  668. the Clone, WriteContentTo and WriteTo methods. Will have to
  669. investigate into these later.
  670. 2002-03-11 Duncan Mak <[email protected]>
  671. * IHasXmlNode.cs: Added to CVS.
  672. 2002-03-08 Jason Diamond <[email protected]>
  673. * XmlParserContext.cs: Added missing constructors and missing Encoding
  674. property.
  675. * XmlTextReader.cs: Start using the XmlParserContext class.
  676. 2002-03-08 Jason Diamond <[email protected]>
  677. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  678. 2002-03-08 Mike Kestner <[email protected]>
  679. * XmlNode.cs (Item): Implemented both indexers.
  680. 2002-03-08 Jason Diamond <[email protected]>
  681. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  682. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  683. 2002-03-08 Jason Diamond <[email protected]>
  684. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  685. as child nodes so updated to reflect that.
  686. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  687. duplicated in XmlDocument and XmlElement into XmlNode so that it
  688. wouldn't have to be duplicated in XmlAttribute, too.
  689. 2002-03-08 Kral Ferch <[email protected]>
  690. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  691. XmlNode.cs: Formatting.
  692. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  693. for XmlNode.ChildNodes property.
  694. * XmlNodeListAsArrayList.cs: Removed file. Using different
  695. data structure (circular list) in XmlNode so this file
  696. is no longer valid.
  697. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  698. bug in setter property of LastLinkedChild so fixed it.
  699. 2002-03-06 Jason Diamond <[email protected]>
  700. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  701. We already have a parser in XmlTextReader.
  702. * XmlException.cs: Removed constructor accepting XmlInputSource.
  703. 2002-03-06 Kral Ferch <[email protected]>
  704. * XmlNode.cs: Rewrote this class from scratch with
  705. MonoToDo attribs and NotImplementedExceptions. Now defines an
  706. internal LastLinkedNode property to aid the new implementation.
  707. XmlNodes only have ref to owner doc and parent nodes now.
  708. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  709. and ref to next sibling to support walking our circular child
  710. node list.
  711. * XmlDocument.cs: Added ref to last child node and overrides
  712. XmlNode's internal LastLinkedChild property to support walking
  713. our circular child node list.
  714. 2002-03-02 Kral Ferch <[email protected]>
  715. * XmlProcessingInstructions.cs: Class was empty. Implemented
  716. constructor, properties, and CloneNode() method. Put in
  717. MonoToDo attrib for remaining methods.
  718. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  719. Got rid of helper methods and fields since they were no
  720. longer needed.
  721. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  722. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  723. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  724. Createxxx() methods for those three node types.
  725. 2002-03-02 Jason Diamond <[email protected]>
  726. * XmlDocument.cs: Implemented the remaining CreateElement and
  727. CreateAttribute methods.
  728. * XmlAttribute.cs: Re-implemented.
  729. * XmlElement.cs: Set owner element on attributes. Reformatted.
  730. 2002-03-02 Jason Diamond <[email protected]>
  731. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  732. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  733. attributes. Create attribute nodes while loading. Implemented
  734. Load(string) and CreateTextNode().
  735. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  736. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  737. XmlCharacterData.
  738. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  739. 2002-03-02 Mike Kestner <[email protected]>
  740. * XmlAttribute.cs : Using fix.
  741. * XmlDocument.cs (CreateAttribute(String)): Implement.
  742. 2002-03-02 Jason Diamond <[email protected]>
  743. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  744. the name table.
  745. 2002-02-28 Jason Diamond <[email protected]>
  746. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  747. courtesy of Kral Ferch <[email protected]>.
  748. 2002-02-28 Jason Diamond <[email protected]>
  749. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  750. added missing members and MonoTODO attributes.
  751. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  752. 2002-02-27 Jason Diamond <[email protected]>
  753. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  754. attributes.
  755. 2002-02-26 Duncan Mak <[email protected]>
  756. * XmlCDataSection.cs: Initial implementation.
  757. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  758. it out. This should (hopefully) be correct.
  759. 2002-02-26 Jason Diamond <[email protected]>
  760. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  761. namespace declarations as attributes so we do now, too.
  762. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  763. checks the current scope.
  764. 2002-02-26 Duncan Mak <[email protected]>
  765. * XmlDocumentType.cs: Added a few hacks here and there to
  766. temporarily fix the "I broke the build issue".
  767. 2002-02-25 Jason Diamond <[email protected]>
  768. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  769. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  770. simple test to pass. The existing code is really shitty so I'll
  771. probably start writing tests and refactoring before much else
  772. can get done.
  773. 2002-02-25 Duncan Mak <[email protected]>
  774. * NameTable.cs: Implemented.
  775. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  776. 2002-02-24 Duncan Mak <[email protected]>
  777. * XmlNodeOrder.cs: Added to CVS.
  778. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  779. * XmlTokenizedType.cs: Added to CVS.
  780. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  781. 2002-02-23 Duncan Mak <[email protected]>
  782. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  783. (== and !=).
  784. 2002-02-23 Jason Diamond <[email protected]>
  785. * XmlTextReader.cs: Added support for qualified attributes.
  786. 2002-02-23 Jason Diamond <[email protected]>
  787. * XmlNamespaceManager.cs: Initial implementation.
  788. * XmlTextReader.cs: Added support for NamespaceURI property on
  789. elements.
  790. 2002-02-23 Nick Drochak <[email protected]>
  791. * ChangeLog: Add the change log to this directory
  792. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  793. MonoTODO's