ChangeLog 11 KB

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