2003-01-24 Gonzalo Paniagua Javier <gonzalo@ximian.com>
[mono.git] / mcs / class / System.XML / System.Xml / ChangeLog
index 89ad8c7a12d9df23be7354daf096e21fb5308af1..a4f8c502ff3d84acc6ff1a5d8db9bb774fcaafab 100644 (file)
@@ -1,3 +1,87 @@
+2003-01-24  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * XmlCharacterData.cs: added XPathNodeType property.
+
+2003-01-22  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * XmlTextWriter.cs: throw an exception if WriteEndDocument is
+       called without a prior call to WriteStartDocument.
+
+2003-01-21  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlNodeReader.cs : several fix to get more compatible with MS.NET.
+
+2003-01-19  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlNamespaceManager.cs : fundamental change of LookupPrefix to return
+               null when no matching uri.
+       * XmlElement.cs : removed unnecessary xmlns output.
+       * XmlNode.cs : GetPrefixOfNamespace fix along with the change above.
+       * XmlTextWriter.cs : LookupPrefix and WriteStartElementInternal fix 
+               along with the change above, and moved timing of 'xmlns' output 
+               to CloseStartElement.
+       * XmlWriter.cs: modified WriteStartAttribute, same as yesterday.
+
+2003-01-18  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlWriter.cs: modified WriteStartElement (see test for detail).
+       Added WriteNode.
+
+2003-01-13  Ville Palo <vi64pa@koti.soon.fi>
+
+       * XmlDocument.cs: Added CheckName () method to check names validity.
+       
+2003-01-11  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * XmlTextReader.cs:
+       (ReadOuterXml): use Depth property which return elementDepth, not depth.
+
+2003-01-11  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlElement.cs : (by ville) XmlElement.set_InnerText event bugfix.
+       * XmlTextReader.cs : some fix for ReadOuterXml().
+
+2003-01-08  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlTextReader.cs : bugfix for attributes related to creation of 
+         XmlAttribute *node*.
+
+2003-01-08  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlTextReader.cs : bugfix for attribute values which have entity
+         references.
+
+2002-12-28  Ville Palo <vi64pa@koti.soon.fi>
+
+       * XmlDocument.cs: XmlTextWriter.Formatting == Indented when 
+       calling Save () -methods.
+       
+2002-12-28  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlNodeReader.cs : primitive reading implementation.
+
+2002-12-28  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlElement.cs : quick fix for the incomplete patch of #35308 below.
+
+2002-12-28  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlDocument.cs : removed inconsistent line-feed output.
+       * XmlElement.cs, XmlTextWriter.cs :
+               fixed for bugzilla 35308 (default ns output)
+       * XmlWhitespace.cs : limited output only when preserving whitespace.
+
+2002-12-24  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlAttribute.cs, XmlDocument.cs, XmlTextReader.cs:
+               Implemented XmlTextReader.ReadAttributeValue().
+               Added internal ReadAttributeNodeValue().
+               Fixed XmlAttribute.InnerXml to use these methods.
+       
+       * XmlDocument.cs, XmlDocumentFragment.cs, XmlElement.cs, XmlNode.cs:
+               Implemented XmlDocument.ReadNode() and removed ConstructDOM().
+               Other changes are replacing them.
+
 2002-12-24  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
 
        * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace)