Re: [Mono-dev] Config file w/ mkbundle

2007-12-20 Thread Torello Querci
Hi Ricardo, I make some test at the beginning of November about this. Unfortunately seems not work. I talk with Atsuschi and he tell me that this problem is now fixed but I not make any test, sorry. Best Regards, Torello Querci 2007/12/19, Ricardo Ruiz [EMAIL PROTECTED]: I wish to use a config

Re: [Mono-dev] [Patch] NameObjectCollectionBase, HttpCookieCollection

2007-12-20 Thread Juraj Skripsky
Hi Gert, I'm attaching my patches, updated as per your suggestions. - Juraj On Thu, 2007-12-20 at 10:06 +0100, Gert Driesen wrote: Hi Juraj, I'd advise against using ExpectedException when multiple calls are made in the test, as this may lead to false positives. For example:

[Mono-dev] getting Error while compileing Mono-1-2.4

2007-12-20 Thread Sanjay Tripathi
Please, Help me out form this. I'm getting error while I'm compiling the Mono-1.2.4 on solaris box. gmake[3]: Entering directory `/usr/local/mono-1.2.6/mcs' gmake profile-do--default--all profile-do--net_2_0--all gmake[4]: Entering directory `/usr/local/mono-1.2.6/mcs'

[Mono-dev] Build Mono runtime under windows CE 5.0 or higher

2007-12-20 Thread Omri Azencot
Hello I am intrested in building mono runtime under windows CE 5.0 and I wonder if someone tried it already ? I know about this guide: http://www.mono-project.com/Compiling_Mono_VSNET for building mono under Visual Studio .NET 2005. Another question is if I would want to convert myself the

Re: [Mono-dev] FW: [Bug 349875] DictionaryTKey, TValue stores values out of order.

