Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-07-12Added some tests for the SelectNodes method.Jason Diamond
svn path=/trunk/mcs/; revision=5717
2002-06-232002-06-23 Piers Haken <piersh@friskit.com>Piers Haken
System.Xml: * XmlDocumentNavigator.cs: implement Clone() * XmlElement.cs: remove bogus unimplemented override of InnerText * XmlNode.cs: implment SelectNodes/SelectSingleNode * XmlNodeArrayList.cs: new support class for SelectNodes System.Xml.Xsl: * XsltContext.cs: added 'PreserveWhitespace' abstract method System.Xml.XPath: * XPathNavigator.cs: implement: - Compile - Evaluate - Clone - Select - ToString - some forwarding methods * XPathNodeIterator: implement caching Count * Tokenizer.cs: new XPath tokenizer * Parser.jay: new XPath grammar * Parser.cs: new precompiled XPath grammar * Expression.cs: new XPath expression objects * Iterator.cs: new XPath result/context objects * DefaultContext.cs: new XPath function binding context svn path=/trunk/mcs/; revision=5421
2002-05-27In System.Xml: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. In Test: * XPathNavigatorTests.cs: Added file to directory. * AllTests.cs: Added XPathNavigatorTests to suite. * XmlTextReaderTests.cs: Added test to make sure attributes are ordered like Microsoft's parser does it. svn path=/trunk/mcs/; revision=4971
2002-03-26Added XPathScanner and Tests.Jason Diamond
svn path=/trunk/mcs/; revision=3342
2002-03-23XmlTextWriter formatting, indenting, xml declaration stuff.Kral Ferch
svn path=/trunk/mcs/; revision=3277
2002-03-15keeping solution up to date.Kral Ferch
svn path=/trunk/mcs/; revision=3119
2002-03-14start of XmlTextWriterKral Ferch
svn path=/trunk/mcs/; revision=3101
2002-03-08Removed some enumerations that might have been in Beta2 but aren't visible ↵Jason Diamond
anymore. Moved some enumerations from the System.Xml namespace to System.Xml.XPath because that's where they belong (now?). svn path=/trunk/mcs/; revision=2998
2002-03-08XmlNodeListChildren implements XmlNodeList for XmlNode.ChildNodesKral Ferch
svn path=/trunk/mcs/; revision=2987
2002-03-08Stubbed out XPathExpression and XPathNavigator and everything else needed to ↵Jason Diamond
get it to compile. svn path=/trunk/mcs/; revision=2986
2002-03-07Removed redundant code.Jason Diamond
svn path=/trunk/mcs/; revision=2956
2002-03-07rewrote XmlNode with touchups to XmlDocument, XmlElement, and XmlLinkedNodeKral Ferch
svn path=/trunk/mcs/; revision=2954
2002-02-28Solution and project files to help debug System.XML.Jason Diamond
svn path=/trunk/mcs/; revision=2754