ChangeLog 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. 2002-03-08 Jason Diamond <[email protected]>
  2. * DomEncodingType.cs, TreePosition.cs, XPathNodeType.cs, XmlDataType.cs,
  3. XmlExceptionCode.cs, XmlSortOrder.cs, XmlUtil.cs: Removed files.
  4. 2002-03-08 Jason Diamond <[email protected]>
  5. * XmlAttribute.cs: Attribute nodes are supposed to store their values
  6. as child nodes so updated to reflect that.
  7. * XmlDocument.cs, XmlElement.cs, XmlNode.cs: Moved code that was
  8. duplicated in XmlDocument and XmlElement into XmlNode so that it
  9. wouldn't have to be duplicated in XmlAttribute, too.
  10. 2002-03-08 Kral Ferch <[email protected]>
  11. * XmlNodeList.cs, XmlDocument.cs, XmlLinkedNode.cs,
  12. XmlNode.cs: Formatting.
  13. * XmlNodeListChildren.cs: Implementation of XmlNodeList
  14. for XmlNode.ChildNodes property.
  15. * XmlNodeListAsArrayList.cs: Removed file. Using different
  16. data structure (circular list) in XmlNode so this file
  17. is no longer valid.
  18. * XmlDocument.cs, XmlElement.cs: New ChildNodes tests found
  19. bug in setter property of LastLinkedChild so fixed it.
  20. 2002-03-06 Jason Diamond <[email protected]>
  21. * XmlInputSource.cs, XmlNames_1_0.cs, XmlParse.cs: Removed files.
  22. We already have a parser in XmlTextReader.
  23. * XmlException.cs: Removed constructor accepting XmlInputSource.
  24. 2002-03-06 Kral Ferch <[email protected]>
  25. * XmlNode.cs: Rewrote this class from scratch with
  26. MonoToDo attribs and NotImplementedExceptions. Now defines an
  27. internal LastLinkedNode property to aid the new implementation.
  28. XmlNodes only have ref to owner doc and parent nodes now.
  29. * XmlLinkedNode.cs: Added NextLinkedSibling internal property
  30. and ref to next sibling to support walking our circular child
  31. node list.
  32. * XmlDocument.cs: Added ref to last child node and overrides
  33. XmlNode's internal LastLinkedChild property to support walking
  34. our circular child node list.
  35. 2002-03-02 Kral Ferch <[email protected]>
  36. * XmlProcessingInstructions.cs: Class was empty. Implemented
  37. constructor, properties, and CloneNode() method. Put in
  38. MonoToDo attrib for remaining methods.
  39. * XmlComment.cs: Reformatted and put in MonoToDo attribs.
  40. Got rid of helper methods and fields since they were no
  41. longer needed.
  42. * XmlLinkedNode.cs: Reformatted and put in MonoToDo attribs.
  43. * XmlDocument.cs: Added code to Load(XmlReader) to create XmlComment,
  44. XmlCDataSection, and XmlProcessingInstruction nodes. Implemented
  45. Createxxx() methods for those three node types.
  46. 2002-03-02 Jason Diamond <[email protected]>
  47. * XmlDocument.cs: Implemented the remaining CreateElement and
  48. CreateAttribute methods.
  49. * XmlAttribute.cs: Re-implemented.
  50. * XmlElement.cs: Set owner element on attributes. Reformatted.
  51. 2002-03-02 Jason Diamond <[email protected]>
  52. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  53. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  54. attributes. Create attribute nodes while loading. Implemented
  55. Load(string) and CreateTextNode().
  56. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  57. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  58. XmlCharacterData.
  59. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  60. 2002-03-02 Mike Kestner <[email protected]>
  61. * XmlAttribute.cs : Using fix.
  62. * XmlDocument.cs (CreateAttribute(String)): Implement.
  63. 2002-03-02 Jason Diamond <[email protected]>
  64. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  65. the name table.
  66. 2002-02-28 Jason Diamond <[email protected]>
  67. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  68. courtesy of Kral Ferch <[email protected]>.
  69. 2002-02-28 Jason Diamond <[email protected]>
  70. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  71. added missing members and MonoTODO attributes.
  72. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  73. 2002-02-27 Jason Diamond <[email protected]>
  74. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  75. attributes.
  76. 2002-02-26 Duncan Mak <[email protected]>
  77. * XmlCDataSection.cs: Initial implementation.
  78. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  79. it out. This should (hopefully) be correct.
  80. 2002-02-26 Jason Diamond <[email protected]>
  81. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  82. namespace declarations as attributes so we do now, too.
  83. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  84. checks the current scope.
  85. 2002-02-26 Duncan Mak <[email protected]>
  86. * XmlDocumentType.cs: Added a few hacks here and there to
  87. temporarily fix the "I broke the build issue".
  88. 2002-02-25 Jason Diamond <[email protected]>
  89. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  90. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  91. simple test to pass. The existing code is really shitty so I'll
  92. probably start writing tests and refactoring before much else
  93. can get done.
  94. 2002-02-25 Duncan Mak <[email protected]>
  95. * NameTable.cs: Implemented.
  96. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  97. 2002-02-24 Duncan Mak <[email protected]>
  98. * XmlNodeOrder.cs: Added to CVS.
  99. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  100. * XmlTokenizedType.cs: Added to CVS.
  101. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  102. 2002-02-23 Duncan Mak <[email protected]>
  103. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  104. (== and !=).
  105. 2002-02-23 Jason Diamond <[email protected]>
  106. * XmlTextReader.cs: Added support for qualified attributes.
  107. 2002-02-23 Jason Diamond <[email protected]>
  108. * XmlNamespaceManager.cs: Initial implementation.
  109. * XmlTextReader.cs: Added support for NamespaceURI property on
  110. elements.
  111. 2002-02-23 Nick Drochak <[email protected]>
  112. * ChangeLog: Add the change log to this directory
  113. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  114. MonoTODO's