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-09-12Some tests for XPathNavigator.Evaluate()Kral Ferch
svn path=/trunk/mcs/; revision=7372
2002-08-23Implementation and tests for XmlAttributeCollection.RemoveAll and ↵Jason Diamond
XmlElement.RemoveAllAttributes courtesy of Matt Hunter <xrkune@tconl.com>. svn path=/trunk/mcs/; revision=6926
2002-08-182002-08-17 Jason Diamond <jason@injektilo.org>Jason Diamond
* XPathNavigator.cs: Added naive (but working) implementation of Matches. svn path=/trunk/mcs/; revision=6714
2002-08-08Added XmlDocument event firing code.Kral Ferch
svn path=/trunk/mcs/; revision=6527
2002-07-12Added some tests for the SelectNodes method.Jason Diamond
svn path=/trunk/mcs/; revision=5717
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-05-052002-05-05 Nick Drochak <ndrochak@gol.com>Nick Drochak
* AllTests.cs * NameTableTests.cs * TheTests.cs * XPathScannerTests.cs * XmlAttributeTests.cs * XmlCDataSectionTests.cs * XmlCommentTests.cs * XmlDeclarationTests.cs * XmlDocumentTests.cs * XmlDocumentTypeTests.cs * XmlElementTests.cs * XmlNamespaceManagerTests.cs * XmlNodeListTests.cs * XmlProcessingInstructionTests.cs * XmlSignificantWhitespaceTests.cs * XmlTextReaderTests.cs * XmlTextTests.cs * XmlTextWriterTests.cs * XmlWhiteSpaceTests.cs: Use same namespace style as corlib tests. Changed Ximian.Mono.Tests to MonoTests.System.Xml svn path=/trunk/mcs/; revision=4300
2002-04-09InnerXml, OuterXml, WriteContentTo, and WriteTo for most XmlNode derivatives.Kral Ferch
svn path=/trunk/mcs/; revision=3704
2002-03-27Removed XPathScannerTests from the project since VS.NET wasn't happy with ↵Jason Diamond
it. Added the tests separately to the .build file so that I can still work. svn path=/trunk/mcs/; revision=3380
2002-03-272002-03-26 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDocument.cs (CreateDocumentType): Implemented. * XmlNode.cs (Value): Implemented. * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new test, XmlDocumentTypeTests. * XmlDocumentTypeTests.cs: New testsuite for XmlDocumentType class. svn path=/trunk/mcs/; revision=3378
2002-03-26Added XPathScanner and Tests.Jason Diamond
svn path=/trunk/mcs/; revision=3342
2002-03-262002-03-25 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDeclaration.cs: Rewrote the class, fixed formatting, added missing properties (InnerText, Value). * XmlDocument.cs (CreateXmlDeclaration): Implemented. * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new test, XmlDeclarationTests. * XmlDeclarationTests.cs: Added new test for XmlDeclaration class. svn path=/trunk/mcs/; revision=3338
2002-03-222002-03-22 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlDocument.cs (CreateSignificantWhitespace): Implemented. * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new files. * XmlSignificantWhitespaceTests.cs: Added to CVS. svn path=/trunk/mcs/; revision=3268
2002-03-222002-03-22 Duncan Mak <duncan@ximian.com>Duncan Mak
* XmlElement.cs: Reformatted. (CloneNode) Corrected. * XmlDocument.cs (CreateWhitespace): Implemented. * XmlAttribute.cs (CloneNode): Changed the child's CloneNode to true, because Attributes have ChildNodes. 2002-03-22 Duncan Mak <duncan@ximian.com> * AllTests.cs: * Microsoft.Test.csproj: * Mono.Test.csproj: Updated to include new files. * XmlCDataSectionTests.cs: Added to CVS. * XmlCommentTests.cs: Added to CVS. hanks to Kral for helping me setup a testing environment on VS.NET. * XmlElementTests.cs: Reformatted. (TestCloneNode): Added. * XmlWhiteSpaceTests.cs: Added to CVS. svn path=/trunk/mcs/; revision=3267
2002-03-14start of XmlTextWriterKral Ferch
svn path=/trunk/mcs/; revision=3101
2002-03-08XmlNodeListChildren implements XmlNodeList for XmlNode.ChildNodesKral Ferch
svn path=/trunk/mcs/; revision=2987
2002-03-03Implemented all of the CreateElement and CreateAttribute methods.Jason Diamond
svn path=/trunk/mcs/; revision=2849
2002-03-03In Test:Mike Kestner
2002-03-02 Mike Kestner <mkestner@speakeasy.net> * XmlAttributeTests.cs : New test suite for attrs. * AllTests.cs : Add the attr suite. In System.Xml: 2002-03-02 Mike Kestner <mkestner@speakeasy.net> * XmlAttribute.cs : Using fix. * XmlDocument.cs (CreateAttribute(String)): Implement. svn path=/trunk/mcs/; revision=2847
2002-02-27Test for System.Xml.NameTable.Duncan Mak
svn path=/trunk/mcs/; revision=2698
2002-02-26Added simple test for XmlDocument. Made many fixes to existing code to get ↵Jason Diamond
the test to pass. svn path=/trunk/mcs/; revision=2649
2002-02-23Initial implementation of XmlNamespaceManager. Added support for ↵Jason Diamond
NamespaceURI property to XmlTextReader for elements. svn path=/trunk/mcs/; revision=2609
2001-10-08Fixed syntax errorsDick Porter
svn path=/trunk/mcs/; revision=1119
2001-10-07Add AllTests file from MarioMiguel de Icaza
svn path=/trunk/mcs/; revision=1115