mono.git
19 years ago2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 7 Jun 2005 18:47:55 +0000 (18:47 -0000)]
2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* trace.[ch]:
* mini.c: added the ability to toggle trace on/off using SIGUSR2.

svn path=/trunk/mono/; revision=45590

19 years ago2005-06-07 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Tue, 7 Jun 2005 17:56:26 +0000 (17:56 -0000)]
2005-06-07  Atsushi Enomoto <atsushi@ximian.com>

* RelaxngReader.cs : When ReadPattern() if no valid pattern appears
  then raise an error. In Read() when there are only non RELAX NG
  elements it resulted in an infinite loop.

svn path=/trunk/mcs/; revision=45588

19 years ago2005-06-07 Lluis Sanchez Gual <lluis@novell.com>
Lluis Sanchez [Tue, 7 Jun 2005 16:55:01 +0000 (16:55 -0000)]
2005-06-07  Lluis Sanchez Gual  <lluis@novell.com>

* SerializationCodeGenerator.cs: When reading members by order,
call a MoveToContext after each member read. In the fixup method
don't cast returned values if it is reading an object array.

* XmlSchemaImporter.cs: In ImportDerivedTypeMapping, if the type
being imported is a primitive type, create a wrapper class that
inherits from the provided one. This fixes bug #68809.

* XmlSerializationReader.cs: Properly report unreferenced objects.
Created an overload of ReadTypedPrimitive that reports elements of
unknown type. Implemented Referenced().

svn path=/trunk/mcs/; revision=45586

19 years ago * UnixFileSystemInfo.cs: Don't use lstat(2), use stat(2). This fits with
Jonathan Pryor [Tue, 7 Jun 2005 16:52:44 +0000 (16:52 -0000)]
  * UnixFileSystemInfo.cs: Don't use lstat(2), use stat(2).  This fits with
    expectations better -- if you create a UnixFileInfo() on a symlink, you
    want to get the target's information, not the symlink's info.  Add
    GetFileStatus so UnixSymbolicLinkInfo can override this behavior.
  * UnixSymbolicLinkInfo.cs: Implement GetFileStatus() (which calls lstat(2)).

svn path=/trunk/mcs/; revision=45585

19 years agocorlib_test.dll.sources: Added unit tests (normal and CAS) for System.Runtime.Interop...
Sebastien Pouliot [Tue, 7 Jun 2005 15:12:49 +0000 (15:12 -0000)]
corlib_test.dll.sources: Added unit tests (normal and CAS) for System.Runtime.InteropServices.RuntimeEnvironment.

svn path=/trunk/mcs/; revision=45582

19 years ago2005-06-07 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Tue, 7 Jun 2005 15:11:14 +0000 (15:11 -0000)]
2005-06-07  Sebastien Pouliot  <sebastien@ximian.com>

* RuntimeEnvironment.cs: Implemented TODO. Added security for CAS.

svn path=/trunk/mcs/; revision=45581

19 years ago2005-06-07 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Tue, 7 Jun 2005 15:09:35 +0000 (15:09 -0000)]
2005-06-07  Sebastien Pouliot  <sebastien@ximian.com>

* RuntimeEnvironmentTest.cs: New. Unit tests for RuntimeEnvironment.
* RuntimeEnvironmentCas.cs: New. CAS unit tests for RuntimeEnvironment

svn path=/trunk/mcs/; revision=45580

19 years ago * configure.in: Add checks for mremap, remap_file_pages.
Jonathan Pryor [Tue, 7 Jun 2005 14:39:09 +0000 (14:39 -0000)]
  * configure.in: Add checks for mremap, remap_file_pages.
  * support/sys-mman.c: Check for presence of mremap and remap_file_pages.

svn path=/trunk/mono/; revision=45579

19 years ago2005-06-07 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Tue, 7 Jun 2005 13:41:59 +0000 (13:41 -0000)]
2005-06-07  Zoltan Varga  <vargaz@freemail.hu>

* *Token.cs: Add net 2.0 Equals methods.

svn path=/trunk/mcs/; revision=45578

19 years ago2004-06-07 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Tue, 7 Jun 2005 13:34:27 +0000 (13:34 -0000)]
2004-06-07  Atsushi Enomoto  <atsushi@ximian.com>

