MoveToAttribute* Fix 'if' brackets.
[mono.git] / mcs / class / System.XML / System.Xml / ChangeLog
index 9451f1c3494a57b523e374661e585793314eb562..6f621e03e68dae5a6c2dd7ce38b537d2f353f69d 100644 (file)
@@ -1,5 +1,140 @@
+2002-04-01  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Impls for WriteEndDocument and WriteFullEndElement.
+       
+2002-03-31  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * 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  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Some tweaks for WriteAttibuteString
+       in different states (no open start element, in WriteState.Content mode).
+       
+2002-03-29  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: XmlLang and XmlSpace properties
+       and WriteWhitespace.
+       
+       * XmlTextWriterOpenElement.cs: scope support for XmlLang
+       and XmlSpace.
+
+2002-03-29  Kral Ferch  <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Working on Attribute methods.
+       
+       * XmlWriter.cs: Working on Attribute methods.
+
+2002-03-28  Duncan Mak  <duncan@ximian.com>
+
+       * XmlDocument.cs (CreateWhitespace):
+       (CreateSignificantWhitespace): Removed extraneous call to the ToCharArray
+       method.
+
+       * XmlSignificantWhitespace.cs (Value): Removed MonoTODO attribute.
+
+2002-03-26  Duncan Mak  <duncan@ximian.com>
+
+       * 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  <duncan@ximian.com>
+
+       * XmlDeclaration.cs: Rewrote the class, fixed formatting, added
+       missing properties (InnerText, Value).
+       
+       * XmlDocument.cs (CreateXmlDeclaration): Implemented.
+
+2002-03-23  Kral Ferch <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: Impls for BaseStream and
+       Namespaces and WriteState.
+       
+       * XmlWriter.cs: WriteState and WriteStartElementInternal.
+
+2002-03-23  Kral Ferch <kral_ferch@hotmail.com>
+
+       * 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  <mkestner@speakeasy.net>
+
+       * XmlElement.cs: impl HasAttribute(string name).
+
+2002-03-22  Duncan Mak  <duncan@ximian.com>
+
+       * 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 <kral_ferch@hotmail.com>
+
+       * XmlTextWriter.cs: WriteStartDocument tracks state, writes out
+       xml declaration along with encoding.  WriteEndElement throws
+       exception if no WriteStartElement exists.
+
+2002-03-20  Duncan Mak  <duncan@ximian.com>
+
+       * 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  <duncan@ximian.com>    
+
+       * XmlAttribute.cs (CloneNode): Implemented.
+
+       * XmlDocumentFragment.cs (CloneNode): Implemented.
+
+       * XmlElement.cs (CloneNode): Implemented.
+
 2002-03-19  Duncan Mak  <duncan@ximian.com>
 
+       * XmlNotation.cs: Added to CVS.
+
        * XmlAttribute.cs (CloneNode): First crack at the CloneNode method.
 
        * XmlCDataSection.cs (CloneNode): Implemented.