2007-12-20 Thread Josh Mouch
I recall reading somewhere that when possible, mono will try to mimic the behavior of .Net, to make it easier for people to migrate from the later to the former. I can't find that reference now, so maybe it's all in my head. :) -Original Message- From: Juraj Skripsky [mailto:[EMAIL

[Mono-dev] [PATCH] Updated managed Marshal.Copy implemantations

2007-12-20 Thread Kornél Pál
Hi, I have reworked the patch: - added Array.GetElementSize - added Array.GetOffsetToArrayData - rename Object.obj_address to Object.UnsafeAddrOfPinnedObject that is static and I think is a more descriptive name for an internal method. All of them are inlined by JID. Modified

[Mono-dev] System.Diagnostics.PerformanceCounter.NextValue

2007-12-20 Thread matte
Im running mod_mono/1.2.4 and getting a The requested feature is not implemented. when trying to call System.Diagnostics.PerformanceCounter.NextValue() in a method to return the uptime of the server. Can anyone tell me if this is a problem with my local mono install being out of date (im new at

[Mono-dev] Mono Web service on 1.2.6

2007-12-20 Thread Gwyneth Morrison
Good Day, This short program is being used to test a web service from mono to a windows server. using System; using System.Collections.Generic; using System.Text; using ConsoleApplication1.mywebservice; using System.Data; namespace ConsoleApplication1 { class Program { static

Re: [Mono-dev] mono/mini/driver.c patch for RHEL3 compatability

2007-12-20 Thread Paolo Molaro
On 12/19/07 C.J. Adams-Collier wrote: Zoltan asked that I make a change to configure.in as well, but I wanted to send this before I forgot about it. The configure.in change is what is more important as you need to make sure you won't break the correct systems in your quest for supporting an old

Re: [Mono-dev] 1.2.6: threads.h

2007-12-20 Thread Paolo Molaro
On 12/14/07 Sebastian Good wrote: I am compiling an embedding library which #includes mono/metadata/threads.h, however in 1.2.6 this file does not compile cleanly. threads.h apparently further includes mono/metadata/threads-types.h, which is no longer shipped with mono. Commenting out

Re: [Mono-dev] [PATCH] Managed Marshal.Copy implemantations

2007-12-20 Thread Paolo Molaro
On 12/17/07 Kornél Pál wrote: (for example the original C implementation has a bug and in your code it's duplicated several times) What is that bug? Integer overflow when doing the array range check. and you also managed to hide the assignment of a local var inside of a conditional

Re: [Mono-dev] mono/mini/driver.c patch for RHEL3 compatability

2007-12-20 Thread Paolo Molaro
On 12/20/07 C S Vadiraj wrote: --- mono/mini/driver.c 2007-12-19 15:04:53.0 -0800 +++ mono/mini/patched-driver.c 2007-12-19 15:05:20.0 -0800 @@ -706,8 +706,16 @@ #if HAVE_SCHED_SETAFFINITY if (getenv (MONO_NO_SMP)) { +# ifdef

[Mono-dev] [Patch] System.Web.UI.Page.cs

2007-12-20 Thread Igor Zelmanovich
Attached patch is refactoring only. It splits method such InternalProcessRequest to several methods. It is required for implementing alternative hosting under TARGET_J2EE. Please review. Regards, Igor Zelmanovich. [EMAIL PROTECTED] ___

[Mono-dev] [Patch] System.Web.UI.Page.cs

2007-12-20 Thread Igor Zelmanovich
Attached patch is refactoring only. It splits method such InternalProcessRequest to several methods. It is required for implementing alternative hosting under TARGET_J2EE. Please review. Regards, Igor Zelmanovich. [EMAIL PROTECTED] Page.patch Description: Page.patch

Re: [Mono-dev] [Patch] System.Web.UI.Page.cs

2007-12-20 Thread Marek Habersack
On Thu, 20 Dec 2007 04:08:02 -0800, Igor Zelmanovich [EMAIL PROTECTED] scribbled: Attached patch is refactoring only. It splits method such InternalProcessRequest to several methods. It is required for implementing alternative hosting under TARGET_J2EE. Please review. Please commit,

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-20 Thread Mario Sopena Novales
Hi, On 19/12/2007, Miguel de Icaza [EMAIL PROTECTED] wrote: * Editing in the ECMA provider is hard, but Mike has a plan for that. Is there any doc or something we could review? No, we only spoke on the phone about it. The idea is that Mike wants to switch to use

Re: [Mono-dev] [PATCH] Managed Marshal.Copy implemantations

2007-12-20 Thread Kornél Pál
Attached an update patch to this message. Please see the comments in http://lists.ximian.com/pipermail/mono-devel-list/2007-December/026200.html What is that bug? Integer overflow when doing the array range check. Thanks for pointing this out, I believed that my checks were correct but now

Re: [Mono-dev] FW: [Bug 349875] DictionaryTKey, TValue stores values out of order.

2007-12-20 Thread Zoltan Varga
Hi, We do try to mimic MS behaviour but this case is hard to solve, as what seems to be the MS behaviour is probably just an accident due to their implementation of GetHashCode. Zoltan On Dec 19, 2007 8:40 PM, Josh Mouch [EMAIL PROTECTED] wrote: I recall reading somewhere that

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-20 Thread Lluis Sanchez
Hi! El dc 19 de 12 del 2007 a les 12:36 -0500, en/na Miguel de Icaza va escriure: * Editing in the ECMA provider is hard, but Mike has a plan for that. Is there any doc or something we could review? No, we only spoke on the phone about it. The idea is that Mike

Re: [Mono-dev] [PATCH] System.Threading.Parallel

2007-12-20 Thread Andreas Färber
Am 13.12.2007 um 23:34 schrieb Andreas Färber: Attached is a patch adding the System.Threading.Parallel assembly, an optional part of the ECMA-335 standard (Annex G). The initial implementation is single-threaded, as permitted by the standard. All my test cases pass. Please review.

Re: [Mono-dev] System.Diagnostics.PerformanceCounter.NextValue

2007-12-20 Thread Miguel de Icaza
Hello, The feature does not exist, so you need to remove all the calls to PerformanceCounter class. Im running mod_mono/1.2.4 and getting a The requested feature is not implemented. when trying to call System.Diagnostics.PerformanceCounter.NextValue() in a method to return the uptime of

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-20 Thread Mike Kestner
On Thu, 2007-12-20 at 14:56 +0100, Lluis Sanchez wrote: The idea is that Mike wants to switch to use GtkTextView to render the documentation, and at the same time, this would allow us to implement editing very easily. Even if GtkHtml is very limited, it is much better than GtkTextView

Re: [Mono-dev] Mono.Addins in Monodoc

2007-12-20 Thread Lluis Sanchez
El dj 20 de 12 del 2007 a les 10:15 -0600, en/na Mike Kestner va escriure: On Thu, 2007-12-20 at 14:56 +0100, Lluis Sanchez wrote: The idea is that Mike wants to switch to use GtkTextView to render the documentation, and at the same time, this would allow us to implement editing very

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread pablosantosluac
Hi Geoff, It looks like a great work!! Ok, please take a look at your macos Quartz driver running the most beautiful :-P winforms application: http://www.flickr.com/search/?q=plastic+scm+macos Unfortunately it is quite unstable on MacOS right now, but David can point out many of the issues

[Mono-dev] mono wrapper for g_cond_wait and g_cond_broadcast

2007-12-20 Thread Travis Miller
This may be somewhat off topic but I'm trying to find the glib-sharp equivalent of the c glib functions g_cond_wait() and g_cond_broadcast(). These would provide a very clean way of keeping a group of worker threads in lock step. Any help would be greatly appreciated. I looked through monodoc

[Mono-dev] Patch for System.Web.HttpApplication

2007-12-20 Thread Vladimir Krasnov
Hello, Please review and approve attached patch that fixes the following bugs: 1. Response.Redirect does not work from Page_Error error handler, instead user gets the source exception 2. Context.ClearError does not work in Page_Error error handler 3. Thread.Abort() call initiated from user code

[Mono-dev] [PATCH] Sys.Data expressions

2007-12-20 Thread Konstantin Triger
Hello, Attached a patch for several issues in Sys.Data expression evaluator. Please review. Regards, Konstantin Triger jay.patch Description: jay.patch ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] Kudos Called For

2007-12-20 Thread Jerry Houston
I'm a long-time Win32 veteran who's been working as a winform/webservice/tools developer since .NET 1.0. My company adopted the new paradigm and the C# language for our flagship product development back when a lot of folks couldn't even spell .NET, let alone know what it was, and I've been at it

Re: [Mono-dev] [Patch] NameObjectCollectionBase, HttpCookieCollection

2007-12-20 Thread Gert Driesen
Hi Juraj, I made some adjustments to your tests to get them to pass on both .NET 2.0 (SP1) and .NET 1.1. I also improved some existing tests that may require additional changes before they pass on Mono. Gert PS. Sorry if the attachment is binary (Outlook, says it all ...). -Original

[Mono-dev] Control-C handler

2007-12-20 Thread pablosantosluac
Hi, I've found the following code to set a Control-C handler on a .NET 1.1 application. http://geekswithblogs.net/mrnat/archive/2004/09/23/11594.aspx Is there a way to do the same on Linux/Mono? Thanks, pablo ___ Mono-devel-list mailing list

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread Geoff Norton
Pablo, Ok, please take a look at your macos Quartz driver running the most beautiful :-P winforms application: http://www.flickr.com/search/?q=plastic+scm+macos Looks great! Unfortunately it is quite unstable on MacOS right now, but David can point out many of the issues he's

Re: [Mono-dev] Control-C handler

2007-12-20 Thread Jonathan Pryor
On Thu, 2007-12-20 at 18:56 +0100, pablosantosluac wrote: I've found the following code to set a Control-C handler on a .NET 1.1 application. http://geekswithblogs.net/mrnat/archive/2004/09/23/11594.aspx Is there a way to do the same on Linux/Mono? You can use signal(2), which is

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread Gavin Landon
Looks a lot better than Surround SCM.. David, are you using Adobe AIR and/or Flex for the UI? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of pablosantosluac Sent: Thursday, December 20, 2007 10:57 AM To: Geoff Norton; David Suarez Cc:

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread David Suarez
Hi Gavin, Looks a lot better than Surround SCM.. David, are you using Adobe AIR and/or Flex for the UI? Mono winforms only, with several custom controls. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread Gavin Landon
Wow.. Looks really good. I've done some development in AIR and that UI I would have never guessed it wasn't AIR. -Original Message- From: David Suarez [mailto:[EMAIL PROTECTED] Sent: Thursday, December 20, 2007 12:43 PM To: Gavin Landon Cc: mono-devel-list@lists.ximian.com Subject: RE:

Re: [Mono-dev] Control-C handler

2007-12-20 Thread Miguel de Icaza
Hello, You can use signal(2), which is helpfully exposed by Mono.Posix.dll. See the attached program. This actually would corrupt the application state, because the C-c handler will run the entire JIT at that point and this happens in the same thread as the executing thread. A better

Re: [Mono-dev] Control-C handler

2007-12-20 Thread Jonathan Pryor
On Thu, 2007-12-20 at 14:16 -0500, Miguel de Icaza wrote: Hello, You can use signal(2), which is helpfully exposed by Mono.Posix.dll. See the attached program. This actually would corrupt the application state, because the C-c handler will run the entire JIT at that point and this

[Mono-dev] gtk# propertygrid question

2007-12-20 Thread [EMAIL PROTECTED]
hi again: I think that something happend with my previous mail, but in any case here is again: I want to write a gtk# property editor widget, but I don't know if may be something like this is allready available or if you have any sugestion about some control/code that can be traslated/adapted

[Mono-dev] xsp2 problem

2007-12-20 Thread Anton Andreev
Hi, I am using the following bat file to execute my website from test directory: @echo off call d:\PROGRA~1\MONO-1~1.6\bin\setmonopath.bat cd /D D:\test xsp2 --root . --port 8088 --applications /:. and then: http://localhost:8088/ but I get the following error: /Path '/' was not

[Mono-dev] mono CodeDom problem

2007-12-20 Thread [EMAIL PROTECTED]
Hi Guys: I have this code from a example of a simple code generator with CodeDom (from here http://www.15seconds.com/issue/020917.htm , I list the code at end of the message), but with mono I only get the using and namespace declarations...I see in the status page of mono that the codedom is

[Mono-dev] xsp2 problem

2007-12-20 Thread Anton Andreev
Hi, I have this problem to half of my website pages: Server Error in '/' Application /Arg_InsufficientSpace Parameter name: chars/ *Description: *Error processing request. *Error Message: *HTTP 500.

Re: [Mono-dev] gtk# propertygrid question

2007-12-20 Thread Michael Hutchinson
On Dec 20, 2007 3:29 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: hi again: I think that something happend with my previous mail, but in any case here is again: I want to write a gtk# property editor widget, but I don't know if may be something like this is allready available or if you

Re: [Mono-dev] mono CodeDom problem

2007-12-20 Thread Ivan N. Zlatev
[EMAIL PROTECTED] wrote: Hi Guys: I have this code from a example of a simple code generator with CodeDom (from here http://www.15seconds.com/issue/020917.htm , I list the code at end of the message), but with mono I only get the using and namespace declarations...I see in the status

Re: [Mono-dev] mono CodeDom problem

2007-12-20 Thread [EMAIL PROTECTED]
thanks Ivan, bad source info then, the link that you send me is broken, but of course I'm going to search for better info on the net.. thanks again. Mauricio Ivan N. Zlatev wrote: [EMAIL PROTECTED] wrote: Hi Guys: I have this code from a example of a simple code generator with CodeDom

Re: [Mono-dev] mono CodeDom problem

2007-12-20 Thread Ivan N. Zlatev
[EMAIL PROTECTED] wrote: thanks Ivan, bad source info then, the link that you send me is broken, but of course I'm going to search for better info on the net.. The link opens fine here. Try this one - http://msdn2.microsoft.com/en-us/library/650ax5cx.aspx thanks again. Mauricio Ivan

Re: [Mono-dev] Control-C handler

2007-12-20 Thread pablosantosluac
Ok, I think I got a bit lost here... how should I proceed then? Thanks, pablo - Original Message - From: Jonathan Pryor [EMAIL PROTECTED] To: Miguel de Icaza [EMAIL PROTECTED] Cc: mono-devel-list@lists.ximian.com Sent: Thursday, December 20, 2007 8:41 PM Subject: Re: [Mono-dev]

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread pablosantosluac
Just pure Mono/WinForms... and the results really paid off! So, I think it is quite clear there are opportunities to make some great GUI multiplatform code with WinForms... so yes, mono is ready for the enterprise (http://tirania.org/blog/archive/2007/Dec-06.html), and not only on the GUI...

Re: [Mono-dev] 1.2.6 on mac

2007-12-20 Thread pablosantosluac
Ok, it seems the problems arised using your blog driver... We'll try to send you some testcases, but it won't be easy because most of the times you need a complex app to reproduce the problems... pablo - Original Message - From: Geoff Norton [EMAIL PROTECTED] To: pablosantosluac