X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2FSystem.XML%2FSystem.Xml%2FChangeLog;h=4470ae48827e9e39dc0a5823984d1fc5fd830e2a;hb=b5fc6244058b4ac23624a6013a3e8082b39a1353;hp=caff82d1755c1fdcbcc3576e236457cbe9e14486;hpb=f9bb1602bd2d48bada8bacfe4c6dcf71a89ac56e;p=mono.git diff --git a/mcs/class/System.XML/System.Xml/ChangeLog b/mcs/class/System.XML/System.Xml/ChangeLog index caff82d1755..4470ae48827 100644 --- a/mcs/class/System.XML/System.Xml/ChangeLog +++ b/mcs/class/System.XML/System.Xml/ChangeLog @@ -1,3 +1,655 @@ +2002-10-23 Gonzalo Paniagua Javier + + * XmlTextReader.cs: don't increment depth for entity references. + +2002-10-22 Tim Haynes + + * - Fixed the duplication of xmlns:xx = yy when serializing the + XML for serialization + + Fixed the unnecessary parsing/serializing when adding assemblies + for serialization + + Avoided setting the XmlNode.InnerXml property + (as it's not implemented) + + Fixed the usage/implementation of + XmlElement.GetElementsByTagName() + +2002-10-21 Duncan Mak + + * XmlDocument.cs: + * XmlElement.cs: + * XmlNode.cs: + * XmlTextReader.cs: Implementation for XmlNode.InnerXml from + Atsushi Enomoto . + +2002-10-18 Duncan Mak + + * XmlDocument.cs: Applied a patch by Atsushi Enomoto + . + +2002-10-12 A.Enomoto + + * XmlDocument.cs (ImportNode): Implemented + +2002-10-06 Gonzalo Paniagua Javier + + * XmlDocument.cs: one more Load method implemented. + * XmlTextReader.cs: Depth now works. + +2002-09-22 Gonzalo Paniagua Javier + + * XmlConvert.cs: IsInvalid is now internal. + * XmlNamespaceManager.cs: implemented RemoveNamespace + * XmlTextReader.cs: return BaseURI and Encoding from the parser. + * XmlTextWriter.cs: implemented WriteName and WriteNmToken. + +2002-09-19 Matt Hunter + + * XmlElement.cs: Implementing SetAttributeNode(localName,namespaceURI) + * XmlAttributeCollection.cs: Implemented Append (XmlAttribute) + +2002-09-19 Gonzalo Paniagua Javier + + * XmlConvert.cs: finished implementation. + * XmlTextReader.cs: fixed #30239. + * XmlTextWriter.cs: fixed #30240. + +2002-09-15 Gonzalo Paniagua Javier + + * XmlTextReader.cs: line and position begin with 1. + +2002-09-13 Gonzalo Paniagua Javier + + * XmlException.cs: added a new internal constructor for IXmlLineInfo + and output line and position info in Message. + + * XmlReader.cs: implemented missing bits. + +2002-09-12 Piers Haken + + * XmlDocumentNavigator.cs: implement MoveToId() + +2002-09-05 Gonzalo Paniagua Javier + + * XmlTextWriter.cs: fixed bug #29886. + +2002-08-26 Ravi Pratap + + + * XmlAttribute.cs (InnerText): Implement getting this property. + + * XmlNode.cs (InnerText): Ensure that we append only values of + text nodes. + +2002-08-26 Gonzalo Paniagua Javier + + * XmlWriter.cs: made ws and namespaceManager protected. mcs has a bug + that allowed compiling this. + [ FIXME: filed bug #29435. mcs should have failed on this ] + +2002-08-25 Tim Coleman + * XmlNode.cs: + Change CreateNavigator to not be virtual. + * XmlElement.cs: + Add set_Prefix and InnerText accessors. + * XmlEntityReference.cs: + Add set_Value accessor. + * XmlTextWriter.cs: + Make objects which should be private private. + * XmlWriter.cs: + Remove WriteStartElementInternal abstract definition. + * XmlValidatingReader.cs: + New stubs added. + +2002-08-22 Jason Diamond + + * XmlAttributeCollection.cs, XmlElement.cs: Implementation of RemoveAll + and RemoveAllAttributes courtesy of Matt Hunter . + +2002-08-22 Jason Diamond + + * XmlElement.cs: Correction to previous GetElementsByTagName patch + courtesy of Matt Hunter . + +2002-08-22 Jason Diamond + + * XmlDocument.cs, XmlElement.cs: Added implementation of namepsace + qualified GetElementsByTagName courtesy of Matt Hunter + . + +2002-08-19 Jason Diamond + + * XmlDocument.cs, XmlElement.cs: Added implementation of + GetElementsByTagName courtesy of Matt Hunter . + +2002-08-16 Jason Diamond + + * XmlElement.cs: Fixed writing out qualified elements courtesy of + Marcus Bürgel . + +2002-08-13 Tim Coleman + * XmlTextWriter.cs: + Partial implementation of WriteQualifiedName (). + +2002-08-07 Kral Ferch + * XmlCharacterData.cs: Implemented AppendData(), DeleteData(), + InsertData(), and ReplaceData(). These methods fire the + NodeChanging and NodeChanged events. + + * XmlDocument.cs: Fixed bugs in onNodeChanged() and onNodeChanging(). + + * XmlNode.cs: AppendChild() fires NodeInserting and NodeInserted events. + RemoveAll() and RemoveChild() fire NodeRemoving and NodeRemoved events. + +2002-08-03 Tim Coleman + * XmlNamespaceManager.cs: + .Net allows the empty namespace to be redefined + at a later point, but the current implementation + did not. This fixes a hashtable conflict. + +2002-07-26 Tim Coleman + * XmlTextWriter.cs: + When given a textwriter, check to see if it has a + null encoding. This was being done for other inputs + than a textwriter. + +Wed Jul 24 13:16:19 CEST 2002 Paolo Molaro + + * XmlTextReader.cs: rough line/column support. + +2002-07-23 Duncan Mak + + * XmlConvert.cs: Implement the ToDateTime method. ToDateTime + (string, string []) is particularly strange. + + * XmlException.cs: Remember to call the base serialization + constructor. + + * XmlNodeReader.cs: Keep a new variable to store the Depth. + +2002-07-14 Jason Diamond + + * XmlAttribute.cs: Removed ownerElement field since we can reuse + parentNode field. + + * XmlDocumentNavigator.cs: MoveToParent now moves to the OwnerElement + if the current node is an attribute. + + * XmlElement.cs: SetAttributeNode now sets the new attribute's + owner element. + +2002-07-12 Jason Diamond + + * XmlDocument.cs: If null was passed in for prefix or namespaceURI when + creating an element, use String.Empty instead. + +2002-07-12 Piers Haken + + * XmlAttributeCollection.cs: implement some ItemOf indexers + * XmlNamedNodeMap.cs: add internal 'Nodes' accessor for the nodeList field + * XmlNode.cs: SelectNodes: return empty XmlNodeList, not null + +2002-07-06 Ajay kumar Dwivedi + + * XmlTextWriter: Fixed Indentation. IndentationOverridden should + not be set when inside a attribute. + +2002-07-06 Ajay kumar Dwivedi + + * XmlTextWriter: In WriteStartElement, if namespace is null and + prefix is null|empty do not write out xmlns="" + + * XmlWriter: WriteStartElement calls the virtual method with null + argument instead of empty string. + +2002-07-05 Gonzalo Paniagua Javier + + * XmlTextReader.cs: implemented .ctor (Stream). + +2002-06-26 Duncan Mak + + * XmlNodeReader.cs: Implementation of most of the properties, and + some of the related methods. + +2002-06-23 Piers Haken + + * 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 + + * 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 + + * XmlTextReader.cs: HasLineInfo returns false instead of throwing an + Exception. + +2002-06-14 Duncan Mak + + * XmlConvert.cs: Added CLSCompliant attributes to methods. + +2002-06-12 Duncan Mak + + * XmlCharacterData.cs (Value): Throw an ArgumentException in the + set block if the node is read-only. + +2002-06-10 Ajay kumar Dwivedi + * XmlConstruct.cs : New Internal class with Helper methods for + Checking XmlConstructs + * XmlConvert.cs: Implemented most of the methods + +2002-06-08 Duncan Mak + + * 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 + + * 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 + + * XmlDocument.cs: Implement the Save methods. + +2002-05-08 Mike Kestner + + * XmlNamedNodeMap.cs (SetNamedItem): Fixed a copy/paste bug. + +2002-04-28 Duncan Mak + + * XmlSignificantWhitespace.cs (Value): + * XmlWhitespace.cs (Value): Added MonoTODO to the 'set' + block. Added new private method, IsValidWhitespaceChar, for + checking. + +2002-04-16 Duncan Mak + + * XmlParserContext.cs (NameTable): Fixed a typo in the set block. + +2002-04-12 Duncan Mak + + * 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 + + * XmlNodeReader.cs: Initial stubs for the class. + +2002-04-08 Kral Ferch + + * 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 + + * 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 + + * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement. + +2002-03-31 Kral Ferch + + * 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 + + * XmlTextWriter.cs: Some tweaks for WriteAttibuteString + in different states (no open start element, in WriteState.Content mode). + +2002-03-29 Kral Ferch + + * XmlTextWriter.cs: XmlLang and XmlSpace properties + and WriteWhitespace. + + * XmlTextWriterOpenElement.cs: scope support for XmlLang + and XmlSpace. + +2002-03-29 Kral Ferch + + * XmlTextWriter.cs: Working on Attribute methods. + + * XmlWriter.cs: Working on Attribute methods. + +2002-03-28 Duncan Mak + + * XmlDocument.cs (CreateWhitespace): + (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray + method. + + * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute. + +2002-03-26 Duncan Mak + + * 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 + + * XmlDeclaration.cs: Rewrote the class, fixed formatting, added + missing properties (InnerText, Value). + + * XmlDocument.cs (CreateXmlDeclaration): Implemented. + +2002-03-23 Kral Ferch + + * XmlTextWriter.cs: Impls for BaseStream and + Namespaces and WriteState. + + * XmlWriter.cs: WriteState and WriteStartElementInternal. + +2002-03-23 Kral Ferch + + * XmlNodeListChildren.cs: made class internal + instead of public. Shouldn't be visible outside + of System.Xml. + + * XmlTextWriter.cs: Implementations for Formatting, + IndentChar, Indenting, QuoteChar, WriteStartDocument(standalone). + Suppresses encoding on xml declaration if null stream passed in. + Formats output including suppressing indentation for elements in + mixed content mode. + + * XmlTextWriterOpenElement.cs: Initial checkin. + XmlTextWriter uses stack of these objects to track + state. + +2002-03-22 Mike Kestner + + * XmlElement.cs: impl HasAttribute(string name). + +2002-03-22 Duncan Mak + + * XmlElement.cs: Reformatted. + (CloneNode) Corrected. + + * XmlDocument.cs (CreateWhitespace): + (CreateSignificantWhitespace): Implemented. + + * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to + true, because Attributes have ChildNodes. + +2002-03-21 Kral Ferch + + * XmlTextWriter.cs: WriteStartDocument tracks state, writes out + xml declaration along with encoding. WriteEndElement throws + exception if no WriteStartElement exists. + +2002-03-20 Duncan Mak + + * XmlEntityReference.cs (CloneNode): Implemented. + + * XmlException.cs (Message): Implemented. We need to cache the + message string because SystemException doesn't expose 'message' + from Exception. + + * XmlText.cs (Value): Added in the missing Value property. + +2002-03-20 Duncan Mak + + * XmlAttribute.cs (CloneNode): Implemented. + + * XmlDocumentFragment.cs (CloneNode): Implemented. + + * XmlElement.cs (CloneNode): Implemented. + +2002-03-19 Duncan Mak + + * XmlNotation.cs: Added to CVS. + + * XmlAttribute.cs (CloneNode): First crack at the CloneNode method. + + * XmlCDataSection.cs (CloneNode): Implemented. + + * XmlDocumentFragment.cs: Reformatted and added the missing properties + (InnerXml, OwnerDocument, ParentNode). + (CloneNode): Implemented. + + * XmlSignificantWhitespace.cs (CloneNode): Implemented. + (Value) Implemented the 'get' property. + + * XmlWhitespace.cs (Module): implemented. + +2002-03-19 Jason Diamond + + * XmlDocument.cs: Fixed typo in Load that was duplicating the LocalName + in the prefix. + +2002-03-18 Jason Diamond + + * XmlTextReader.cs: Don't restore properties after reading last + attribute on an element. + + * XmlDocument.cs: Move back to element after reading attributes + so that IsEmptyElement test succeeds. + +2002-03-18 Kral Ferch + + * XmlNamespaceManager.cs: Implemented LookupPrefix. + + * XmlTextWriter.cs: Implemented namespace and prefix support. + +2002-03-18 Kral Ferch + + * XmlTextReader.cs: Restores properties after + reading last attribute on an element. + + * XmlNode.cs: AppendChild sets the parent + on the child. + +2002-03-17 Kral Ferch + + * XmlCDataSection.cs: Formatting, Implementation for WriteTo. + + * XmlComment.cs: Implementations for WriteTo and WriteContentTo. + + * XmlElement.cs: Fixed bug in WriteTo. + + * XmlProcessingInstruction.cs: Formatting. + + * XmlTextWriter.cs: Implementations for Close, WriteCData, WriteComment, + fixes for WriteEndElement, WriteProcessingInstruction. + +2002-03-17 Kral Ferch + + * XmlDocument.cs: Implementations for WriteTo() and WriteContentTo(), + had Load() add PIs to the document, moved onXXX methods to alphabetical + order in the file. + + * XmlElement.cs: Implementations for WriteTo() and WriteContentTo(). + + * XmlNode.cs: Implementations for InnerXml Get and OuterXml. + + * XmlProcessingInstruction.cs: Implementations for WriteTo() and + WriteContentTo(). + + * XmlTextWriter.cs: Implementations for WriteEndElement, + WriteProcessingInstruction, WriteStartElement, and WriteString. + + * XmlWriter.cs: Implemented WriteStartElement() methods. + +2002-03-15 Duncan Mak + + * XmlEntity.cs: Added to CVS. Need to implement BaseURI and + InnerText once I know what they do. + + * XmlDocumentType.cs (XmlDocumentType): Fix the constructor now + that we can properly chain constructors. + (CloneNode): implemented. + (WriteContentTo): Removed MonoTODO attribute as this method has no + effect in this class. + + * XmlProcessingInstruction.cs (Value): Added the missing Set + block. + (InnerText): Added in, but not implemented. + +2002-03-14 Kral Ferch + + * XmlTextWriter.cs: implemented constructors and + WriteCData and WriteComment. + +2002-03-14 Duncan Mak + + * XmlDocument.cs: Moved the NodeChanged EventHandler to its own + file, and updated the callbacks to reflect the change. + (XmlDocument): Added the NameTable constructor. + (NameTable): Also the NameTable property. + + * XmlNodeChangedEventHandler.cs: Added, replacing the version that + was in XmlDocument.cs. It has two arguments now (object, + EventArgs) , instead of one (object). + +2002-03-14 Kral Ferch + + * XmlWriter.cs: Formatting. + + * XmlTextWriter.cs: Initial checkin. + +2002-03-14 Duncan Mak + + * Validation.cs: Removed, replaced by ValidationType.cs. + + * ValidationType.cs: Added. + +2002-03-13 Duncan Mak + + * XmlException.cs: Made it [Serializable], implemented good ol' + GetObjectData, and the serialization constructor. + + * XmlNamedNodeMap.cs (SetNamedItem): Check for the Name property. + (SetNamedItem): Reverted (added back in) the patch with the + ReadOnly checks. "Don't doubt yourself, my son... you were right!" + + * XmlNamedNodeMap.cs (GetEnumerator): piggyback on the ArrayList implementation. + (GetNamedItem (string, string)): implemented. + (RemoveNamedItem): implemented. + (SetNamedItem): implemented. + +2002-03-12 Kral Ferch + + * XmlAttribute.cs: Moved a method from amongst properties down to + it's alphabetical position in the methods section. + + * XmlNode.cs: Passes in 'this' to XmlNodeList constructor instead of + last linked child. Set XmlNode base class to return false for IsReadOnly(). + Implemented GetEnumerator() and RemoveChild(). + + * XmlNodeListChildren.cs: Now stores the parent instead of the last child. + This is to support the behavior that the Enumerator doesn't become invalid + when changes to the children occur. Flushed out rest of implementation for + MoveNext, Current, and Reset. + +2002-03-12 Duncan Mak + + * XmlCharacterData.cs: Reformatted the properties for better readability. + + * XmlLinkedNode.cs: Removed the awful boxy comments. + + * XmlNamedNodeMap.cs (Count): + (Item): Implemented. Tests will be coming. + + * XmlEntityReference.cs: + * XmlSignificantWhitespace.cs: Implemented these classes except for + the Clone, WriteContentTo and WriteTo methods. Will have to + investigate into these later. + +2002-03-11 Duncan Mak + + * IHasXmlNode.cs: Added to CVS. + 2002-03-08 Jason Diamond * XmlParserContext.cs: Added missing constructors and missing Encoding