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
2003-07-202003-07-20 Peter Williams <peter@newton.cx>Peter Williams
* library.make ($(response)): Do a "Creating ..." line here. * executable.make ($(response)): Same. * config-default.make: Make warning more forceful. * rules.make: Define a useful 'PLATFORM_MONO_NATIVE' that is set if the platform does not have a native runtime (ie, linux). Also reorder some definitions. 2003-07-20 Peter Williams <peter@newton.cx> * Created. See ../ChangeLog for entries earlier than this. svn path=/trunk/mcs/; revision=16453
2003-07-20Add more errorsMiguel de Icaza
svn path=/trunk/mcs/; revision=16452
2003-07-202003-07-20 Martin Baulig <martin@ximian.com>Martin Baulig
* mono-debug.h: Set version number to 31. (mono_debug_init): Added `MonoDomain *' argument. * mono-debug-debugger.c: Reworked the type support; explicitly tell the debugger about builtin types; pass the `klass' address to the debugger. svn path=/trunk/mono/; revision=16448
2003-07-20Add generic.csMiguel de Icaza
svn path=/trunk/mcs/; revision=16446
2003-07-20 * image.c: Allow new metadata tables to be loaded without aJackson Harper
warning. Also update the warning message to give the new constant value. svn path=/trunk/mono/; revision=16445
2003-07-202003-07-20 Miguel de Icaza <miguel@ximian.com>Miguel de Icaza
* typemanager.cs (LookupTypeReflection): Never expose types which are NotPublic, NestedPrivate, NestedAssembly, or NestedFamANDAssem. We used to return these, and later do a check that would report a meaningful error, but the problem is that we would not get the real match, if there was a name override. svn path=/trunk/mcs/; revision=16444
2003-07-20Add more multi-assembly testsMiguel de Icaza
svn path=/trunk/mcs/; revision=16443
2003-07-20Add my picture to the team page.Jonathan Pryor
svn path=/trunk/mono/; revision=16442
2003-07-202003-07-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* ChunkStream.cs: (WantMore): true if we've not received the last chunk yet. Fixes bug #45463. Thanks to Miguel for tracking this down and providing a test case. * WebConnection.cs: removed bogus ^M's. * WebHeaderCollection.cs: provide more info when the header or value is wrong. svn path=/trunk/mcs/; revision=16441
2003-07-202003-07-20 Gonzalo Paniagua Javier <gonzalo@ximian.com>Gonzalo Paniagua Javier
* AppDomainSetup.cs: fixed bug #46609. svn path=/trunk/mcs/; revision=16440
2003-07-20Updated to recent versionAndreas N
svn path=/trunk/mcs/; revision=16439
2003-07-202003-07-20 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* XmlSchemaTests.cs : added AssertComplexTypeContentExtension() and added related tests in TestCompile(). svn path=/trunk/mcs/; revision=16438
2003-07-202003-07-20 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* XmlSchema.cs : added support for collecting missing type references at compilation-time. * XmlSchemaType.cs, XmlSchemaComplexType.cs, XmlSchemaSimpleType.cs: - Renamed qName to QNameInternal. - Added BaseSchemaType and ContentTypeParticle support. svn path=/trunk/mcs/; revision=16437
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* XmlSchema.cs, XmlSchemaAll.cs, XmlSchemaAnnotated.cs, XmlSchemaAnnotation.cs, XmlSchemaAny.cs, XmlSchemaAnyAttribute.cs, XmlSchemaAttribute.cs, XmlSchemaAttributeGroup.cs, XmlSchemaAttributeGroupRef.cs, XmlSchemaChoice.cs, XmlSchemaComplexContent.cs, XmlSchemaComplexContentExtension.cs, XmlSchemaComplexContentRestriction.cs, XmlSchemaComplexType.cs, XmlSchemaElement.cs, XmlSchemaGroup.cs, XmlSchemaGroupRef.cs, XmlSchemaIdentityConstraint.cs, XmlSchemaImport.cs, XmlSchemaInclude.cs, XmlSchemaKey.cs, XmlSchemaKeyref.cs, XmlSchemaNotation.cs, XmlSchemaObject.cs, XmlSchemaRedefine.cs, XmlSchemaSequence.cs, XmlSchemaSimpleContent.cs, XmlSchemaSimpleContentExtension.cs, XmlSchemaSimpleContentRestriction.cs, XmlSchemaSimpleType.cs, XmlSchemaSimpleTypeList.cs, XmlSchemaSimpleTypeRestriction.cs, XmlSchemaSimpleTypeUnion.cs, XmlSchemaUnique.cs, XmlSchemaXPath.cs, As to Compile() and Validate(), - Added CompilationId and check it while compiling schema components. - Code refactory. Replaced literal xmlns with XmlSchema.Namespace - Replaced XmlSchemaInfo with compiling XmlSchema itself (XmlSchema also has PSVI components inside it, so passing itself seems enough). - Related to above change, IDCollection was moved to XmlSchema, and blockDefault/finalDefault/blockResolved/finalResolved resolution was changed to reference only to schema.BlockDefault/FinalDefault. - The similar change has done against XmlSchemaForm related stuff. - Changed compilation order of schema type definitions (it is workaround). First it compiles types, and then it compiles others. * XmlSchemaElement.cs : added ElementType PSVI contribution support. svn path=/trunk/mcs/; revision=16435
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* BuiltInDatatypes.cs, XmlSchemaDatatype.cs : Added decimal and its derived datatypes. Added abstract XsdAnySimpleType. svn path=/trunk/mcs/; revision=16434
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* XmlSchemaTests.cs : rewrote TestRead() and added TestCompile(). svn path=/trunk/mcs/; revision=16433
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* added 1.xsd. svn path=/trunk/mcs/; revision=16432
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* XmlValidatingReaderTests.cs : added TestValidationEvent() and some code refactory. svn path=/trunk/mcs/; revision=16431
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* DTDValidatingReader.cs : changed base class to XmlReader and implemented IXmlLineInfo members. changed .ctor() argument from event handler to validating reader. Removed some #if ... #else ... #endif blocks. Added validation event support for Read() using HandleError(). * XmlValidatingReader.cs : added internal OnValidationEvent(). * XmlDocument.cs : ReadNode() now checks reader's state more strictly. svn path=/trunk/mcs/; revision=16430
2003-07-192003-07-19 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>Atsushi Eno
* XmlUrlResolver.cs : applied BenM's patch for file uri problem (bug #46610). svn path=/trunk/mcs/; revision=16429
2003-07-19Add LocaleMiguel de Icaza
svn path=/trunk/mcs/; revision=16418
2003-07-192003-07-18 Miguel de Icaza <miguel@ximian.com>Miguel de Icaza
* namespace.cs (Namespace, Name): Do not compute the namespace name dynamically, compute it in the constructor. This reduced memory usage by 1697 KB. * driver.cs: Use --pause to pause at the end. svn path=/trunk/mcs/; revision=16417
2003-07-19Add Locale.csMiguel de Icaza
svn path=/trunk/mcs/; revision=16416
2003-07-19Adding System.Messaging and System.ServiceProcess to the buildable subdirsRafael Teixeira
svn path=/trunk/mcs/; revision=16415
2003-07-18Locale.cs removedAndreas N
svn path=/trunk/mcs/; revision=16414
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.Data.dll.sources: Assembly/Locale.cs added, Assembly/AssemblyInfo.cs added svn path=/trunk/mcs/; revision=16413
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* AssemblyInfo.cs: Added * ChangeLog: Added * Locale.cs: Added svn path=/trunk/mcs/; revision=16412
2003-07-18Fri Jul 18 19:26:20 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* mini.c, mini.h, mini-x86.c, mini-ppc.c: mono_arch_call_opcode() returns the arguments in a separte list, now. svn path=/trunk/mono/; revision=16411
2003-07-18Makefile and xxx.sources files added to be compatible with new make processRafael Teixeira
svn path=/trunk/mcs/; revision=16408
2003-07-18Makefile and xxx.sources files added to be compatible with new make processRafael Teixeira
svn path=/trunk/mcs/; revision=16407
2003-07-18Disable until people fix their code...Paolo Molaro
svn path=/trunk/mcs/; revision=16406
2003-07-18Target 'test' added to MakefileRafael Teixeira
svn path=/trunk/mcs/; revision=16405
2003-07-18Do not expose the classes when they are compiled inside corlib as helpers.Paolo Molaro
svn path=/trunk/mcs/; revision=16404
2003-07-18Fri Jul 18 15:11:44 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* interp.c: 64 bit fixes from Laurent Morichetti <l_m@pacbell.net>. Install cleanup function. svn path=/trunk/mono/; revision=16403
2003-07-18Updates and fixes, mostly from Bernie Solomon <bernard@ugsolutions.com>.Paolo Molaro
svn path=/trunk/mono/; revision=16402
2003-07-18Fri Jul 18 14:42:42 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* MonoIO.cs: 64bit fix from Bernie Solomon <bernard@ugsolutions.com>. svn path=/trunk/mcs/; revision=16401
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: AlphabeticalEnumConverter.cs, SRDescriptionAttribute.cs added svn path=/trunk/mcs/; revision=16400
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* AlphabeticalEnumConverter.cs: Added * EventLogEntry.cs: Implemented * EventLogPermissionEntryCollection.cs: Fixed signature and implementation of indexer * EventLogTraceListener.cs: Fixed signature * PerformanceCounter.cs: Added missing attribute * PerformanceCounterType.cs: Added missing attribute * SRDescriptionAttribute.cs: Added and implemented svn path=/trunk/mcs/; revision=16399
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* Uri.cs: Added MonoTODO'd members, implemented member, fixed signature svn path=/trunk/mcs/; revision=16398
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* Socket.cs: Added GetHashCode method svn path=/trunk/mcs/; revision=16397
2003-07-18Fri Jul 18 13:12:38 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* get.c: updates for array type representation changes. svn path=/trunk/mono/; revision=16396
2003-07-18Fri Jul 18 13:16:18 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* aot.c, mini.c: updates for array type representation changes. svn path=/trunk/mono/; revision=16395
2003-07-18Fri Jul 18 13:12:21 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* class.c, class.h, debug-helpers.c, icall.c, image.c, marshal.c, metadata.c, metadata.h, mono-debug-debugger.c, object.c, reflection.c: array type representation changes. svn path=/trunk/mono/; revision=16394
2003-07-18Fri Jul 18 11:28:28 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* mini.c: register function to perform jit shutdown. svn path=/trunk/mono/; revision=16391
2003-07-18Fri Jul 18 11:26:58 CEST 2003 Paolo Molaro <lupus@ximian.com>Paolo Molaro
* icall.c, appdomain.h, appdomain.c: support full runtime shutdown on Environment.Exit () call. svn path=/trunk/mono/; revision=16390
2003-07-182003-07-17 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* CategoryAttribute.cs: Added localization support svn path=/trunk/mcs/; revision=16389
2003-07-18Locale.cs RemovedAndreas N
svn path=/trunk/mcs/; revision=16388
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* System.dll.sources: Assembly/Locale.cs added, Globalization.Locale.cs removed svn path=/trunk/mcs/; revision=16387
2003-07-182003-07-18 Andreas Nahr <ClassDevelopment@A-SoftTech.com>Andreas N
* Locale.cs: Added svn path=/trunk/mcs/; revision=16386
2003-07-18I think missing only one .pdb file (out of the many that were lying around)Peter Williams
isn't too bad, actually. svn path=/trunk/mcs/; revision=16385