ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654
  1. 2002-07-06 Ajay kumar Dwivedi <[email protected]>
  2. * XmlTextWriter: In WriteStartElement, if namespace is null and
  3. prefix is null|empty do not write out xmlns=""
  4. * XmlWriter: WriteStartElement calls the virtual method with null
  5. argument instead of empty string.
  6. 2002-07-05 Gonzalo Paniagua Javier <[email protected]>
  7. * XmlTextReader.cs: implemented .ctor (Stream).
  8. 2002-06-26 Duncan Mak <[email protected]>
  9. * XmlNodeReader.cs: Implementation of most of the properties, and
  10. some of the related methods.
  11. 2002-06-23 Piers Haken <[email protected]>
  12. * XmlDocumentNavigator.cs: implement Clone()
  13. * XmlElement.cs: remove bogus unimplemented override of InnerText
  14. * XmlNode.cs: implment SelectNodes/SelectSingleNode
  15. * XmlNodeArrayList.cs: new support class for SelectNodes
  16. 2002-06-21 Ajay kumar Dwivedi <[email protected]>
  17. * XmlQualifiedName: Name and Namespaces are never null. If null is passed
  18. to the constructor, set them to empty strings.
  19. Fixed the Operators.
  20. 2002-06-18 Ajay kumar Dwivedi <[email protected]>
  21. * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
  22. Exception.
  23. 2002-06-14 Duncan Mak <[email protected]>
  24. * XmlConvert.cs: Added CLSCompliant attributes to methods.
  25. 2002-06-12 Duncan Mak <[email protected]>
  26. * XmlCharacterData.cs (Value): Throw an ArgumentException in the
  27. set block if the node is read-only.
  28. 2002-06-10 Ajay kumar Dwivedi <[email protected]>
  29. * XmlConstruct.cs : New Internal class with Helper methods for
  30. Checking XmlConstructs
  31. * XmlConvert.cs: Implemented most of the methods
  32. 2002-06-08 Duncan Mak <[email protected]>
  33. * XmlDocument.cs (Load):
  34. Added bits to Load (string) for BaseURI support.
  35. * XmlAttribute.cs (BaseURI):
  36. * XmlDocument.cs (BaseURI):
  37. * XmlEntity.cs (BaseURI): Implemented.
  38. 2002-05-27 Jason Diamond <[email protected]>
  39. * XmlDocumentNavigator.cs: Added file to directory.
  40. * XmlNode.cs (CreateNavigator): Implemented.
  41. (InnerText): Implemented.
  42. * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
  43. throwing exception.
  44. (Load(XmlReader)): Allow for namespace qualified attributes.
  45. * XmlElement.cs: Implemented GetAttribute(string, string) and both
  46. GetAttributeNode overloads.
  47. (SetAttributeNode(XmlAttribute)): Implemented.
  48. * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
  49. and RemoveNamedItem(string, string).
  50. * XmlLinkedNode.cs (PreviousSibling): Implemented.
  51. * XmlTextReader.cs: Added code to maintain the order of attributes as
  52. they're parsed. XML doesn't require this but Microsoft's parser does it and
  53. matching them makes testing easier so now we have it, too.
  54. 2002-05-26 Miguel de Icaza <[email protected]>
  55. * XmlDocument.cs: Implement the Save methods.
  56. 2002-05-08 Mike Kestner <[email protected]>
  57. * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
  58. 2002-04-28 Duncan Mak <[email protected]>
  59. * XmlSignificantWhitespace.cs (Value):
  60. * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
  61. block. Added new private method, IsValidWhitespaceChar, for
  62. checking.
  63. 2002-04-16 Duncan Mak <[email protected]>
  64. * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
  65. 2002-04-12 Duncan Mak <[email protected]>
  66. * XmlAttribute.cs (Prefix): Added preliminary code for set block,
  67. added comment on work that needs to be done here. A new MonoTODO item.
  68. * XmlDocument.cs (ctor): Corrected constructor signature, changed
  69. parameter from 'NameTable' to 'XmlNameTable'.
  70. * XmlDocumentFragment.cs (InnerXml): Added missing set block.
  71. * XmlCaseOrder.cs: Moved to System.Xml.XPath.
  72. 2002-04-10 Duncan Mak <[email protected]>
  73. * XmlNodeReader.cs: Initial stubs for the class.
  74. 2002-04-08 Kral Ferch <[email protected]>
  75. * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
  76. implementations.
  77. * XmlDeclaration.cs: WriteTo implementation.
  78. * XmlDocument.cs: InnerXml getter implementation.
  79. * XmlElement.cs: InnerXml getter implementation.
  80. * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
  81. * XmlSignificantWhitespace.cs: WriteTo implementation.
  82. * XmlText.cs: WriteContentTo and WriteTo implementation.
  83. * XmlTextWriter.cs: WriteRaw implementation.
  84. * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
  85. 2002-04-05 Kral Ferch <[email protected]>
  86. * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
  87. if prefix in constructor is one of the default ones.
  88. * XmlCharacterData.cs: Returns String.Empty for Value and Data
  89. even when constructed with null.
  90. * XmlDeclaration.cs: Value doesn't put encoding or standalone
  91. in if they are empty.
  92. * XmlDocument.cs: Implemented CreateNode methods and this caused
  93. the changes in the other files in this checkin.
  94. * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
  95. even when constructed with null.
  96. * XmlWhitespace.cs: Changed Value 'get' to return Data.
  97. 2002-04-01 Kral Ferch <[email protected]>
  98. * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
  99. 2002-03-31 Kral Ferch <[email protected]>
  100. * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
  101. and WriteCharEntity.
  102. * XmlWrite.cs: Fixed bug where attribute namespace decl
  103. was pushing a scope onto the namespace manager when it shouldn't
  104. have been.
  105. 2002-03-31 Kral Ferch <[email protected]>
  106. * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
  107. in different states (no open start element, in WriteState.Content mode).
  108. 2002-03-29 Kral Ferch <[email protected]>
  109. * XmlTextWriter.cs: XmlLang and XmlSpace properties
  110. and WriteWhitespace.
  111. * XmlTextWriterOpenElement.cs: scope support for XmlLang
  112. and XmlSpace.
  113. 2002-03-29 Kral Ferch <[email protected]>
  114. * XmlTextWriter.cs: Working on Attribute methods.
  115. * XmlWriter.cs: Working on Attribute methods.
  116. 2002-03-28 Duncan Mak <[email protected]>
  117. * XmlDocument.cs (CreateWhitespace):
  118. (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
  119. method.
  120. * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
  121. 2002-03-26 Duncan Mak <[email protected]>
  122. * XmlDocument.cs (CreateDocumentType): Implemented.
  123. * XmlNode.cs (Value): Implemented.
  124. * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
  125. like XmlCharacterData.
  126. * XmlDeclaration.cs (CloneNode):
  127. * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
  128. arguments.
  129. * XmlCharacterData.cs (InnerText): Implemented. Funny that the
  130. docs say it is the "The concatenated values of the node and all
  131. the children of the node.". I wrote some test programs and
  132. couldn't get any of the derived nodes to AppendChild. For now,
  133. InnerText == Data == Value.
  134. (Substring): Fixed typo.
  135. * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
  136. * XmlImplementation.cs (CreateDocument): Implemented.
  137. 2002-03-25 Duncan Mak <[email protected]>
  138. * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
  139. missing properties (InnerText, Value).
  140. * XmlDocument.cs (CreateXmlDeclaration): Implemented.
  141. 2002-03-23 Kral Ferch <[email protected]>
  142. * XmlTextWriter.cs: Impls for BaseStream and
  143. Namespaces and WriteState.
  144. * XmlWriter.cs: WriteState and WriteStartElementInternal.
  145. 2002-03-23 Kral Ferch <[email protected]>
  146. * XmlNodeListChildren.cs: made class internal
  147. instead of public. Shouldn't be visible outside
  148. of System.Xml.
  149. * XmlTextWriter.cs: Implementations for Formatting,
  150. IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone).
  151. Suppresses encoding on xml declaration if null stream passed in.
  152. Formats output including suppressing indentation for elements in
  153. mixed content mode.
  154. * XmlTextWriterOpenElement.cs: Initial checkin.
  155. XmlTextWriter uses stack of these objects to track
  156. state.
  157. 2002-03-22 Mike Kestner <[email protected]>
  158. * XmlElement.cs: impl HasAttribute(string name).
  159. 2002-03-22 Duncan Mak <[email protected]>
  160. * XmlElement.cs: Reformatted.
  161. (CloneNode) Corrected.
  162. * XmlDocument.cs (CreateWhitespace):
  163. (CreateSignificantWhitespace): Implemented.
  164. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to
  165. true, because Attributes have ChildNodes.
  166. 2002-03-21 Kral Ferch <[email protected]>
  167. * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
  168. xml declaration along with encoding. WriteEndElement throws
  169. exception if no WriteStartElement exists.
  170. 2002-03-20 Duncan Mak <[email protected]>
  171. * XmlEntityReference.cs (CloneNode): Implemented.
  172. * XmlException.cs (Message): Implemented. We need to cache the
  173. message string because SystemException doesn't expose 'message'
  174. from Exception.
  175. * XmlText.cs (Value): Added in the missing Value property.
  176. 2002-03-20 Duncan Mak <[email protected]>
  177. * XmlAttribute.cs (CloneNode): Implemented.
  178. * XmlDocumentFragment.cs (CloneNode): Implemented.
  179. * XmlElement.cs (CloneNode): Implemented.
  180. 2002-03-19 Duncan Mak <[email protected]>
  181. * XmlNotation.cs: Added to CVS.
  182. * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
  183. * XmlCDataSection.cs (CloneNode): Implemented.
  184. * XmlDocumentFragment.cs: Reformatted and added the missing properties
  185. (InnerXml, OwnerDocument, ParentNode).
  186. (CloneNode): Implemented.
  187. * XmlSignificantWhitespace.cs (CloneNode): Implemented.
  188. (Value) Implemented the 'get' property.
  189. * XmlWhitespace.cs (Module): implemented.
  190. 2002-03-19 Jason Diamond <[email protected]>
  191. * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName
  192. in the prefix.
  193. 2002-03-18 Jason Diamond <[email protected]>
  194. * XmlTextReader.cs: Don't restore properties after reading last
  195. attribute on an element.
  196. * XmlDocument.cs: Move back to element after reading attributes
  197. so that IsEmptyElement test succeeds.
  198. 2002-03-18 Kral Ferch <[email protected]>
  199. * XmlNamespaceManager.cs: Implemented LookupPrefix.
  200. * XmlTextWriter.cs: Implemented namespace and prefix support.
  201. 2002-03-18 Kral Ferch <[email protected]>
  202. * XmlTextReader.cs: Restores properties after
  203. reading last attribute on an element.
  204. * XmlNode.cs: AppendChild sets the parent
  205. on the child.
  206. 2002-03-17 Kral Ferch <[email protected]>
  207. * XmlCDataSection.cs: Formatting, Implementation for WriteTo.
  208. * XmlComment.cs: Implementations for WriteTo and WriteContentTo.
  209. * XmlElement.cs: Fixed bug in WriteTo.
  210. * XmlProcessingInstruction.cs: Formatting.
  211. * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment,
  212. fixes for WriteEndElement, WriteProcessingInstruction.
  213. 2002-03-17 Kral Ferch <[email protected]>
  214. * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(),
  215. had Load() add PIs to the document, moved onXXX methods to alphabetical
  216. order in the file.
  217. * XmlElement.cs: Implementations for WriteTo() and WriteContentTo().
  218. * XmlNode.cs: Implementations for InnerXml Get and OuterXml.
  219. * XmlProcessingInstruction.cs: Implementations for WriteTo() and
  220. WriteContentTo().
  221. * XmlTextWriter.cs: Implementations for WriteEndElement,
  222. WriteProcessingInstruction, WriteStartElement, and WriteString.
  223. * XmlWriter.cs: Implemented WriteStartElement() methods.
  224. 2002-03-15 Duncan Mak <[email protected]>
  225. * XmlEntity.cs: Added to CVS. Need to implement BaseURI and
  226. InnerText once I know what they do.
  227. * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now
  228. that we can properly chain constructors.
  229. (CloneNode): implemented.
  230. (WriteContentTo): Removed MonoTODO attribute as this method has no
  231. effect in this class.
  232. * XmlProcessingInstruction.cs (Value): Added the missing Set
  233. block.
  234. (InnerText): Added in, but not implemented.
  235. 2002-03-14 Kral Ferch <[email protected]>
  236. * XmlTextWriter.cs: implemented constructors and
  237. WriteCData and WriteComment.
  238. 2002-03-14 Duncan Mak <[email protected]>
  239. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  240. file, and updated the callbacks to reflect the change.
  241. (XmlDocument): Added the NameTable constructor.
  242. (NameTable): Also the NameTable property.
  243. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  244. was in XmlDocument.cs. It has two arguments now (object,
  245. EventArgs) , instead of one (object).
  246. 2002-03-14 Kral Ferch <[email protected]>
  247. * XmlWriter.cs: Formatting.
  248. * XmlTextWriter.cs: Initial checkin.
  249. 2002-03-14 Duncan Mak <[email protected]>
  250. * Validation.cs: Removed, replaced by ValidationType.cs.
  251. * ValidationType.cs: Added.
  252. 2002-03-13 Duncan Mak <[email protected]>
  253. * XmlException.cs: Made it [Serializable], implemented good ol'
  254. GetObjectData, and the serialization constructor.
  255. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  256. (SetNamedItem): Reverted (added back in) the patch with the
  257. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  258. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  259. (GetNamedItem (string, string)): implemented.
  260. (RemoveNamedItem): implemented.
  261. (SetNamedItem): implemented.
  262. 2002-03-12 Kral Ferch <[email protected]>
  263. * XmlAttribute.cs: Moved a method from amongst properties down to
  264. it's alphabetical position in the methods section.
  265. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  266. last linked child. Set XmlNode base class to return false for IsReadOnly().
  267. Implemented GetEnumerator() and RemoveChild().
  268. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  269. This is to support the behavior that the Enumerator doesn't become invalid
  270. when changes to the children occur. Flushed out rest of implementation for
  271. MoveNext, Current, and Reset.
  272. 2002-03-12 Duncan Mak <[email protected]>
  273. * XmlCharacterData.cs: Reformatted the properties for better readability.
  274. * XmlLinkedNode.cs: Removed the awful boxy comments.
  275. * XmlNamedNodeMap.cs (Count):
  276. (Item): Implemented. Tests will be coming.
  277. * XmlEntityReference.cs:
  278. * XmlSignificantWhitespace.cs: Implemented these classes except for
  279. the Clone, WriteContentTo and WriteTo methods. Will have to
  280. investigate into these later.
  281. 2002-03-11 Duncan Mak <[email protected]>
  282. * IHasXmlNode.cs: Added to CVS.
  283. 2002-03-08 Jason Diamond <[email protected]>
  284. * XmlParserContext.cs: Added missing constructors and missing Encoding
  285. property.
  286. * XmlTextReader.cs: Start using the XmlParserContext class.
  287. 2002-03-08 Jason Diamond <[email protected]>
  288. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  289. 2002-03-08 Mike Kestner <[email protected]>
  290. * XmlNode.cs (Item): Implemented both indexers.
  291. 2002-03-08 Jason Diamond <[email protected]>
  292. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  293. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  294. 2002-03-08 Jason Diamond <[email protected]>
  295. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  296. as child nodes so updated to reflect that.
  297. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  298. duplicated in XmlDocument and XmlElement into XmlNode so that it
  299. wouldn't have to be duplicated in XmlAttribute, too.
  300. 2002-03-08 Kral Ferch <[email protected]>
  301. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  302. XmlNode.cs: Formatting.
  303. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  304. for XmlNode.ChildNodes property.
  305. * XmlNodeListAsArrayList.cs: Removed file. Using different
  306. data structure (circular list) in XmlNode so this file
  307. is no longer valid.
  308. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  309. bug in setter property of LastLinkedChild so fixed it.
  310. 2002-03-06 Jason Diamond <[email protected]>
  311. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  312. We already have a parser in XmlTextReader.
  313. * XmlException.cs: Removed constructor accepting XmlInputSource.
  314. 2002-03-06 Kral Ferch <[email protected]>
  315. * XmlNode.cs: Rewrote this class from scratch with
  316. MonoToDo attribs and NotImplementedExceptions. Now defines an
  317. internal LastLinkedNode property to aid the new implementation.
  318. XmlNodes only have ref to owner doc and parent nodes now.
  319. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  320. and ref to next sibling to support walking our circular child
  321. node list.
  322. * XmlDocument.cs: Added ref to last child node and overrides
  323. XmlNode's internal LastLinkedChild property to support walking
  324. our circular child node list.
  325. 2002-03-02 Kral Ferch <[email protected]>
  326. * XmlProcessingInstructions.cs: Class was empty. Implemented
  327. constructor, properties, and CloneNode() method. Put in
  328. MonoToDo attrib for remaining methods.
  329. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  330. Got rid of helper methods and fields since they were no
  331. longer needed.
  332. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  333. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  334. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  335. Createxxx() methods for those three node types.
  336. 2002-03-02 Jason Diamond <[email protected]>
  337. * XmlDocument.cs: Implemented the remaining CreateElement and
  338. CreateAttribute methods.
  339. * XmlAttribute.cs: Re-implemented.
  340. * XmlElement.cs: Set owner element on attributes. Reformatted.
  341. 2002-03-02 Jason Diamond <[email protected]>
  342. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  343. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  344. attributes. Create attribute nodes while loading. Implemented
  345. Load(string) and CreateTextNode().
  346. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  347. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  348. XmlCharacterData.
  349. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  350. 2002-03-02 Mike Kestner <[email protected]>
  351. * XmlAttribute.cs : Using fix.
  352. * XmlDocument.cs (CreateAttribute(String)): Implement.
  353. 2002-03-02 Jason Diamond <[email protected]>
  354. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  355. the name table.
  356. 2002-02-28 Jason Diamond <[email protected]>
  357. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  358. courtesy of Kral Ferch <[email protected]>.
  359. 2002-02-28 Jason Diamond <[email protected]>
  360. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  361. added missing members and MonoTODO attributes.
  362. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  363. 2002-02-27 Jason Diamond <[email protected]>
  364. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  365. attributes.
  366. 2002-02-26 Duncan Mak <[email protected]>
  367. * XmlCDataSection.cs: Initial implementation.
  368. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  369. it out. This should (hopefully) be correct.
  370. 2002-02-26 Jason Diamond <[email protected]>
  371. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  372. namespace declarations as attributes so we do now, too.
  373. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  374. checks the current scope.
  375. 2002-02-26 Duncan Mak <[email protected]>
  376. * XmlDocumentType.cs: Added a few hacks here and there to
  377. temporarily fix the "I broke the build issue".
  378. 2002-02-25 Jason Diamond <[email protected]>
  379. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  380. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  381. simple test to pass. The existing code is really shitty so I'll
  382. probably start writing tests and refactoring before much else
  383. can get done.
  384. 2002-02-25 Duncan Mak <[email protected]>
  385. * NameTable.cs: Implemented.
  386. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  387. 2002-02-24 Duncan Mak <[email protected]>
  388. * XmlNodeOrder.cs: Added to CVS.
  389. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  390. * XmlTokenizedType.cs: Added to CVS.
  391. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  392. 2002-02-23 Duncan Mak <[email protected]>
  393. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  394. (== and !=).
  395. 2002-02-23 Jason Diamond <[email protected]>
  396. * XmlTextReader.cs: Added support for qualified attributes.
  397. 2002-02-23 Jason Diamond <[email protected]>
  398. * XmlNamespaceManager.cs: Initial implementation.
  399. * XmlTextReader.cs: Added support for NamespaceURI property on
  400. elements.
  401. 2002-02-23 Nick Drochak <[email protected]>
  402. * ChangeLog: Add the change log to this directory
  403. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  404. MonoTODO's