2003-02-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / ChangeLog
index 593efdd8861858b78b433900cc3ae7b5675c330e..91c957cfea7ffcefbc50eca3da3eff9946a168a0 100644 (file)
@@ -1,3 +1,60 @@
+2003-02-16  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlQualifiedName.cs : fixed GetHashCode() to avoid null reference
+       * XmlTextReader.cs : fixed ReadAttributeValue() to handle 
+               entity reference, and some refactory.
+
+2003-02-16  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlUrlResolver.cs : WebClient.Credentials was not implemented yet.
+
+2003-02-16  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlInputStream.cs : added (also contains internal XmlStreamReader).
+       * XmlDocument.cs : Load () now can specify URL using XmlUrlResolver,
+               and can read non-UTF-8 stream.
+       * XmlTextReader.cs : related to above stream fix.
+       * XmlUrlResolver.cs : implemented GetEntity ().
+
+2003-02-03  Gonzalo Paniagua Javier <gonzalo@ximian.com>
+
+       * XmlTextWriter.cs: implemented WriteRaw (char[], int, int).
+
+2003-02-02  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlTextReader.cs : implemented QuoteChar.
+
+2003-01-26  Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
+
+       * XmlNode.cs : implemented ReplaceChild.
+         removed DocElem checking at InsertBefore.
+       * XmlNodeReader.cs : fixed ReadString and Read for correct node info.
+       * XmlText.cs : implemented CloneNode and SplitText.
+
+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).