2008-05-12 Atsushi Enomoto * XStreamingElement.cs : couple of fixes: - object[] args are params. - Fixed WriteContents(object[],XmlWriter) wrong iteration. - do not write xmldecl when it does not exist (OmitXmlDeclaration). 2008-04-30 Atsushi Enomoto * XElement.cs, XNode.cs : XNode.ReadFrom() should not reuse XElement.Load() which may create wrapper XmlReader. 2008-02-12 Atsushi Enomoto * XElement.cs : Value is rather a value in XPath semantics than the textual xml representation. Fixed bug #360858. 2008-02-11 Atsushi Enomoto * XNodeDocumentOrderComparer.cs : ancestor/descendant comparison was broken for some cases. * Extensions.cs : implemented InDocumentOrder(). 2008-02-11 Atsushi Enomoto * XName.cs : implemented GetObjectData(). It is however incompatible with .NET (yet?). * XNodeNavigator.cs : SchemaInfo is null. 2008-02-11 Atsushi Enomoto * XStreamingElement.cs : it was almost already implemented. * XElement.cs : finish .ctor(XStreamingElement). 2008-02-11 Atsushi Enomoto * XNode.cs, XElement.cs, XStreamingElement.cs, XContainer.cs, XUtil.cs : one-object to one-XNode conversion is wrong. It could be one-or-more nodes (i.e. when object is IEnumerable). 2008-02-11 Atsushi Enomoto * XNamespace.cs : make Get() and GetName() table-based. 2008-02-11 Atsushi Enomoto * XNodeNavigator.cs : MoveToId() is not supported in this class. * XElement.cs : allow DTD by default. 2008-02-11 Atsushi Enomoto * XNode.cs XElement.cs XObject.cs XDocument.cs XContainer.cs : support LoadOptions.SetLineInfo and LoadOptions.SetBaseUri. 2008-02-11 Atsushi Enomoto * XNodeNavigator.cs : oops, MoveToNext() always returned false. 2008-02-11 Miguel de Icaza * XAttribute.cs, XElement.cs: typecasting operators that take values that can be null (nullable types and string) should not throw an exception if the XAttribute is null, but return null instead. * Added awesome test suite using awesome C-x ( C-x ) C-x e based code generation. 2008-02-10 Atsushi Enomoto * XElement.cs : .ctor(XName,object) was trying to set args as its content, not as its own fields. * XNodeWriter.cs : check null ns and replace it with "". Now that IsEmpty is true, set IsEmpty as false explicitly when WriteFullEndElement() is called. 2008-02-09 Miguel de Icaza * XNamespace.cs: implement. 2008-01-30 Atsushi Enomoto * XNodeReader.cs : when it is created from non-document XNode, do not go beyond the source node. Fixed bug #356522 (the third case). 2008-01-29 Atsushi Enomoto * XNodeReader.cs : NodeType should return None at Initial state. Fixed bug #356522. 2008-01-29 Atsushi Enomoto * XNodeReader.cs : when created from non-document node, the first call to Read() should not move the node to its first child. 2008-01-29 Atsushi Enomoto * XNodeReader.cs : Probably fixed (reopened) bug #356522. NamespaceURI for "xmlns" attribute was "", which should be http://www.w3.org/2000/xmlns/ (in XAttribute its namespace is ""). 2008-01-29 Atsushi Enomoto * XElement.cs, XNamespace.cs, XNodeNavigator.cs, XAttribute.cs, XNodeReader.cs, XName.cs, XNodeWriter.cs : XNamespace.Blank -> XNamespace.None (and .None is implemented.) 2008-01-28 Atsushi Enomoto * XNodeReader.cs : Fixed bug #356522. Attribute name retrieval was wrong. 2008-01-26 Atsushi Enomoto * XNodeReader.cs : fixed GetAttribute() that wrongly resulted in returning "" instead of null. Fixed bug #335975. 2007-11-27 Atsushi Enomoto * XStreamingElement.cs : implement some members. 2007-11-23 Marek Safar * XElement.cs, XNamespace.cs, XStreamingElement.cs, XObject.cs, XDocument.cs: API update. * XObjectChangeEventHandler.cs: Removed. 2007-10-26 Atsushi Enomoto * XNode.cs : use ConformanceLevel.Auto for ToString(). Fixed bug #336927. 2007-10-26 Atsushi Enomoto * XElement.cs, XAttribute.cs : implemented missing explicit operators. * XNamespace.cs : Blank is not public anymore. 2007-08-26 Marek Safar * XElement.cs : Implemented explicit operators. 2007-05-08 Atsushi Enomoto * XNamespace.cs : added missing implicit operator. 2007-05-06 Atsushi Enomoto * XNodeNavigator.cs : implemented XPathNavigator (untested!) 2007-05-06 Atsushi Enomoto * XContainer.cs XNodeWriter.cs : implemented CreateWriter(). * XElement.cs : when writing default xmlns attribute, namespace URI should be w3c xmlns URI (unlike blank in XLinq's context). 2007-05-06 Atsushi Enomoto * XNode.cs XNodeReader.cs : implemented XNode.CreateReader(). * XDeclaration.cs : removed extra code. * XElement.cs : support explicit IsEmpty value (like XmlElement). * XProcessingInstruction.cs : null check. 2007-05-06 Atsushi Enomoto * XElement.cs : implemented namespace retrieval, and ReplaceAttributes(). 2007-05-05 Atsushi Enomoto * XNodeDocumentOrderComparer.cs : implemented. * XObject.cs : Owner is internally referenced now. 2007-05-05 Atsushi Enomoto * XNodeEqualityComparer.cs : implemented. 2007-05-05 Atsushi Enomoto * XNode.cs XDocument.cs XElement.cs XContainer.cs XUtil.cs : added members for schema support. Shrink object array so that sequential strings are concatenated. 2007-05-04 Atsushi Enomoto * XNode.cs : Nodes() is safe for removal of current item. * XElement.cs : Attributes() is safe for ditto. Removed unused code. * XUtil.cs : ToString() handles any type of object. * Extensions.cs : implemented everything but sorter. * XAttribute.cs : SetValue() and ToString() are done. * XNode.cs : set missing tree link info in AddBeforeSelf() and AddAfterSelf(). ReplaceWith() are done. 2007-05-04 Atsushi Enomoto * XNode.cs XElement.cs XAttribute.cs XObject.cs XContainer.cs : Attribute support. Fixed Document property. 2007-05-03 Atsushi Enomoto * XNode.cs XElement.cs XDocument.cs XContainer.cs : some basic tree implementation. Removed list-based code. Fixed erroneous reader settings. * XDeclaration.cs : removed extra space in ToString(). * XNamespace.cs : added operator overloads. * XName.cs : implemented ToString(). 2007-05-03 Atsushi Enomoto yuck, I was updating things based on March CTP, not Beta1 ... * LoadOptions.cs SaveOptions.cs XStreamingElement.cs : new missing files. * XNode.cs XDeclaration.cs XElement.cs XObject.cs XDocument.cs XDocumentType.cs XContainer.cs : thus, updated again. * XName.cs XNamespace.cs : updates, plus some implementation. 2007-05-02 Atsushi Enomoto * XText.cs XNode.cs XDeclaration.cs XElement.cs XObjectChangeEventArgs.cs XNodeEqualityComparer.cs XComment.cs XObject.cs XNodeDocumentOrderComparer.cs XCData.cs XObjectChange.cs XObjectChangeEventHandler.cs XDocument.cs XProcessingInstruction.cs XDocumentType.cs XContainer.cs : new files (split from System.Xml.Linq.cs). * System.Xml.XLinq.cs : removed old file. * XAttribute.cs Extensions.cs XIterators.cs XNamespace.cs : updated to Orcas beta1 API. The entire code just does not work. The API updates are mostly for testing compilers. 2007-02-28 Atsushi Enomoto * XElementSequence.cs, Extensions.cs : renamed former to latter. 2007-02-28 Atsushi Enomoto * XElementSequence.cs, Makefile : build fix for recent gmcs updates, and some more implementation. 2007-02-03 Atsushi Enomoto * System.Xml.XLinq.cs, XName.cs : a few updates from years ago. * XNamespace.cs : new file. not correct at all for now. 2007-02-03 Atsushi Enomoto * XAttribute.cs, System.Xml.XLinq.cs, XIterators.cs, XUtil.cs, XName.cs, XElementSequence.cs: namespaces have chanced as well. 2006-02-11 Atsushi Enomoto * XElementSequence.cs : implemented (not sure if it works). * XName.cs : strict null comparison. * XIterators.cs : (XFilterIterator) check attribute XName as well. * System.Xml.XLinq.cs : solved FIXMEs. 2005-09-20 Atsushi Enomoto * XAttribute.cs, XIterators.cs, XName.cs, XElementSequence.cs, System.Xml.XLinq.cs : Minimum implementation to run ms XLinqIntro.