2002-07-05 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml / ChangeLog
index 18a2ac712a7af520c108d97cbc7a0e67aa9f543f..51b7e65868187774729725f4262f7126e356ff21 100644 (file)
@@ -1,3 +1,223 @@
+2002-07-05  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * XmlTextReader.cs: implemented .ctor (Stream).
+
+2002-06-26  Duncan Mak  <duncan@ximian.com>
+
+       * XmlNodeReader.cs: Implementation of most of the properties, and
+       some of the related methods. 
+
+2002-06-23  Piers Haken <piersh@friskit.com>
+       
+       * XmlDocumentNavigator.cs: implement Clone()
+       * XmlElement.cs: remove bogus unimplemented override of InnerText
+       * XmlNode.cs: implment SelectNodes/SelectSingleNode
+       * XmlNodeArrayList.cs: new support class for SelectNodes
+
+2002-06-21  Ajay kumar Dwivedi <adwiv@yahoo.com>
+       
+       * XmlQualifiedName: Name and Namespaces are never null. If null is passed
+               to the constructor, set them to empty strings.
+               Fixed the Operators.
+       
+2002-06-18  Ajay kumar Dwivedi <adwiv@yahoo.com>
+       
+       * XmlTextReader.cs: HasLineInfo returns false instead of throwing an
+       Exception.
+
+2002-06-14  Duncan Mak  <duncan@ximian.com>
+
+       * XmlConvert.cs: Added CLSCompliant attributes to methods.
+       
+2002-06-12  Duncan Mak  <duncan@ximian.com>
+
+       * XmlCharacterData.cs (Value): Throw an ArgumentException in the
+       set block if the node is read-only.
+
+2002-06-10  Ajay kumar Dwivedi <adwiv@yahoo.com>
+       * XmlConstruct.cs : New Internal class with Helper methods for
+       Checking XmlConstructs
+       * XmlConvert.cs: Implemented most of the methods
+
+2002-06-08  Duncan Mak  <duncan@ximian.com>    
+
+       * XmlDocument.cs (Load):
+       Added bits to Load (string) for BaseURI support.
+
+       * XmlAttribute.cs (BaseURI): 
+       * XmlDocument.cs (BaseURI): 
+       * XmlEntity.cs (BaseURI): Implemented.
+
+2002-05-27  Jason Diamond  <jason@injektilo.org>
+
+       * XmlDocumentNavigator.cs: Added file to directory.
+
+       * XmlNode.cs (CreateNavigator): Implemented.
+       (InnerText): Implemented.
+
+       * XmlDocument.cs (NamespaceURI, Prefix): Return String.Empty instead of
+       throwing exception.
+       (Load(XmlReader)): Allow for namespace qualified attributes.
+
+       * XmlElement.cs: Implemented GetAttribute(string, string) and both 
+       GetAttributeNode overloads.
+       (SetAttributeNode(XmlAttribute)): Implemented.
+
+       * XmlNamedNodeMap.cs: Fixed copy/paste bugs in GetNamedItem(string, string)
+       and RemoveNamedItem(string, string).
+
+       * XmlLinkedNode.cs (PreviousSibling): Implemented.
+
+       * XmlTextReader.cs: Added code to maintain the order of attributes as 
+       they're parsed. XML doesn't require this but Microsoft's parser does it and
+       matching them makes testing easier so now we have it, too.
+
+2002-05-26  Miguel de Icaza  <miguel@ximian.com>
+
+       * XmlDocument.cs: Implement the Save methods.
+
+2002-05-08  Mike Kestner  <mkestner@speakeasy.net>
+
+       * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug.
+
+2002-04-28  Duncan Mak  <duncan@ximian.com>
+
+       * XmlSignificantWhitespace.cs (Value):
+       * XmlWhitespace.cs (Value): Added MonoTODO to the 'set'
+       block. Added new private method, IsValidWhitespaceChar, for
+       checking.
+
+2002-04-16  Duncan Mak  <duncan@ximian.com>
+
+       * XmlParserContext.cs (NameTable): Fixed a typo in the set block.
+
+2002-04-12  Duncan Mak  <duncan@ximian.com>
+
+       * XmlAttribute.cs (Prefix): Added preliminary code for set block,
+       added comment on work that needs to be done here. A new MonoTODO item. 
+
+       * XmlDocument.cs (ctor): Corrected constructor signature, changed
+       parameter from 'NameTable' to 'XmlNameTable'.
+
+       * XmlDocumentFragment.cs (InnerXml): Added missing set block.
+
+       * XmlCaseOrder.cs: Moved to System.Xml.XPath.
+
+2002-04-10  Duncan Mak  <duncan@ximian.com>
+
+       * XmlNodeReader.cs: Initial stubs for the class.
+
+2002-04-08  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlAttributes.cs: InnerXml getter, WriteContentTo, and WriteTo
+       implementations.
+       
+       * XmlDeclaration.cs: WriteTo implementation.
+       
+       * XmlDocument.cs: InnerXml getter implementation.
+       
+       * XmlElement.cs: InnerXml getter implementation.
+
+       * XmlNode.cs: Removed MonoTODO attrib on OuterXml.
+       
+       * XmlSignificantWhitespace.cs: WriteTo implementation.
+       
+       * XmlText.cs: WriteContentTo and WriteTo implementation.
+       
+       * XmlTextWriter.cs: WriteRaw implementation.
+       
+       * XmlWhitespace.cs: WriteContentTo and WriteTo implementations.
+
+2002-04-05  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlAttributes.cs: Added reminder MonoTODO to set NamespaceURI
+       if prefix in constructor is one of the default ones.
+       
+       * XmlCharacterData.cs: Returns String.Empty for Value and Data
+       even when constructed with null.
+       
+       * XmlDeclaration.cs: Value doesn't put encoding or standalone
+       in if they are empty.
+       
+       * XmlDocument.cs: Implemented CreateNode methods and this caused
+       the changes in the other files in this checkin.
+       
+       * XmlProcessingInstruction.cs: Returns String.Empty for Value and Data
+       even when constructed with null.
+       
+       * XmlWhitespace.cs: Changed Value 'get' to return Data.
+
+2002-04-01  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
+       
+2002-03-31  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Impls for LookupPrefix, WriteBase64,
+       and WriteCharEntity.
+       
+       * XmlWrite.cs:  Fixed bug where attribute namespace decl
+       was pushing a scope onto the namespace manager when it shouldn't
+       have been.
+       
+2002-03-31  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
+       in different states (no open start element, in WriteState.Content mode).
+       
+2002-03-29  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: XmlLang and XmlSpace properties
+       and WriteWhitespace.
+       
+       * XmlTextWriterOpenElement.cs: scope support for XmlLang
+       and XmlSpace.
+
+2002-03-29  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Working on Attribute methods.
+       
+       * XmlWriter.cs: Working on Attribute methods.
+
+2002-03-28  Duncan Mak  <duncan@ximian.com>
+
+       * XmlDocument.cs (CreateWhitespace):
+       (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
+       method.
+
+       * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
+
+2002-03-26  Duncan Mak  <duncan@ximian.com>
+
+       * XmlDocument.cs (CreateDocumentType): Implemented.
+
+       * XmlNode.cs (Value): Implemented.
+
+       * XmlProcessingInstruction.cs (InnerText): Implemented. It works just
+       like XmlCharacterData.
+
+       * XmlDeclaration.cs (CloneNode): 
+       * XmlDocument.cs (CreateXmlDeclaration): Added missing constructor
+       arguments.
+
+       * XmlCharacterData.cs (InnerText): Implemented. Funny that the
+       docs say it is the "The concatenated values of the node and all
+       the children of the node.". I wrote some test programs and
+       couldn't get any of the derived nodes to AppendChild. For now,
+       InnerText == Data == Value.
+       (Substring): Fixed typo.
+
+       * XmlDeclaration.cs (XmlDeclaration): Fixed the constructor parameter signature.
+
+       * XmlImplementation.cs (CreateDocument): Implemented.
+
+2002-03-25  Duncan Mak  <duncan@ximian.com>
+
+       * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
+       missing properties (InnerText, Value).
+       
+       * XmlDocument.cs (CreateXmlDeclaration): Implemented.
+
 2002-03-23  Kral Ferch <kral_ferch@hotmail.com>
 
        * XmlTextWriter.cs: Impls for BaseStream and