Re: [Mono-dev] [PATCH] Generate Consts.vb from Consts.cs (3)

2006-09-06 Thread Rafael Mizrahi
Hi Kornél, In the context of Microsoft.VisualBasic, having the Consts.vb file auto-generated, I agree with your approach. But I guess that this patch should be discussed in context of mono build. Microsoft.VisualBasic run-time and I think vbnc too, are not yet integrated into the mono build

[Mono-dev] [PATCH] [VBNC] Treat AscW as CInt with /novbruntimeref

2006-09-06 Thread Kornél Pál
Hi, I added a hack to EmitArgumentsAndCallOrCallVirt to support the previously discussed functionality. I don't know how exactly the stack evaluation in vbnc works and I keep getting ... reached, but stack is not empty. Another missing functionality is that the return value of this

Re: [Mono-dev] [PATCH] [VBNC] Treat AscW as CInt with /novbruntimeref

2006-09-06 Thread Rolf Bjarne
Hello, Commenting code inline: +If Info.Compiler.CommandLine.NoVBRuntimeRef AndAlso Info.Compiler.Assembly.IsDefinedHere(Method.DeclaringType) AndAlso Method.IsStatic AndAlso CompareNameOrdinal(Method.Name, AscW) Then +Dim methodParameters() As ParameterInfo =

Re: [Mono-dev] [PATCH] [VBNC] Treat AscW as CInt with /novbruntimeref

2006-09-06 Thread Kornél Pál
Hi, Thanks for your help. AscW_emit.diff contains a modified version of the previous patch. I tried to implement the replacement at resolving but I was unable to succeed. AscW_resolve.diff contains my try. Kornél - Original Message - From: Rolf Bjarne [EMAIL PROTECTED] To:

Re: [Mono-dev] [Mono-Dev] [PATCH] System.Web.UI.WebControls.Style.cs, System.Web.UI.WebControls.TreeNodeStyle.cs

2006-09-06 Thread Lluis Sanchez
El mar, 05-09-2006 a las 04:57 -0700, Igor Zalmanovich escribió: Hi All, I am working on TreeView control and all classes that it depends on. I found that TreeNodeStyle does not work properly, in particular the ViewState feature (see corresponding test case). Which is the test

Re: [Mono-dev] [Mono-Dev] [PATCH]System.Web.UI.WebControls.Style.cs, System.Web.UI.WebControls.TreeNodeStyle.cs

2006-09-06 Thread Igor Zalmanovich
Test case was in attached patch. I send it again. Igor. -Original Message- From: Lluis Sanchez [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 06, 2006 5:25 PM To: Igor Zalmanovich Cc: mono-devel-list@lists.ximian.com; [EMAIL PROTECTED] Subject: Re: [Mono-dev] [Mono-Dev]

Re: [Mono-dev] [PATCH] TestConfiguration.cs is not a common file (2)

2006-09-06 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kornél Pál wrote: Hi, Hi Kornél! TestConfiguration.cs is currently in mcs/build/common but is only used by Npgsql_test and it's functionality is specific to Npgsql as well. There is no use to have this file in mcs/build/common. I posted

Re: [Mono-dev] IE7 RC1 and browsercaps.ini

2006-09-06 Thread Gonzalo Paniagua Javier
On Fri, 2006-09-01 at 15:25 +0200, Hubert FONGARNAND wrote: Hello I've written a little aspx page that show a pb with IE7 [...] I've notified that browsercaps.ini has entries for IE7 ([Mozilla/4.0 (compatible; MSIE 7.0b; *Windows XP*.NET CLR*)*]) but with ethereal (wireshark) i've seen

Re: [Mono-dev] Adding an entry to Monologue

2006-09-06 Thread Gonzalo Paniagua Javier
On Mon, 2006-09-04 at 22:53 -0700, Daniel Morgan wrote: Gonzalo would probably be the best person to ask about getting ATOM to work with Monologue. Check http://atom.geekhood.net/ It has a xsl transform to convert from atom to rss. Someone could add that to monologue and transform atom files

Re: [Mono-dev] Environment.ProcessorCount

2006-09-06 Thread Gonzalo Paniagua Javier
On Tue, 2006-09-05 at 15:56 -0400, Jon Chambers wrote: Here is a patch (from a coworker) for Environment.ProcessorCount. Please review. io-layer implements GetSystemInfo and already uses sysconf for that. Also the variable queried is _SC_NPROCESSORS_ONLN, as the number of total processors might

[Mono-dev] Bug System.Web.Services

2006-09-06 Thread Vladimir Krasnov
Hello Lluis, The is a bug in getting wsdl, if web service has a web method with char parameter, it will be declared twice in the wsdl. Please look at the attached patch that fixes the problem. XmlSchemaExporter.cs.patch Description: XmlSchemaExporter.cs.patch

Re: [Mono-dev] Bug System.Web.Services

2006-09-06 Thread Lluis Sanchez
Hi! Well, the patch looks more like a workaround rather than a real fix. Can you provide a test case I can use to see the problem? Thanks, Lluis. El mié, 06-09-2006 a las 09:07 -0700, Vladimir Krasnov escribió: Hello Lluis, The is a bug in getting wsdl, if web service has a web method with

[Mono-dev] [PATCH] Added Decimal.TryParse Methods

2006-09-06 Thread Michael Schurter
Attached is a patch to implement the 2 Decimal.TryParse methods. I wrote very little new code. I turned Decimal.stripStyles into an internal Parse method that each Parse/TryParse method wraps. I stole the idea/structure from Double.cs. This is my first Mono patch, so I'm sure I did lots

Re: [Mono-dev] [PATCH] Added Decimal.TryParse Methods

2006-09-06 Thread Miguel de Icaza
Hey, I'm a Windows developer and work and Linux user at home. So I'm very interested in Mono, but the whole build system is agonizing to me. I found myself running make sudo make install on Mono just to test my tiny changes to corlib/System/Decimal.cs. There has to be a better way,

Re: [Mono-dev] [PATCH] Added Decimal.TryParse Methods

2006-09-06 Thread Miguel de Icaza
Hello, This is btw, mentioned in the mcs/README file, I know, its not very obvious. I meant that this is not very obvious, because mcs is not the traditional place where the build takes place, as you well pointed out the build *typically* happens from mono, so having a build README on a

Re: [Mono-dev] [PATCH] Added Decimal.TryParse Methods

2006-09-06 Thread Michael Schurter
Miguel de Icaza wrote: I'm a Windows developer and work and Linux user at home. So I'm very interested in Mono, but the whole build system is agonizing to me. I found myself running make sudo make install on Mono just to test my tiny changes to corlib/System/Decimal.cs. There has to be

Re: [Mono-dev] [PATCH] Added Decimal.TryParse Methods

2006-09-06 Thread Michael Schurter
Miguel de Icaza wrote: This is btw, mentioned in the mcs/README file, I know, its not very obvious. I meant that this is not very obvious, because mcs is not the traditional place where the build takes place, as you well pointed out the build *typically* happens from mono, so having a build

[Mono-dev] debugger breakpoint question

2006-09-06 Thread pablosantosluac
hi, If I have an application which dinamically loads assemblies, how can I set breakpoints on the loaded code? pablo ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list