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
path: root/mcs
AgeCommit message (Collapse)Author
2003-03-13 * Credited myself in Test/Mono.Directory.LDAP/BindSimpleTest.cs andMartin Willemoes Hansen
Test/Mono.Directory.LDAP/QueryRootDSE.cs svn path=/trunk/mcs/; revision=12474
2003-03-13 * Credited myself in CollectionTest.cs,Martin Willemoes Hansen
ConversionTest.cs and DateAndTimeTest.cs svn path=/trunk/mcs/; revision=12473
2003-03-13 * Removed AllTests.cs and TheTests.csMartin Willemoes Hansen
* NUnit20ified NameTableTests.cs, SelectNodesTests.cs, XmlAttributeCollectionTests.cs, XmlAttributeTests.cs, XmlCDataSectionTests.cs, XmlCharacterDataTests.cs, XmlCommentTests.cs, XmlDeclarationTests.cs, XmlDocumentFragmentTests.cs, XmlDocumentTests.cs, XmlDocumentTypeTests.cs, XmlElementTests.cs, XmlEntityReferenceTests.cs, XmlNamespaceManagerTests.cs, XmlNodeListTests.cs, XmlNodeReaderTests.cs, XmlNodeTests.cs, XmlProcessingInstructionTests.cs, XmlSignificantWhitespaceTests.cs, XmlTextReaderTests.cs, XmlTextTests.cs, XmlTextWriterTests.cs, XmlWhiteSpaceTests.cs, XmlWriterTests.cs, XPathNavigatorEvaluateTests.cs, XPathNavigatorMatchesTests.cs, XPathNavigatorTests.cs, makefile.gnu, System.XML_linux_test.args * Commited Atsushi Eno changes to System.XML_test.build svn path=/trunk/mcs/; revision=12472
2003-03-13* Removed AllTests.cs, System.Configuration.Install/AllTests.csMartin Willemoes Hansen
System.Configuration.Install/ChangeLog * NUnit2ified makefile.gnu, system_configuration_install_linux_test.args, * Added System.Configuration.Install/FakeTest.cs svn path=/trunk/mcs/; revision=12470
2003-03-13 * ILParser.jay: Create TypeRefs instead of types, define methods.Jackson Harper
svn path=/trunk/mcs/; revision=12468
2003-03-13* makefile, makefile.gnu: Add MethodTable and TypeRef to build.Jackson Harper
svn path=/trunk/mcs/; revision=12467
2003-03-13 * ClassTable.cs: Add Method tables to Class tables, add method to get aJackson Harper
class's method table. * CodeGen.cs: Add Method to add methods :p * MethodTable.cs: Add file, this class is used to add methods to a class. svn path=/trunk/mcs/; revision=12466
2003-03-13Added MailHeader to handle the mail headersPer Arneng
svn path=/trunk/mcs/; revision=12465
2003-03-13 * NUnit2ified makefile.gnu, Test/dslib_linux_test.argsMartin Willemoes Hansen
Test/makefile.gnu, Test/Mono.Directory.LDAP/BindSimpleTest.cs Test/Mono.Directory.LDAP/QueryRootDSE.cs * Renamed Test/Mono.Directory.LDAP/QueryRootDSE.cs to QueryRootDSETest.cs * Removed Test/NUnit.Prefs, Test/Mono.Directory.LDAP/AllTests.cs * Fixed Mono.Directory.LDAP/LDAP.cs casting of null to object. svn path=/trunk/mcs/; revision=12463
2003-03-12 * Removed AllTests.cs not need for NUnit 2.0Martin Willemoes Hansen
svn path=/trunk/mcs/; revision=12462
2003-03-12 * Added makefile.gnuMartin Willemoes Hansen
* Added microsoftvisualbasic_test.args svn path=/trunk/mcs/; revision=12461
2003-03-12 * Patched makefile.gnu to work with the new NUnit2 testsMartin Willemoes Hansen
* Added makefile.gnu * Added microsoftvisualbasic_test.args * Removed AllTests.cs not need for NUnit 2.0 * Updated CollectionTest.cs, ConversionTest.cs and DateAndTimeTest.cs to NUnit 2.0 svn path=/trunk/mcs/; revision=12460
2003-03-122003-03-12 Alan Tam <Tam@SiuLung.com>Alan Tam
* DataSet.cs: Fixed a bug that the file written does not close correctly. svn path=/trunk/mcs/; revision=12459
2003-03-122003-03-12 Alan Tam <Tam@SiuLung.com>Alan Tam
* XmlDataDocument.cs: Still need to print tag for the DataSet if there is no data at all. svn path=/trunk/mcs/; revision=12458
2003-03-122003-03-12 Elan Feingold <efeingold@mn.rr.com>Miguel de Icaza
* XmlCustomFormatter.cs: Correct signature, Implement ToByteArrayBase64 * XmlSerializationWriter.cs: Fix prototype. * XmlSerializer.cs: Implements Deserialize(). 2003-03-12 Elan Feingold <efeingold@mn.rr.com> * XmlTextReader.cs: When throwing a ReaderException, show what character was the culprit svn path=/trunk/mcs/; revision=12456
2003-03-12Small improvementMiguel de Icaza
svn path=/trunk/mcs/; revision=12454
2003-03-122003-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>Miguel de Icaza
* AspGenerator.cs: svn path=/trunk/mcs/; revision=12453
2003-03-12 * TypeRef.cs: New file, used for pairing types and their names.Jackson Harper
svn path=/trunk/mcs/; revision=12452
2003-03-12//Jackson Harper
// Mono.ILASM.TypeRef // // Author(s): // Jackson Harper (Jackson@LatitudeGeo.com) // // (C) 2003 Jackson Harper, All rights reserved // using PEAPI; using System; namespace Mono.ILASM { public class TypeRef { public readonly PEAPI.Type Type; public readonly string FullName; public TypeRef (PEAPI.Type type, string full_name) { Type = type; FullName = full_name; } public override string ToString () { return FullName; } } } svn path=/trunk/mcs/; revision=12451
2003-03-12Fixed typo.César Natarén
svn path=/trunk/mcs/; revision=12447
2003-03-12mcs/class: Added directories Microsoft.JScript and Microsoft.Vsa that will ↵César Natarén
have the runtime and CodeDom support for the JScript compiler. svn path=/trunk/mcs/; revision=12446
2003-03-12Added Microsoft.JScript assembly and namespace, that will be used by the ↵César Natarén
Jscript compiler. svn path=/trunk/mcs/; revision=12445
2003-03-12Added the IVsa interfaces that are used for runtime support of script engines.César Natarén
svn path=/trunk/mcs/; revision=12444
2003-03-122003/03/11 Rafael Teixeira <rafaelteixeirabr@hotmail.com> Rafael Teixeira
* makefile.gnu : use $RUNTIME for all targets actually run the compiled program on 'test-gtk' target * mb-tokenizer.cs : no escaping of chars allowed in VB.NET (old mcs code removed) handle doubled-doublequotes (VB idiom to escape a doublequote) svn path=/trunk/mcs/; revision=12436
2003-03-112003-03-1 Jean-Marc Andre <jean-marc.andre@polymtl.ca>Jean-Marc Andre
svn path=/trunk/mcs/; revision=12429
2003-03-112003-03-11: Jean-Marc ANDRE <jean-marc.andre@polymtl.ca>Jean-Marc Andre
* RemotingConfigurationTest: a unit test for RemotingConfiguration svn path=/trunk/mcs/; revision=12428
2003-03-11Make this compile with a C compilerMiguel de Icaza
svn path=/trunk/mcs/; revision=12415
2003-03-11check in for Steven StewartAlexandre Pigolkine
svn path=/trunk/mcs/; revision=12412
2003-03-10*** empty log message ***Joel Basson
svn path=/trunk/mcs/; revision=12409
2003-03-102003-03-10 Joel Basson <jstrike@mweb.co.za>Joel Basson
* Update Demo.cs to reflect current status, and got rid termination bug svn path=/trunk/mcs/; revision=12408
2003-03-102003-03-10 Joel Basson <jstrike@mweb.co.za>Joel Basson
* PictureBox.cs svn path=/trunk/mcs/; revision=12407
2003-03-102003-03-11 Alan Tam <Tam@SiuLung.com>Alan Tam
* XslTransform.cs: Fixed a bug when no args is passed svn path=/trunk/mcs/; revision=12406
2003-03-102003-03-10 Alan Tam <Tam@SiuLung.com>Alan Tam
* XslTransform.cs: Implemented boolean, number and string parameters. (Node Set and Node Iterator parameters and Extension Objects are left.) * XsltAttributeList.cs: Loosened access modifiers. svn path=/trunk/mcs/; revision=12405
2003-03-102003-03-10 Zoltan Varga <vargaz@freemail.hu>Zoltan Varga
* ILGenerator.cs: Propagate maxstack info along branches. svn path=/trunk/mcs/; revision=12404
2003-03-102003-03-10 Daniel Morgan <danmorg@sc.rr.com>Daniel Morgan
* System.Data.SqlClient/SqlDataReader.cs: when the data reader is closed, this SqlDataReader referenced in SqlConnection needs to be null * System.Data.Common/DbDataAdapter.cs: for SelectCommands executed that have no result set, such as, DDL like CREATE TABLE or DML like INSERT, the data reader needs to be immediately closed, and 0 returned as the number of rows added or refreshed svn path=/trunk/mcs/; revision=12403
2003-03-10* Fixed some spelling errors in class/doc/TemplateTest.csMartin Willemoes Hansen
svn path=/trunk/mcs/; revision=12402
2003-03-102003-03-10 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* AspGenerator.cs: * BaseCompiler.cs: * CachingCompiler.cs: * CompilationResult.cs: * GlobalAsaxCompiler.cs: * PageCompiler.cs: * UserControlCompiler.cs: recompile the page if dependencies change. svn path=/trunk/mcs/; revision=12401
2003-03-10 * PEAPI.cs: (ImplAttr) Add Optil implementation flag (not supportedJackson Harper
in first release of CLR) (Class) And Name property svn path=/trunk/mcs/; revision=12399
2003-03-10 * ILParser.jay: Set Call Conventions and Implementation FlagsJackson Harper
svn path=/trunk/mcs/; revision=12398
2003-03-10Added more commentsPer Arneng
svn path=/trunk/mcs/; revision=12395
2003-03-10Added comments to the codePer Arneng
svn path=/trunk/mcs/; revision=12394
2003-03-10Replaced by IAttachmentEncoder.csPer Arneng
svn path=/trunk/mcs/; revision=12393
2003-03-10Added UUEncoding for attachments.Per Arneng
Created and Attachment encoder interface which Base64 and UUEncode implements. svn path=/trunk/mcs/; revision=12392
2003-03-09 * ILParser.jay: Add implemented interfacesJackson Harper
svn path=/trunk/mcs/; revision=12381
2003-03-092003-03-09 Joel Basson <jstrike@mweb.co.za>Joel Basson
* Frame.cs should have been GroupBox.cs 2 svn path=/trunk/mcs/; revision=12380
2003-03-09TrackBar control by Aleksey Ryabchuk (ryabchuk@yahoo.com), changes to monostub.cAlexandre Pigolkine
svn path=/trunk/mcs/; revision=12379
2003-03-09 * ExternTable.cs: Do not verify the existence of external typesJackson Harper
svn path=/trunk/mcs/; revision=12378
2003-03-09 * ILParser.jay: Create method attributesJackson Harper
svn path=/trunk/mcs/; revision=12368
2003-03-092003-03-09 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* makefile: Removed cert2spc and sn from linux build (as Mono.Security assembly isn't, yet, part of the linux build). * makefile.gnu: Removed (not required for tools). svn path=/trunk/mcs/; revision=12367
2003-03-092003-03-08 Sebastien Pouliot <spouliot@videotron.ca>Sebastien Pouliot
* makefile: Added SN. * makefile.gnu: New. Copy of makefile. svn path=/trunk/mcs/; revision=12366