ChangeLog 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. 2002-03-02 Jason Diamond <[email protected]>
  2. * XmlTextReader.cs: Implemented MoveToNextAttribute().
  3. * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO
  4. attributes. Create attribute nodes while loading. Implemented
  5. Load(string) and CreateTextNode().
  6. * XmlCharacterData.cs, XmlText.cs: Re-implemented.
  7. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in
  8. XmlCharacterData.
  9. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out.
  10. 2002-03-02 Mike Kestner <[email protected]>
  11. * XmlAttribute.cs : Using fix.
  12. * XmlDocument.cs (CreateAttribute(String)): Implement.
  13. 2002-03-02 Jason Diamond <[email protected]>
  14. * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in
  15. the name table.
  16. 2002-02-28 Jason Diamond <[email protected]>
  17. * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml
  18. courtesy of Kral Ferch <[email protected]>.
  19. 2002-02-28 Jason Diamond <[email protected]>
  20. * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted,
  21. added missing members and MonoTODO attributes.
  22. * XmlTextReader.cs: Throw XmlException instead of System.Exception.
  23. 2002-02-27 Jason Diamond <[email protected]>
  24. * XmlElement.cs: Reformatted, added missing members and MonoTODO
  25. attributes.
  26. 2002-02-26 Duncan Mak <[email protected]>
  27. * XmlCDataSection.cs: Initial implementation.
  28. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test
  29. it out. This should (hopefully) be correct.
  30. 2002-02-26 Jason Diamond <[email protected]>
  31. * XmlTextReader.cs: Apparently Microsoft's implementation treats
  32. namespace declarations as attributes so we do now, too.
  33. * XmlNamespaceManager.cs: HasNamespace fixed so that it only
  34. checks the current scope.
  35. 2002-02-26 Duncan Mak <[email protected]>
  36. * XmlDocumentType.cs: Added a few hacks here and there to
  37. temporarily fix the "I broke the build issue".
  38. 2002-02-25 Jason Diamond <[email protected]>
  39. * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs,
  40. XmlNodeListAsArrayList.cs: Multiple fixes necessary to get
  41. simple test to pass. The existing code is really shitty so I'll
  42. probably start writing tests and refactoring before much else
  43. can get done.
  44. 2002-02-25 Duncan Mak <[email protected]>
  45. * NameTable.cs: Implemented.
  46. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode.
  47. 2002-02-24 Duncan Mak <[email protected]>
  48. * XmlNodeOrder.cs: Added to CVS.
  49. * XmlQualifiedName.cs: Fixed a warning from Equals ().
  50. * XmlTokenizedType.cs: Added to CVS.
  51. * XmlUrlResolver.cs: Added to CVS with one TODO task.
  52. 2002-02-23 Duncan Mak <[email protected]>
  53. * XmlQualifiedName.cs: Fixed ToString () and added the operators
  54. (== and !=).
  55. 2002-02-23 Jason Diamond <[email protected]>
  56. * XmlTextReader.cs: Added support for qualified attributes.
  57. 2002-02-23 Jason Diamond <[email protected]>
  58. * XmlNamespaceManager.cs: Initial implementation.
  59. * XmlTextReader.cs: Added support for NamespaceURI property on
  60. elements.
  61. 2002-02-23 Nick Drochak <[email protected]>
  62. * ChangeLog: Add the change log to this directory
  63. * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has
  64. MonoTODO's