ChangeLog 11 KB

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