ChangeLog 15 KB

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