* Expression.cs : set TARGET_JVM where collation matters.

svn path=/trunk/mcs/; revision=45577

19 years ago2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 7 Jun 2005 13:25:15 +0000 (13:25 -0000)]
2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* TcpClient.cs: patch by Hans Kratz that uses an integer when setting
NoDelay instead of a bool, which is only handled in 2.0.

svn path=/trunk/mcs/; revision=45576

19 years ago2005-06-06 Michael Meeks <michael.meeks@novell.com>
Paolo Molaro [Tue, 7 Jun 2005 13:22:45 +0000 (13:22 -0000)]
2005-06-06  Michael Meeks  <michael.meeks@novell.com>

* object.c (extend_interface_array): fix really silly
memory corrupting / comparison bug.

svn path=/trunk/mono/; revision=45575

19 years agoEnsure that partial classes are registered in their enclosing
Raja R Harinath [Tue, 7 Jun 2005 13:16:05 +0000 (13:16 -0000)]
Ensure that partial classes are registered in their enclosing
namespace.  Initial part of fix of #75160.
* tree.cs (Tree.RecordDecl): Add new namespace argument.
Register declspace with namespace here, not in DeclSpace.RecordDecl.
* cs-parser.jay: Pass namespace to RecordDecl.
* class.cs (PartialContainer.Create): Likewise.
(ClassPart.DefineType): New sanity-check.  Throws an exception if called.
* decl.cs (Declspace.RecordDecl): Remove.
* namespace.cs (NamespaceEntry.DefineName): Remove.

svn path=/trunk/mcs/; revision=45574

19 years ago2005-06-07 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Tue, 7 Jun 2005 13:14:31 +0000 (13:14 -0000)]
2005-06-07  Zoltan Varga  <vargaz@freemail.hu>

* *.cs: Updates for net 2.0 beta 2.

svn path=/trunk/mcs/; revision=45573

19 years ago2005-06-07 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Tue, 7 Jun 2005 12:37:46 +0000 (12:37 -0000)]
2005-06-07  Zoltan Varga  <vargaz@freemail.hu>

* *.cs: Updates for net 2.0 beta 2.

svn path=/trunk/mcs/; revision=45572

19 years ago2005-06-07 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Tue, 7 Jun 2005 12:36:45 +0000 (12:36 -0000)]
2005-06-07  Zoltan Varga  <vargaz@freemail.hu>

* *.cs: Updates for net 2.0 beta 2.

svn path=/trunk/mcs/; revision=45571

19 years ago * Syscall.cs: Document naming conventions.
Jonathan Pryor [Tue, 7 Jun 2005 12:18:57 +0000 (12:18 -0000)]
  * Syscall.cs: Document naming conventions.

svn path=/trunk/mcs/; revision=45570

19 years ago2005-06-07 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Tue, 7 Jun 2005 11:55:43 +0000 (11:55 -0000)]
2005-06-07  Sebastien Pouliot  <sebastien@ximian.com>

* Thread.cs: Added _Thread interface (and members) and a few missing
attributes (for both 1.1 and 2.0).

svn path=/trunk/mcs/; revision=45569

19 years ago * class.cs : Disallowing default properties without parameters.
Satya Sudha K [Tue, 7 Jun 2005 07:59:26 +0000 (07:59 -0000)]
    * class.cs : Disallowing default properties without parameters.
        * Some cleanups in other files to get rid of warnings.

svn path=/trunk/mcs/; revision=45568

19 years agoNew tests for my iterators code.
Martin Baulig [Tue, 7 Jun 2005 07:32:38 +0000 (07:32 -0000)]
New tests for my iterators code.

svn path=/trunk/mcs/; revision=45564

19 years ago2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Tue, 7 Jun 2005 05:06:07 +0000 (05:06 -0000)]
2005-06-07 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* AssemblyTest.cs: put back GetEntryAssembly, but this one is working.

svn path=/trunk/mcs/; revision=45561

19 years agoReverted r45553 since it broke the build; see bug #75136.
Martin Baulig [Tue, 7 Jun 2005 03:06:54 +0000 (03:06 -0000)]
Reverted r45553 since it broke the build; see bug #75136.

svn path=/trunk/mcs/; revision=45559

