ChangeLog 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. 2002-03-14 Duncan Mak <[email protected]>
  2. * XmlDocument.cs: Moved the NodeChanged EventHandler to its own
  3. file, and updated the callbacks to reflect the change.
  4. (XmlDocument): Added the NameTable constructor.
  5. (NameTable): Also the NameTable property.
  6. * XmlNodeChangedEventHandler.cs: Added, replacing the version that
  7. was in XmlDocument.cs. It has two arguments now (object,
  8. EventArgs) , instead of one (object).
  9. 2002-03-14 Kral Ferch <[email protected]>
  10. * XmlWriter.cs: Formatting.
  11. * XmlTextWriter.cs: Initial checkin.
  12. 2002-03-14 Duncan Mak <[email protected]>
  13. * Validation.cs: Removed, replaced by ValidationType.cs.
  14. * ValidationType.cs: Added.
  15. 2002-03-13 Duncan Mak <[email protected]>
  16. * XmlException.cs: Made it [Serializable], implemented good ol'
  17. GetObjectData, and the serialization constructor.
  18. * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property.
  19. (SetNamedItem): Reverted (added back in) the patch with the
  20. ReadOnly checks. "Don't doubt yourself, my son... you were right!"
  21. * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation.
  22. (GetNamedItem (string, string)): implemented.
  23. (RemoveNamedItem): implemented.
  24. (SetNamedItem): implemented.
  25. 2002-03-12 Kral Ferch <[email protected]>
  26. * XmlAttribute.cs: Moved a method from amongst properties down to
  27. it's alphabetical position in the methods section.
  28. * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of
  29. last linked child. Set XmlNode base class to return false for IsReadOnly().
  30. Implemented GetEnumerator() and RemoveChild().
  31. * XmlNodeListChildren.cs: Now stores the parent instead of the last child.
  32. This is to support the behavior that the Enumerator doesn't become invalid
  33. when changes to the children occur. Flushed out rest of implementation for
  34. MoveNext, Current, and Reset.
  35. 2002-03-12 Duncan Mak <[email protected]>
  36. * XmlCharacterData.cs: Reformatted the properties for better readability.
  37. * XmlLinkedNode.cs: Removed the awful boxy comments.
  38. * XmlNamedNodeMap.cs (Count):
  39. (Item): Implemented. Tests will be coming.
  40. * XmlEntityReference.cs:
  41. * XmlSignificantWhitespace.cs: Implemented these classes except for
  42. the Clone, WriteContentTo and WriteTo methods. Will have to
  43. investigate into these later.
  44. 2002-03-11 Duncan Mak <[email protected]>
  45. * IHasXmlNode.cs: Added to CVS.
  46. 2002-03-08 Jason Diamond <[email protected]>
  47. * XmlParserContext.cs: Added missing constructors and missing Encoding
  48. property.
  49. * XmlTextReader.cs: Start using the XmlParserContext class.
  50. 2002-03-08 Jason Diamond <[email protected]>
  51. * XmlTextReader.cs: Implemented MoveToElement and MoveToFirstAttribute.
  52. 2002-03-08 Mike Kestner <[email protected]>
  53. * XmlNode.cs (Item): Implemented both indexers.
  54. 2002-03-08 Jason Diamond <[email protected]>
  55. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  56. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  57. 2002-03-08 Jason Diamond <[email protected]>
  58. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  59. as child nodes so updated to reflect that.
  60. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  61. duplicated in XmlDocument and XmlElement into XmlNode so that it
  62. wouldn't have to be duplicated in XmlAttribute, too.
  63. 2002-03-08 Kral Ferch <[email protected]>
  64. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  65. XmlNode.cs: Formatting.
  66. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  67. for XmlNode.ChildNodes property.
  68. * XmlNodeListAsArrayList.cs: Removed file. Using different
  69. data structure (circular list) in XmlNode so this file
  70. is no longer valid.
  71. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  72. bug in setter property of LastLinkedChild so fixed it.
  73. 2002-03-06 Jason Diamond <[email protected]>
  74. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  75. We already have a parser in XmlTextReader.
  76. * XmlException.cs: Removed constructor accepting XmlInputSource.
  77. 2002-03-06 Kral Ferch <[email protected]>
  78. * XmlNode.cs: Rewrote this class from scratch with
  79. MonoToDo attribs and NotImplementedExceptions. Now defines an
  80. internal LastLinkedNode property to aid the new implementation.
  81. XmlNodes only have ref to owner doc and parent nodes now.
  82. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  83. and ref to next sibling to support walking our circular child
  84. node list.
  85. * XmlDocument.cs: Added ref to last child node and overrides
  86. XmlNode's internal LastLinkedChild property to support walking
  87. our circular child node list.
  88. 2002-03-02 Kral Ferch <[email protected]>
  89. * XmlProcessingInstructions.cs: Class was empty. Implemented
  90. constructor, properties, and CloneNode() method. Put in
  91. MonoToDo attrib for remaining methods.
  92. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  93. Got rid of helper methods and fields since they were no
  94. longer needed.
  95. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  96. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  97. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  98. Createxxx() methods for those three node types.
  99. 2002-03-02 Jason Diamond <[email protected]>
  100. * XmlDocument.cs: Implemented the remaining CreateElement and
  101. CreateAttribute methods.
  102. * XmlAttribute.cs: Re-implemented.
  103. * XmlElement.cs: Set owner element on attributes. Reformatted.
  104. 2002-03-02 Jason Diamond <[email protected]>
  105. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  106. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  107. attributes. Create attribute nodes while loading. Implemented
  108. Load(string) and CreateTextNode().
  109. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  110. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  111. XmlCharacterData.
  112. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  113. 2002-03-02 Mike Kestner <[email protected]>
  114. * XmlAttribute.cs : Using fix.
  115. * XmlDocument.cs (CreateAttribute(String)): Implement.
  116. 2002-03-02 Jason Diamond <[email protected]>
  117. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  118. the name table.
  119. 2002-02-28 Jason Diamond <[email protected]>
  120. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  121. courtesy of Kral Ferch <[email protected]>.
  122. 2002-02-28 Jason Diamond <[email protected]>
  123. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  124. added missing members and MonoTODO attributes.
  125. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  126. 2002-02-27 Jason Diamond <[email protected]>
  127. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  128. attributes.
  129. 2002-02-26 Duncan Mak <[email protected]>
  130. * XmlCDataSection.cs: Initial implementation.
  131. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  132. it out. This should (hopefully) be correct.
  133. 2002-02-26 Jason Diamond <[email protected]>
  134. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  135. namespace declarations as attributes so we do now, too.
  136. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  137. checks the current scope.
  138. 2002-02-26 Duncan Mak <[email protected]>
  139. * XmlDocumentType.cs: Added a few hacks here and there to
  140. temporarily fix the "I broke the build issue".
  141. 2002-02-25 Jason Diamond <[email protected]>
  142. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  143. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  144. simple test to pass. The existing code is really shitty so I'll
  145. probably start writing tests and refactoring before much else
  146. can get done.
  147. 2002-02-25 Duncan Mak <[email protected]>
  148. * NameTable.cs: Implemented.
  149. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  150. 2002-02-24 Duncan Mak <[email protected]>
  151. * XmlNodeOrder.cs: Added to CVS.
  152. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  153. * XmlTokenizedType.cs: Added to CVS.
  154. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  155. 2002-02-23 Duncan Mak <[email protected]>
  156. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  157. (== and !=).
  158. 2002-02-23 Jason Diamond <[email protected]>
  159. * XmlTextReader.cs: Added support for qualified attributes.
  160. 2002-02-23 Jason Diamond <[email protected]>
  161. * XmlNamespaceManager.cs: Initial implementation.
  162. * XmlTextReader.cs: Added support for NamespaceURI property on
  163. elements.
  164. 2002-02-23 Nick Drochak <[email protected]>
  165. * ChangeLog: Add the change log to this directory
  166. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  167. MonoTODO's