2003-02-16 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / class / System.XML / System.Xml / ChangeLog
index bc27005f331ce548abd5e7558367a10f2f2370ae..91c957cfea7ffcefbc50eca3da3eff9946a168a0 100644 (file)
@@ -1,3 +1,94 @@
+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).
+       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.