19 years agoNew test.
Martin Baulig [Tue, 7 Jun 2005 02:22:57 +0000 (02:22 -0000)]
New test.

svn path=/trunk/mcs/; revision=45558

19 years agodeprecated.
Atsushi Eno [Tue, 7 Jun 2005 01:54:04 +0000 (01:54 -0000)]
deprecated.

svn path=/trunk/mcs/; revision=45557

19 years ago2005-06-07 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Tue, 7 Jun 2005 01:16:40 +0000 (01:16 -0000)]
2005-06-07  Atsushi Enomoto <atsushi@ximian.com>

* XmlSchemaValidationFlags.cs : it is NET_2_0.

svn path=/trunk/mcs/; revision=45556

19 years ago2005-06-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
Carlos Alberto Cortez [Tue, 7 Jun 2005 00:14:13 +0000 (00:14 -0000)]
2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>

* CustomAttributeData.cs: Implemented.

* CustomAttributeDataNamedArgument.cs: Implemented.

* CustomAttrbuteDataTypedArgument.cs: Implemented.

svn path=/trunk/mcs/; revision=45553

19 years ago2005-06-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
Carlos Alberto Cortez [Tue, 7 Jun 2005 00:12:21 +0000 (00:12 -0000)]
2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>

* MonoCustomAttrs.cs: Added GetCustomAttributesDataInternal icall, and
also internal method GetCustomAttributesData, used by
System.Reflection.CustomAttributeData.

svn path=/trunk/mcs/; revision=45552

19 years ago2005-06-07 Carlos Alberto Cortez <calberto.cortez@gmail.com>
Carlos Alberto Cortez [Tue, 7 Jun 2005 00:10:06 +0000 (00:10 -0000)]
2005-06-07  Carlos Alberto Cortez <calberto.cortez@gmail.com>

* reflection.c: Functions added to support the creation
of CustomAttributeData, which includes Attribute data
used by ReflectionOnly methods.

* reflection.h:  mono_reflection_get_custom_attrs_data and
 mono_custom_attrs_data_construct added (functions exposed).

 * icall.c: Added mono_reflection_get_custom_attrs_data
 as icall.

svn path=/trunk/mono/; revision=45551

19 years ago2005-06-07 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 22:59:18 +0000 (22:59 -0000)]
2005-06-07  Zoltan Varga  <vargaz@freemail.hu>

* Makefile.am (libmonoruntime_la_SOURCES): Revert last change at
lupus's request.

svn path=/trunk/mono/; revision=45549

19 years ago2005-06-06 Peter Bartok <pbartok@novell.com>
Peter Dennis Bartok [Mon, 6 Jun 2005 22:07:33 +0000 (22:07 -0000)]
2005-06-06  Peter Bartok  <pbartok@novell.com>

* ImageListStreamer.cs: Fixed signature for GetData
* CheckBox.cs: Fixed base class for CheckBoxAccessibleObject
* ComboBox.cs:
  - Added missing ChildAccessibleObject class
  - Added missing OnXXXFocus overrides, switched to using those
    instead of the event handler
* Control.cs:
  - Added Parent property for ControlAccessibleObject
  - Fixed signatures
  - Fixed attributes
  - Added ResetBindings()
* ListBindingConverter.cs: Implemented some methods
* ButtonBase.cs: Added missing ButtonBaseAccessibleObject class
* ImageList.cs: Implemented basic handle scheme, removed TODOs
* ContainerControl.cs: Fixed signature, now subscribing to the
  ControlRemoved event instead of overriding the handler, LAMESPEC
* CurrencyManager.cs: Added missing attribute
* MonthCalendar.cs: Added missing properties

svn path=/trunk/mcs/; revision=45548

19 years ago2005-06-06 Jordi Mas i Hernandez <jordi@ximian.com>
Jordi Mas i Hernandez [Mon, 6 Jun 2005 21:37:50 +0000 (21:37 -0000)]
2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>

* DataGridColumnStyle.cs: fixes for DataGridColumnStyle

svn path=/trunk/mcs/; revision=45547

19 years ago2005-06-06 Gaurav Vaish and Ankit Jain
Jordi Mas i Hernandez [Mon, 6 Jun 2005 20:55:17 +0000 (20:55 -0000)]
2005-06-06  Gaurav Vaish and Ankit Jain

