X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FSystem.Xml%2FChangeLog;h=593efdd8861858b78b433900cc3ae7b5675c330e;hb=2d7a230c66956b5c1d582513201054c1f4659650;hp=f3fcaccd9b56f8c58baaa5de92eb140958c07663;hpb=f00c428bbe9dd976f1c36ababcd2bb406d2bca33;p=mono.git diff --git a/mcs/class/System.XML/System.Xml/ChangeLog b/mcs/class/System.XML/System.Xml/ChangeLog index f3fcaccd9b5..593efdd8861 100644 --- a/mcs/class/System.XML/System.Xml/ChangeLog +++ b/mcs/class/System.XML/System.Xml/ChangeLog @@ -1,3 +1,67 @@ +2003-01-18 Atsushi Enomoto + + * XmlWriter.cs: modified WriteStartElement (see test for detail). + Added WriteNode. + +2003-01-13 Ville Palo + + * XmlDocument.cs: Added CheckName () method to check names validity. + +2003-01-11 Gonzalo Paniagua Javier + + * XmlTextReader.cs: + (ReadOuterXml): use Depth property which return elementDepth, not depth. + +2003-01-11 Atsushi Enomoto + + * XmlElement.cs : (by ville) XmlElement.set_InnerText event bugfix. + * XmlTextReader.cs : some fix for ReadOuterXml(). + +2003-01-08 Atsushi Enomoto + + * XmlTextReader.cs : bugfix for attributes related to creation of + XmlAttribute *node*. + +2003-01-08 Atsushi Enomoto + + * XmlTextReader.cs : bugfix for attribute values which have entity + references. + +2002-12-28 Ville Palo + + * XmlDocument.cs: XmlTextWriter.Formatting == Indented when + calling Save () -methods. + +2002-12-28 Atsushi Enomoto + + * XmlNodeReader.cs : primitive reading implementation. + +2002-12-28 Atsushi Enomoto + + * XmlElement.cs : quick fix for the incomplete patch of #35308 below. + +2002-12-28 Atsushi Enomoto + + * 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 + + * 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 + + * XmlDocument.cs: patch by Ville (fixed default PreserveWhitespace) + 2002-12-21 Atsushi Enomoto * XmlElement.cs, XmlTextWriter.cs, XmlWriter.cs: