2002-03-02 Jason Diamond * XmlTextReader.cs: Implemented MoveToNextAttribute(). * XmlDocument.cs: Reformatted. Adding missing methods and MonoTODO attributes. Create attribute nodes while loading. Implemented Load(string) and CreateTextNode(). * XmlCharacterData.cs, XmlText.cs: Re-implemented. * XmlCDataSection.cs, XmlComment.cs: Call correct constructor in XmlCharacterData. * XmlNamedNodeMap.cs, XmlAttributeCollection.cs: Stubbed out. 2002-03-02 Mike Kestner * XmlAttribute.cs : Using fix. * XmlDocument.cs (CreateAttribute(String)): Implement. 2002-03-02 Jason Diamond * XmlNamespaceManager.cs: Atomize prefixes and namespaces strings in the name table. 2002-02-28 Jason Diamond * XmlDocument.cs, XmlNode.cs: Initial implementation of LoadXml courtesy of Kral Ferch . 2002-02-28 Jason Diamond * XmlException.cs, XmlReader.cs, XmlTextReader.cs: Reformatted, added missing members and MonoTODO attributes. * XmlTextReader.cs: Throw XmlException instead of System.Exception. 2002-02-27 Jason Diamond * XmlElement.cs: Reformatted, added missing members and MonoTODO attributes. 2002-02-26 Duncan Mak * XmlCDataSection.cs: Initial implementation. * NameTable.cs: Fixed the whole thing. Wrote a NUnit test to test it out. This should (hopefully) be correct. 2002-02-26 Jason Diamond * XmlTextReader.cs: Apparently Microsoft's implementation treats namespace declarations as attributes so we do now, too. * XmlNamespaceManager.cs: HasNamespace fixed so that it only checks the current scope. 2002-02-26 Duncan Mak * XmlDocumentType.cs: Added a few hacks here and there to temporarily fix the "I broke the build issue". 2002-02-25 Jason Diamond * XmlDocument.cs, XmlElement.cs, XmlNode.xs, XmlNodeList.cs, XmlNodeListAsArrayList.cs: Multiple fixes necessary to get simple test to pass. The existing code is really shitty so I'll probably start writing tests and refactoring before much else can get done. 2002-02-25 Duncan Mak * NameTable.cs: Implemented. * XmlDeclaration.cs: It should inherit from XmlLinkedNode, not XmlNode. 2002-02-24 Duncan Mak * XmlNodeOrder.cs: Added to CVS. * XmlQualifiedName.cs: Fixed a warning from Equals (). * XmlTokenizedType.cs: Added to CVS. * XmlUrlResolver.cs: Added to CVS with one TODO task. 2002-02-23 Duncan Mak * XmlQualifiedName.cs: Fixed ToString () and added the operators (== and !=). 2002-02-23 Jason Diamond * XmlTextReader.cs: Added support for qualified attributes. 2002-02-23 Jason Diamond * XmlNamespaceManager.cs: Initial implementation. * XmlTextReader.cs: Added support for NamespaceURI property on elements. 2002-02-23 Nick Drochak * ChangeLog: Add the change log to this directory * XmlQualifiedName.cs: Fixed compile errors so it would build. Still has MonoTODO's