[Mono-dev] Re: Regressions in generics runtime support

2006-02-20 Thread Raja R Harinath
Hi Kamil, "Kamil Skalski" <[EMAIL PROTECTED]> writes: > I noticed a few refactorings of generics support in mono recently. > Unfortunately there appeared some regressions. > > First one comes from patch > http://lists.ximian.com/pipermail/mono-patches/2006-February/070865.html > > It causes follo

Re: [Mono-dev] Re: Regressions in generics runtime support

2006-02-20 Thread Paolo Molaro
On 02/20/06 Raja R Harinath wrote: > I agree. They're probably not related. However, I couldn't even > configure the nemerle tree since it complains about invalid IL in the > bootstrap compiler. > > The IL looks like: > > IL_04bd: call !!0 class > [Nemerle]Nemerle.Core.Option::UnSome

[Mono-dev] System.Web.UI.WebControls.DataList.RepeatColumns value validation missing.

2006-02-20 Thread Vladimir Krasnov
Hello, There should be value validation in RepeatColumns property, exception should be thrown in case of negative value. Test case: /System_Web_UI_WebControls/DataList/DataList_RepeatColumns.aspx Please approve the attached patch If no one objects, I will commit. Vladimir Krasnov DataList.cs

Re: [Mono-dev] MonoType patch

2006-02-20 Thread Paolo Molaro
On 02/18/06 Joachim Ante wrote: > I attached a patch which will output a better exception string if a method, > property or field could not be found or if the method couldn't be bound. Committed, thanks! lupus -- - [EMAIL PROTECTED

Re: [Mono-dev] The State Of Mono Assembly Verification?

2006-02-20 Thread Paolo Molaro
On 02/17/06 Jim Purbrick wrote: > http://homepage.ntlworld.com/james.purbrick/VerifierTests2.tar [...] > I think they do what you're after. Eventually we can > get rid of the examplar tests and just use the > templates, create_test_set scripts and individual > tests where they make sense. Thanks.

[Mono-dev] Handling CTRL-C

2006-02-20 Thread pablosantosluac
Is there a portable way to handle CTRL-C in a console application? ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] Bug in System.Web.UI.WebControls.DataList.RenderContents

2006-02-20 Thread Vladimir Krasnov
Hello, In case of no items it is nothing to render, so the control should avoid of generating empty table. Test case: /System_Web_UI_WebControls/BaseDataList/BaseDataList_DataSource.aspx Please approve the attached patch If no one objects, I will commit. Vladimir Krasnov DataList.cs.8.patch

[Mono-dev] MacOSX 10.2 compilation patch

2006-02-20 Thread Joachim Ante
Hi, This patch fixes some issues when compiling for mac os x 10.2. Joachim Ante mono10.2.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] patch for String equality/inequality

2006-02-20 Thread Paolo Molaro
On 02/17/06 Marek Safar wrote: > > I noticed that string op_Equality is slow, about 2x than MS. > > There might be chances to improve it. > > > I tried to optimize internal method used for Equality and here are > results of my string.Equal micro benchmark and patch (including both of > them). L

[Mono-dev] System.Web.Util.DataSourceResolver wrong exceptions

2006-02-20 Thread Vladimir Krasnov
Hello, ResolveDataSource method throws wrong exceptions. See attached patch for details. Test case: /System_Web_UI_WebControls/BaseDataList/BaseDataList_DataMember.aspx Please approve the attached patch If no one objects, I will commit. Vladimir Krasnov DataSourceResolver.cs.patch Descriptio

[Mono-dev] Bug in System.Web.UI.ControlCollection

2006-02-20 Thread Vladimir Krasnov
Hello, There is a bug in CopyTo method of ControlCollection. See attached patch for details. Test case: /System_Web_UI_WebControls/TableCellCollection/TableCellCollection_CopyT o_AI.aspx Please approve the attached patch If no one objects, I will commit. Vladimir Krasnov ControlCollection.cs

RE: [Mono-dev] Bugs in System.Web.UI.WebControls.CheckBox and CheckBoxList

2006-02-20 Thread Vladimir Krasnov
Yes, you right. -Original Message- It seems that with this change, you can remove the following identical lines from 386 (the else branch of the "if (align == TextAlign.Right)" in Render()), as they're just a few lines above the call to InternalAddAttributesToRender: if (!Enabled)

RE: [Mono-dev] Bug System.Web.UI.WebControls.RadioButton and RadioButtonList

2006-02-20 Thread Vladimir Krasnov
Yes, .net stores the Value also in ViewState. -Original Message- I don't like the Attribute[]/ViewState[] change very much. Can you verify that Value is indeed stored in the ViewState? If it isn't, you should change your property to use Attribute instead of ViewState. The TabIndex chang

Re: [Mono-dev] MacOSX 10.2 compilation patch

2006-02-20 Thread Miguel de Icaza
Hello, > This patch fixes some issues when compiling for mac os x 10.2. But this patch changes the behavior of Mono when built on Mono 10.3, maybe this code needs to use some configure.in-based checks ___ Mono-devel-list mailing list Mono-devel-list@lis

[Mono-dev] libgtkembedmoz.so + sigsegv

2006-02-20 Thread Jurgen Schoeters
Hi, My program sometimes crashes with a segmentation fault caused by libgtkembedmoz.so . I've seen some bug reports on the net but no solution,does someone know how to bypass the problem ? I've used libgtkembedmoz.so from mozilla-1.7.12 . Greetings, Jurgen [EMAIL PROTECTED] client_app]$ mono

Re: [Mono-dev] MacOSX 10.2 compilation patch

