ChangeLog 14 KB

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