* DataSourceHelper.cs: Gaurav Vaish and Ankit Jain patch for databinding
* DataGrid.cs: Gaurav Vaish and Ankit Jain patch for databinding

svn path=/trunk/mcs/; revision=45546

19 years ago * mono.spec.in: Remove. This is horribly out of date. A real spec
Ben Maurer [Mon, 6 Jun 2005 20:44:52 +0000 (20:44 -0000)]
* mono.spec.in: Remove. This is horribly out of date. A real spec
file is generated in the release module.

svn path=/trunk/mono/; revision=45544

19 years ago2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Mon, 6 Jun 2005 20:23:37 +0000 (20:23 -0000)]
2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* mono-api-info.cs: exclude the ReservedMask bits from method
attributes.

svn path=/trunk/mcs/; revision=45543

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 20:22:27 +0000 (20:22 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* Alert.cs: Add NoCertificate (41) which _should_ be used in SSL3
if we don't want to send a certificate when requested by a server
(e.g. in the case the mutual authentication is optional).
* CipherSuite.cs: Fixed recursive property. Changed type to short so
it can hold 256 bits (valid value). Fixed ctor so it doesn't assign
the it's own value.

svn path=/trunk/mcs/; revision=45542

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 20:16:10 +0000 (20:16 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* Activator.cs: Added  _Activator interface (and members) for 1.1 and
missing attributes (for both 1.1 and 2.0).
* String.cs: Made internal To[Lower|Upper]Invariant methods public for
2.0. Reworked Trim() to skip a useless call. Added missing attribute
for 2.0.
* Type.cs: Added  _Type, _MemberInfo interfaces (1.1/2.0). Added
missing attribute for 2.0. Hided some public/protected methods.

svn path=/trunk/mcs/; revision=45541

19 years agodepreciated
Ben Maurer [Mon, 6 Jun 2005 20:14:18 +0000 (20:14 -0000)]
depreciated

svn path=/trunk/mono/; revision=45540

19 years agodepreciated
Ben Maurer [Mon, 6 Jun 2005 20:12:42 +0000 (20:12 -0000)]
depreciated

svn path=/trunk/mcs/; revision=45539

19 years agodepreciated
Ben Maurer [Mon, 6 Jun 2005 20:12:16 +0000 (20:12 -0000)]
depreciated

svn path=/trunk/mcs/; revision=45538

19 years agodepreciated
Ben Maurer [Mon, 6 Jun 2005 20:11:58 +0000 (20:11 -0000)]
depreciated

svn path=/trunk/mcs/; revision=45537

19 years agodepreciated
Ben Maurer [Mon, 6 Jun 2005 20:11:33 +0000 (20:11 -0000)]
depreciated

svn path=/trunk/mcs/; revision=45536

19 years agodepreciated
Ben Maurer [Mon, 6 Jun 2005 20:09:58 +0000 (20:09 -0000)]
depreciated

svn path=/trunk/mcs/; revision=45535

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 20:07:20 +0000 (20:07 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* ModuleHandleTest.cs: Renamed PortableExecutableKind to *Kinds to fix
compilation.

svn path=/trunk/mcs/; revision=45534

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 20:05:35 +0000 (20:05 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* AssemblyTest.cs: Removed asserts using PortableExecutableKind -
because (1) it was renamed to PortableExecutableKinds *and* (2)
it's documented as obsolete and will be removed for 2.0 RTM.

svn path=/trunk/mcs/; revision=45533

19 years agoRemove some interfaces that were dropped in beta2
Sebastien Pouliot [Mon, 6 Jun 2005 19:45:16 +0000 (19:45 -0000)]
Remove some interfaces that were dropped in beta2

svn path=/trunk/mcs/; revision=45532

19 years agodist fix
Ben Maurer [Mon, 6 Jun 2005 19:18:09 +0000 (19:18 -0000)]
dist fix

svn path=/trunk/mcs/; revision=45529

19 years ago2005-06-06:2 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
Rafael Teixeira [Mon, 6 Jun 2005 19:12:47 +0000 (19:12 -0000)]
2005-06-06:2  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
* FileSystem.cs: Killed unneeded overload FileGet(in, ref Object, ...)

svn path=/trunk/mcs/; revision=45528

19 years ago2005-06-06 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
Rafael Teixeira [Mon, 6 Jun 2005 19:03:02 +0000 (19:03 -0000)]
2005-06-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
* VBBinder.cs : Made it internal as it isn't public in 1.1 API
* DoubleType.cs: corrected, TryParse is now internal
* ObjectType.cs: corrected, CTypeHelper(string, Type) overload is now internal
* Utils.cs: corrected, SetTime and SetDate are now internal

svn path=/trunk/mcs/; revision=45526

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:59:39 +0000 (18:59 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* Assembly.cs ExceptionHandlingClause.cs: Fix build.

svn path=/trunk/mcs/; revision=45525

19 years agoBye
Ben Maurer [Mon, 6 Jun 2005 18:58:10 +0000 (18:58 -0000)]
Bye

svn path=/trunk/mcs/; revision=45524

19 years ago2005-06-06 Ben Maurer <bmaurer@ximian.com>
Ben Maurer [Mon, 6 Jun 2005 18:56:03 +0000 (18:56 -0000)]
2005-06-06  Ben Maurer  <bmaurer@ximian.com>

* Makefile: Depreciate mono-rpm-helpers

svn path=/trunk/mcs/; revision=45523

19 years ago2005-06-06 Ben Maurer <bmaurer@ximian.com>
Ben Maurer [Mon, 6 Jun 2005 18:52:08 +0000 (18:52 -0000)]
2005-06-06  Ben Maurer  <bmaurer@ximian.com>

* scripts/Makefile.am: Add mono-find-*

* scripts/mono-find-*.in: provides/requires stuff for rpm is now
done with monodis. This makes packaging easier as it doesn't
depend on the gac ind DESTDIR.

* configure.in: changes for the above

svn path=/trunk/mono/; revision=45522

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:42:34 +0000 (18:42 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* ProcessorArchitecture.cs: New file.

svn path=/trunk/mcs/; revision=45521

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:33:17 +0000 (18:33 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* AssemblyBuilder.cs: Update after PortableExecutableKinds name change.

svn path=/trunk/mcs/; revision=45520

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:32:13 +0000 (18:32 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* ExceptionHandlingClause.cs: Update after ExceptionHandlingClauseFlags name change.

svn path=/trunk/mcs/; revision=45519

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:30:59 +0000 (18:30 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* ModuleHandle.cs: Update after PortableExecutableKinds name change.

svn path=/trunk/mcs/; revision=45518

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:28:54 +0000 (18:28 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* corlib.dll.sources: Some System.Reflection classes got renamed in net 2.0
beta 2.

svn path=/trunk/mcs/; revision=45517

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:28:09 +0000 (18:28 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* *.cs: Updates for net 2.0 beta 2.

svn path=/trunk/mcs/; revision=45516

19 years ago2005-06-06 Cesar Lopez Nataren <cnataren@novell.com>
César Natarén [Mon, 6 Jun 2005 18:24:28 +0000 (18:24 -0000)]
2005-06-06  Cesar Lopez Nataren  <cnataren@novell.com>

* expression.cs (emit_access): We can now access the properties
from the Global RegExp object, they were not being accesible
because they are properties not fields.

svn path=/trunk/mcs/; revision=45515

19 years agofix category
Sebastien Pouliot [Mon, 6 Jun 2005 18:22:31 +0000 (18:22 -0000)]
fix category

svn path=/trunk/mcs/; revision=45514

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 18:17:03 +0000 (18:17 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* _AppDomain.cs: Added new members in the interface (added in 1.1 SP1)
* AppDomain.cs: Added new members from _AppDomain interface.
* AppDomainManager.cs: Fixed flags and added attributes.
* DomainManagerInitializationFlags.cs: The flag has been renamed to
AppDomainManagerInitializationOptions in beta2.

svn path=/trunk/mcs/; revision=45513

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:08:49 +0000 (18:08 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* Type.cs MonoCustomAttrs.cs: Return SerializableAttribute for types as well.

svn path=/trunk/mcs/; revision=45512

19 years ago2005-06-06 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
Rafael Teixeira [Mon, 6 Jun 2005 18:04:15 +0000 (18:04 -0000)]
2005-06-06  Rafael Teixeira <rafaelteixeirabr@hotmail.com>
* Collection.cs (Item [indexer]): Correcting API according to
FX1.1 class status page
* FileSystem.cs: Killed unneeded overload of Dir method
All FileGet overloads grouped together in the source file
* VariantType.cs: Killed extraneous enum value
* Information.cs: Corrected, was using the VariantType extraneous value

svn path=/trunk/mcs/; revision=45511

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 18:03:29 +0000 (18:03 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* *.cs: Add net 2.0 ComVisibleAttribute.

svn path=/trunk/mcs/; revision=45510

19 years ago2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>
Gonzalo Paniagua Javier [Mon, 6 Jun 2005 18:01:27 +0000 (18:01 -0000)]
2005-06-06 Gonzalo Paniagua Javier <gonzalo@ximian.com>

* HttpUtility.cs: fix InvalidCastException.

svn path=/trunk/mcs/; revision=45509

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 17:30:18 +0000 (17:30 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* CspProviderFlags.cs: UseExistingKey was added in 1.1 SP1. Added
ComVisible attribute for 2.0.

svn path=/trunk/mcs/; revision=45508

19 years ago2005-06-06 Rafael Teixeira (rafaelteixeirabr@hotmail.com)
Rafael Teixeira [Mon, 6 Jun 2005 16:38:08 +0000 (16:38 -0000)]
2005-06-06 Rafael Teixeira (rafaelteixeirabr@hotmail.com)
* Adjusted AssemblyTitle and AssemblyDescription attributes according
to warning on class status page

* Locale.cs: Added

svn path=/trunk/mcs/; revision=45506

19 years ago Exception.cs: Implements _Exception only for 2.0.
Sebastien Pouliot [Mon, 6 Jun 2005 16:38:03 +0000 (16:38 -0000)]
 Exception.cs: Implements _Exception only for 2.0.

svn path=/trunk/mcs/; revision=45505

19 years ago2005-06-06 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Mon, 6 Jun 2005 16:27:08 +0000 (16:27 -0000)]
2005-06-06  Atsushi Enomoto <atsushi@ximian.com>

* XmlEntityReference.cs, XmlNode.cs : protected api fix.

svn path=/trunk/mcs/; revision=45504

19 years ago2005-06-06 Sebastien Pouliot <sebastien@ximian.com>
Sebastien Pouliot [Mon, 6 Jun 2005 16:16:30 +0000 (16:16 -0000)]
2005-06-06  Sebastien Pouliot  <sebastien@ximian.com>

* _Exception.cs: That one wasn't backported to 1.1 SP1 by MS. This
should fix a lot of extra reported in the API status pages.

svn path=/trunk/mcs/; revision=45503

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 15:06:37 +0000 (15:06 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* GC.cs: Fix build.

svn path=/trunk/mcs/; revision=45499

19 years ago * mono-shlib-cop.cs: Use better default prefix handling (don't always assume
Jonathan Pryor [Mon, 6 Jun 2005 15:05:42 +0000 (15:05 -0000)]
  * mono-shlib-cop.cs: Use better default prefix handling (don't always assume
    `/' is the prefix, instead base the choice off runtime information).

svn path=/trunk/mcs/; revision=45498

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 15:04:01 +0000 (15:04 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* MethodInfoTest.cs: Disable pseudo custom attribute test.

svn path=/trunk/mcs/; revision=45497

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:46:56 +0000 (14:46 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* icall.c (ves_icall_Mono_Runtime_GetDisplayName): Fix warning.

* reflection.c (reflection_methodbuilder_to_mono_method): Fix encoding of
dynamic DllImportAttribute.

* icall.c (ves_icall_MonoMethod_GetDllImportAttribute): Fix decoding of
dynamic DllImportAttribute.

svn path=/trunk/mono/; revision=45496

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:45:29 +0000 (14:45 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* MethodBuilderTest.cs: Add tests for setting DllImportAttribute.

svn path=/trunk/mcs/; revision=45495

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:17:56 +0000 (14:17 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

       * GC.cs UnhandledExceptionEventArgs.cs IntPtr.cs RuntimeFieldHandle.cs
         String.cs Object.cs Math.cs RuntimeMethodHandle.cs ModuleHandle.cs
         RuntimeTypeHandle.cs AppDomain.cs: Add some missing 2.0 methods/attributes.

svn path=/trunk/mcs/; revision=45493

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:17:19 +0000 (14:17 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* ObjRef.cs RemotingServices.cs: Add some missing 2.0 attributes.

svn path=/trunk/mcs/; revision=45492

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:16:21 +0000 (14:16 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* RuntimeHelpers.cs: Add some missing 2.0 attributes.

svn path=/trunk/mcs/; revision=45491

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:15:28 +0000 (14:15 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* Marshal.cs: Add some missing 2.0 attributes.

svn path=/trunk/mcs/; revision=45490

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:14:42 +0000 (14:14 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* Thread.cs Mutex.cs Monitor.cs: Add some missing 2.0 attributes.

svn path=/trunk/mcs/; revision=45489

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:13:37 +0000 (14:13 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* Hashtable.cs: Add some missing 2.0 attributes.

svn path=/trunk/mcs/; revision=45488

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 14:12:38 +0000 (14:12 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* GC.cs UnhandledExceptionEventArgs.cs IntPtr.cs RuntimeFieldHandle.cs
  String.cs Object.cs Math.cs RuntimeMethodHandle.cs ModuleHandle.cs
  RuntimeTypeHandle.cs AppDomain.cs: Add some missing 2.0 methods/attributes.

svn path=/trunk/mcs/; revision=45487

19 years ago* Makefile (NO_INSTALL): Set.
Raja R Harinath [Mon, 6 Jun 2005 14:02:04 +0000 (14:02 -0000)]
* Makefile (NO_INSTALL): Set.

svn path=/trunk/mcs/; revision=45486

19 years ago2005-06-06 Rafael Teixeira <rafaelteixeirabr@hotmail.com>
Rafael Teixeira [Mon, 6 Jun 2005 13:55:19 +0000 (13:55 -0000)]
2005-06-06  Rafael Teixeira  <rafaelteixeirabr@hotmail.com>
* Mono.GetOptions/OptionList.cs: Some refactoring of Gert's contribution
* Added Mono/IsPartOfPackage.cs: new informational assembly attribute

svn path=/trunk/mcs/; revision=45485

19 years ago * mono-shlib-cop.cs: Rename Report to AssemblyCheckInfo. Add -p
Jonathan Pryor [Mon, 6 Jun 2005 13:12:18 +0000 (13:12 -0000)]
  * mono-shlib-cop.cs: Rename Report to AssemblyCheckInfo.  Add -p
    command-line option to specify mono prefixes to search for.
    Store $prefix/etc/mono/config and ASSEMBLY.config XmlDocuments in
    AssemblyCheckInfo, and use AssemblyCheckInfo to search for <dllmap>
    entries.  This allows us to cache XmlDocuments across AppDomains (since
    AssemblyCheckInfo is a MarshalByRefObject), and should cut down on file
    I/O (since we don't re-read the .config for every member of every type).

svn path=/trunk/mcs/; revision=45484

19 years agoAdded support for HttpPostLocalhost and HttpSoap12
Kornél Pál [Mon, 6 Jun 2005 12:28:22 +0000 (12:28 -0000)]
Added support for HttpPostLocalhost and HttpSoap12

svn path=/trunk/mcs/; revision=45483

19 years ago2005-06-06 Zoltan Varga <vargaz@freemail.hu>
Zoltan Varga [Mon, 6 Jun 2005 12:18:24 +0000 (12:18 -0000)]
2005-06-06  Zoltan Varga  <vargaz@freemail.hu>

* Makefile.am (libmonoruntimeinclude_HEADERS): Export tabledefs.h too.
Fixes #75162.

svn path=/trunk/mono/; revision=45482

19 years ago2005-06-06 Lluis Sanchez Gual <lluis@novell.com>
Lluis Sanchez [Mon, 6 Jun 2005 11:29:51 +0000 (11:29 -0000)]
2005-06-06  Lluis Sanchez Gual <lluis@novell.com>

* GridView.cs:
* FormView.cs:
* DetailsView.cs: Bind the control after creating all child
 controls.
* DataBoundControl.cs: Call OnDataBinding and OnDataBound in
the correct methods.
* BaseDataBoundControl.cs: Don't call DataBind nor OnDataBound
in this class. This is done in DataBoundControl. All this fixes
bug #75076.

svn path=/trunk/mcs/; revision=45481

19 years ago2005-06-06 Lluis Sanchez Gual <lluis@novell.com>
Lluis Sanchez [Mon, 6 Jun 2005 11:29:34 +0000 (11:29 -0000)]
2005-06-06  Lluis Sanchez Gual <lluis@novell.com>

* Control.cs: Added new DataBind() overload for 2.0. The old
method calls this new overload.

svn path=/trunk/mcs/; revision=45480

19 years agoChange messages
Andrew Skiba [Mon, 6 Jun 2005 10:38:36 +0000 (10:38 -0000)]
Change messages

svn path=/trunk/mcs/; revision=45479

19 years agoeol-style=native
Raja R Harinath [Mon, 6 Jun 2005 09:40:50 +0000 (09:40 -0000)]
eol-style=native

svn path=/trunk/mcs/; revision=45478

19 years agoIn tools:
Raja R Harinath [Mon, 6 Jun 2005 09:38:42 +0000 (09:38 -0000)]
In tools:
* Makefile (net_2_0_SUBDIRS): Add 'compiler-tester'.

In tools/compiler-tester:
* Makefile: Convert to use executable.make.
* compiler-tester.exe.sources: New.

In errors:
* Makefile (run-mcs-tests): Update location of compiler-tester.exe.

svn path=/trunk/mcs/; revision=45477

19 years ago2005-06-06 Atsushi Enomoto <atsushi@ximian.com>
Atsushi Eno [Mon, 6 Jun 2005 08:52:27 +0000 (08:52 -0000)]
2005-06-06  Atsushi Enomoto  <atsushi@ximian.com>

* HtmlEmitter.cs : Boolean attribute values should be omitted, but
  only for related elements.

svn path=/trunk/mcs/; revision=45476

19 years ago2005-06-06 Jordi Mas i Hernandez <jordi@ximian.com>
Jordi Mas i Hernandez [Mon, 6 Jun 2005 08:52:08 +0000 (08:52 -0000)]
2005-06-06  Jordi Mas i Hernandez <jordi@ximian.com>

* Control.cs: fixes CreateParams Width / Height.

svn path=/trunk/mcs/; revision=45475

19 years agoremoved
Marek Safar [Mon, 6 Jun 2005 08:37:48 +0000 (08:37 -0000)]
removed

svn path=/trunk/mcs/; revision=45474

19 years agomake input-output look like in W3C testsuite
Andrew Skiba [Mon, 6 Jun 2005 08:36:25 +0000 (08:36 -0000)]
make input-output look like in W3C testsuite

svn path=/trunk/mcs/; revision=45473

19 years agoadded install-local (empty) target. Fixes the build
Gonzalo Paniagua Javier [Mon, 6 Jun 2005 08:26:33 +0000 (08:26 -0000)]
added install-local (empty) target. Fixes the build

svn path=/trunk/mcs/; revision=45472

19 years ago2005-06-06 Marek Safar <marek.safar@seznam.cz>
Marek Safar [Mon, 6 Jun 2005 08:21:34 +0000 (08:21 -0000)]
2005-06-06 Marek Safar <marek.safar@seznam.cz>

* Makefile: Reflect tester changes.

* TestRunner.cs: Moved to tools/compiler-tester.

svn path=/trunk/mcs/; revision=45471

19 years ago2005-06-06 Marek Safar <marek.safar@seznam.cz>
Marek Safar [Mon, 6 Jun 2005 08:03:04 +0000 (08:03 -0000)]
2005-06-06  Marek Safar  <marek.safar@seznam.cz>

* Makefile: Added compiler-tester.

svn path=/trunk/mcs/; revision=45470

19 years ago2005-06-06 Marek Safar <marek.safar@seznam.cz>
Marek Safar [Mon, 6 Jun 2005 08:00:34 +0000 (08:00 -0000)]
2005-06-06  Marek Safar  <marek.safar@seznam.cz>

* Initial commit

svn path=/trunk/mcs/; revision=45469