Re: [Mono-dev] runtime specification in nunit-console.exe.config

2005-10-24 Thread Atsushi Eno
Oh, thanks Kamil, I overlooked the post... that patch looks cooler :-) I support it. Atsushi Eno Kamil Skalski wrote: Yap, removing this would be nice and it would bring nunit-console on 2.0 profile one step closer to being usable outside the mono build tree (see http://lists.ximian.com/piperm

[Mono-dev] corcompare patch for printing generic method type arguments

2005-10-24 Thread Atsushi Eno
Hi, Here is another patch for corcompare for generics support. With this patch it prints type arguments in generic methods. Suppose that we have void Foo () where T : IFoo, U : IBar Then it prints Foo[T(IFoo), U(IBar)] Thanks to Martin for fixing bug #76482 (this patch works f

Re: [Mono-dev] [PATCH] Use Encoding.Default as the default code page formcs

2005-10-24 Thread Kornél Pál
Hi, I posted this patch two weeks ago but I got no comments. Could you review please? Kornél - Original Message - From: "Kornél Pál" <[EMAIL PROTECTED]> To: Sent: Monday, October 10, 2005 11:47 AM Subject: [Mono-dev] [PATCH] Use Encoding.Default as the default code page formcs Hi,

Re: [Mono-dev] [PATCH] Use Encoding.Default as the default code page formcs

2005-10-24 Thread Atsushi Eno
Oops, am sorry I missed it too. I support the fix. Since we already have -codepage in mcs build itself, it should be seamlessly done. Atsushi Eno Kornél Pál wrote: Hi, I posted this patch two weeks ago but I got no comments. Could you review please? Kornél - Original Message - From:

[Mono-dev] Installers and relative paths

2005-10-24 Thread Wade Berrier
The latest Windows installer doesn't set any environment variables in the wrapper scripts and batch files (MONO_PATH, etc...). This works fine in finding the gac binaries. I've looked into doing this for the linux installer as well, and some programs didn't work. gmcs worked, but mcs didn't (cou

[Mono-dev] Problem with URIBuilder...

2005-10-24 Thread Hubert FONGARNAND
I've opened a new bug in bugzilla : http://bugzilla.ximian.com/show_bug.cgi?id=76501 If you execute the following code on mono : UriBuilder ub=new UriBuilder("http://mondomaine/trucmuche/login.aspx"); ub.Query=ub.Query.TrimStart(new char[]{'?'})+"&ticket=bla"; Console.WriteLine("(URIBUILDER)

[Mono-dev] New bug: Problem with null namespaces using XSLT

2005-10-24 Thread Andrés G. Aragoneses
I have just filed a new bug, if someone is interested: http://bugzilla.ximian.com/show_bug.cgi?id=76530 I hope it is not difficult to fix, and I would appreciate very much if this could be done before 1.2 release. Regards, Andrés [ knocte ] -- _

Re: [Mono-dev] Installers and relative paths

2005-10-24 Thread Robert Jordan
Wade, The latest Windows installer doesn't set any environment variables in the wrapper scripts and batch files (MONO_PATH, etc...). This works fine in finding the gac binaries. The path to the mono assemblies is computed from the executable's file name of the process that loads mono.dll. See

Re: [Mono-dev] runtime specification in nunit-console.exe.config

2005-10-24 Thread Kamil Skalski
Actually, as Sebastien mentioned in that thread, we cannot just install the 2.0 nunit assemblies, because they conflict with 1.1 profile ones. But indeed, removing .config file from nunit-console is a good idea, because it is rather meaningless on mono (the corlib should be choosen according to the

Re: [Mono-dev] corcompare patch for printing generic method type arguments

2005-10-24 Thread Atsushi Eno
Hi Marek, Marek Safar wrote: Hello Eno, Here is another patch for corcompare for generics support. With this patch it prints type arguments in generic methods. Suppose that we have void Foo () where T : IFoo, U : IBar Then it prints Foo[T(IFoo), U(IBar)] I prefer the sy

[Mono-dev] Totally baffed! multithread app totally different on two environments with MONO

2005-10-24 Thread ted leslie
I have a server process written on Mono that spawns 400 threads, runs great on one server, I just installed in on a different server, and the exact same program spawns ONE PROCESS for each thread (400 linux OS processes!!!) where as on the original server it just is ONE PROCESS. This is very twili

Re: [Mono-dev] Totally baffed! multithread app totally different on two environments with MONO

2005-10-24 Thread Jonathan Pryor
On Mon, 2005-10-24 at 21:12 -0400, ted leslie wrote: > mono does threading different depending on whether 2.4.X vs. 2.6.X kernel ?? The handling of threading changed between Linux 2.4 and 2.6 with the introduction of NPTL -- Native Posix Thread Libraries. 2.6 is far more compliant with the POSIX

Re: [Mono-dev] Installers and relative paths

2005-10-24 Thread Miguel de Icaza
Hello, > The latest Windows installer doesn't set any environment variables in > the wrapper scripts and batch files (MONO_PATH, etc...). This works > fine in finding the gac binaries. > > I've looked into doing this for the linux installer as well, and some > programs didn't work. gmcs worked,