2006-02-20 Thread Joachim Ante
> Hello, > >> This patch fixes some issues when compiling for mac os x 10.2. > > But this patch changes the behavior of Mono when built on Mono 10.3, > maybe this code needs to use some configure.in-based checks Which part of the patch changes behaviour when building on 10.3? Joachim Ante

[Mono-dev] Screen Capture with Mono

2006-02-20 Thread Evan Hazlett
hey all... im looking for a way to perform a screen capture with Mono in Linux... i know in Win32, you can use dllimport, but Im not sure what to use with Linux... Any Ideas? btw...  i did do a quick google search.. ;) evan ___ Mono-devel-list mai

Re: [Mono-dev] Re: Regressions in generics runtime support

2006-02-20 Thread Kamil Skalski
Hi! 2006/2/20, Paolo Molaro <[EMAIL PROTECTED]>: > > The 'call' puts a valuetype on the stack, which mono's il-verifier for > > 'ldfld' doesn't like. The ECMA 335 April 2005 draft says that it should > > be allowed -- maybe this is a change from the older ECMA standard? > > This is already fixed

[Mono-dev] [OT] No way to create account on mono-project?

2006-02-20 Thread Joshua Kugler
I tried going here to create an account: http://www.mono-project.com/index.php?title=Special:Userlogin&returnto=Languages But there seems to be no options or fields to create an account. Is this intentional? See screen shot for the wording that indicates you should be able to create an accoun

[Mono-dev] Is anyone using mono develop in 1.1.13.2?

2006-02-20 Thread Joshua Kugler
I've posted about this before, but have not gotten any reply. Since the Mono developers say they use their own tools, I'm not sure why this hasn't been addresses. Is anyone using the latest release of Monodevelop? When I try to run it, I get this error: [EMAIL PROTECTED] ~]$ monodevelop Sys

Re: [Mono-dev] MacOSX 10.2 compilation patch

2006-02-20 Thread Miguel de Icaza
Hello, > > But this patch changes the behavior of Mono when built on Mono 10.3, > > maybe this code needs to use some configure.in-based checks > Which part of the patch changes behaviour when building on 10.3? With 10.3 there are no changes necessary. I do not know how things like "environ" are

RE: [Mono-dev] Is anyone using mono develop in 1.1.13.2?

2006-02-20 Thread Jonel Rienton
I figured you prolly used the mono installer from Mono's website? If yes, it appends export PATH="/opt/mono-1.1.13/bin:/usr/java/home/bin:$PATH" export PKG_CONFIG_PATH="/opt/mono-1.1.13/lib/pkgconfig:$PKG_CONFIG_PATH" export MANPATH="/opt/mono-1.1.13/share/man:$MANPATH" export LD_LIBRARY_PATH="

Re: [Mono-dev] Is anyone using mono develop in 1.1.13.2?

2006-02-20 Thread Lluis Sanchez
Hi, Please carefully read the mini FAQ in the installer instructions. The error you are getting is documented there: http://www.mono-project.com/InstallerInstructions Lluis. El lun, 20-02-2006 a las 13:45 -0900, Joshua Kugler escribió: > I've posted about this before, but have not gotten any re

Re: [Mono-dev] Is anyone using mono develop in 1.1.13.2?

2006-02-20 Thread Joshua Kugler
I do that those lines in my .bashrc. And they are being read: Output from set|grep PATH: LD_LIBRARY_PATH=/home/joshua/mono-1.1.13.2/lib:/home/joshua/mono-1.1.13.2/lib: MANPATH=/home/joshua/mono-1.1.13.2/share/man:/home/joshua/mono-1.1.13.2/share/man: PATH=/home/joshua/mono-1.1.13.2/bin:/home/jos

[Mono-dev] 1003 Ways To Break A Runtime

2006-02-20 Thread Jim Purbrick
Hi Paolo/All, I've started using templates parameterized by types and opcodes as it makes the tests much easier to write and check. I've written tests for shifts, stack merging and coercion this way and started converting the old tests and now have 15 shell scripts which generate 1003 tests :-)

[Mono-dev] [PATCH] Build Mono.Data.Sql on Win32

2006-02-20 Thread Daniel Morgan
I have a patch to add a Makefile to build Mono.Data.Sql.dll on Win32 without having to use autotools. You still need Mono and Cygwin though. This allows you to build Mono.Data.Sql for applications outside of MonoDevelop. Is this patch okay? CSC=mcs SCS_FLAGS= top_srcdir = ../../.. top_bui

[Mono-dev] Mono.Data.Sql and Mono.Data

2006-02-20 Thread Daniel Morgan
Christian, I was thinking about this more. If we are not able to move Mono.Data.Sql into Mono.Data because there is already too much stuff in mcs, I suggest we do the opposite. We move the ProviderFactory in Mono.Data into Mono.Data.Sql. What do you think? If not, then we would need to c

Re: [Mono-dev] Is anyone using mono develop in 1.1.13.2?

2006-02-20 Thread Joshua Kugler
On Monday 20 February 2006 14:46, Lluis Sanchez wrote: > Hi, > > Please carefully read the mini FAQ in the installer instructions. The > error you are getting is documented there: > > http://www.mono-project.com/InstallerInstructions > > Lluis. Hmm...well, since other mono apps ran, I guess I over

Re: [Mono-dev] 1003 Ways To Break A Runtime

2006-02-20 Thread Ankit Jain
Hi, > > Use: > > .field int32& val1 > > and > > .field [mscorlib]System.TypedReference val2 > > > > They are not allowed, so I'm not sure ilasm will > > compile them. > > ILASM doesn't seem to like them. I tried .field public int32& i .field public class [mscorlib]Syst