Re: [Mono-devel-list] FormsAuthentication [was: session_end Event (global.asax)]

2005-07-25 Thread Gonzalo Paniagua Javier
On Sat, 2005-07-23 at 10:16 +0200, Bernhard Herzog wrote: //if (protection == FormsProtectionEnum.None) return GetHexString (allTicket.ToString ()); //TODO: encrypt and validate Validation and encryption of those cookies is in svn HEAD now. Thanks for the reminder. -Gonzalo

Re: [Mono-devel-list] The first (attempt to checkin) managed collation patch

2005-07-25 Thread Paolo Molaro
On 07/24/05 Miguel de Icaza wrote: It can be done in two ways: embed the files in the mono binary like we do with the char tables or load the files from where mscorlib was loaded. Both are trivial to implement. For now I took the latter approach. That means however we need some

[Mono-devel-list] Found a bug in DrawBeziers in Graphics.cs (I think...)

2005-07-25 Thread Heinz Mueller
Hi all, at first a short introduction: my name and Company you can see below, I dabble around with Mono mre or less in my free time :-). To get a grip on it I wrote some short programs of my own (nothing special) and try to get to run sample programs from books (e.g. Programming Windows with C#

RE: [Mono-devel-list] mono Cygwin build fail on CSC error CS1904

2005-07-25 Thread Rafael Mizrahi
Thanks Kornél and Atsushi, Indeed, bug 75579 represent my problem, I will increase my Bugzilla usage. I managed to pass that problem with bootstrapped mcs and mono: make EXTERNAL_MCS=/usr/local/bin/mcs EXTERNAL_RUNTIME=/usr/local/bin/mono but failed on : = make[8]:

Re: [Mono-devel-list] mono Cygwin build fail on CSC error CS1904

2005-07-25 Thread Marek Safar
Hello, This problem should be fixed in SVN. Marek After updating mono and mcs, I fail to build mono on Cygwin. I have checked with other mono on Cygwin users and I am not the only one who experiences this problem. Do we need mcs bootstrap? Here is the log: make[7]: Entering directory

[Mono-devel-list] COM Interop

2005-07-25 Thread Jonathan S. Chambers
I am interested in implementing some support for COM Interop for the mono runtime. A goal is that the mono version of COM Interop could support various component models (COM, XPCOM, and Bonobo have been proposed); whether more than one can be supported at one time is another decision that

Re: [Mono-devel-list] momo on suse 9.3

2005-07-25 Thread Rafael Teixeira
If you want to contribute code it is best to compile from SVN. But you can do so to another prefix and install/upgrade to the latest release from the Mono channel in the standard prefix to be able to use that Mono-based goodies like Beagle and F-Spot. Remember that 9.3 is months old by now,

Re: [Mono-devel-list] gtk ComboBox questions...

2005-07-25 Thread Rafael Teixeira
Well the naming follows Gtk, so that you can reuse Gtk+ documentation and skills. But surely we have here a situation where a clearer name like NumberOfChildren or CountOfChildren would be a better choice, as Iter is implied by the class (in Gtk+ which in written in C it wasn't) so it isn't a

Re: [Mono-devel-list] DllNotFoundException

2005-07-25 Thread Rafael Teixeira
Again seems like someone didn't install gtk-sharp properly, with the .dll.config files... See http://www.mono-project.com/Interop_with_Native_Libraries for some background. On 7/24/05, Helge Kruse [EMAIL PROTECTED] wrote: Hello, I have installed mono 1.2.8.2 with the installer binary. I

Re: [Mono-devel-list] Error during Mono-1.1.8.2 installation

2005-07-25 Thread Rafael Teixeira
You are using the /usr/local prefix, and some pieces may have been installed to the /usr prefix. Choose one for all pieces at autogen.sh/configure time. HIH, On 7/25/05, Sridhar Kulkarni [EMAIL PROTECTED] wrote: Hi, I am trying to install mono-1.1.8-2 on my RedHat 9 m/c. I am getting the

Re: [Mono-devel-list] [GMCS] [PATCH] helper_compile_generic_method and poor performance

2005-07-25 Thread Martin Baulig
Hi, your patch looks good, I'll commit it tomorrow morning. Martin On Wed, 2005-07-20 at 23:48 +0200, Michal Moskal wrote: Hello, I've been further investigating poor mono performance on generic code, reported in #75444. By comparing profiler[1] logs of the generic and non-generic

RE: [Mono-devel-list] mono Cygwin build fail on CSC error CS1904

2005-07-25 Thread Rafael Mizrahi
Hi Marek, I asked around and realized that some of guys here work with SVN revision 46515. So, I have: * updated to revision 46515. * deleted the problematic file. $mcs/class/lib/net_2_0/System.Configuration.dll * build mono with no bootstrap. Now, feeling optimistic, I have: * updated to

Re: [Mono-devel-list] COM Interop

2005-07-25 Thread Rafael Teixeira
On 7/25/05, Jonathan S. Chambers [EMAIL PROTECTED] wrote: I am interested in implementing some support for COM Interop for the mono runtime. A goal is that the mono version of COM Interop could support various component models (COM, XPCOM, and Bonobo have been proposed); whether more

[Mono-devel-list] Solution to System.Drawing.GDIPlus Problem with Ubuntu

2005-07-25 Thread Hugo Ferreira
Heya there, Some people recently had problems with Ubuntu Linux and System.Drawing.GDIPlus (mono couldn't find DLL). Anyway, It's pretty easy to solve (once you get it).. To get a clue, run your application the following way: $ MONO_LOG_LEVEL=debug mono TestApplication.exe And you'll see that

Re: [Mono-devel-list] COM Interop

2005-07-25 Thread Kornél Pál
Hi, 2. As MS has a base COM object wrapper (__ComObject), I was planning a similar one for mono. This wrapper would hold onto the unmanaged object pointer and provide additional functionality as required. Does this sound ok? Yes, but you'll need a lot more baggage than this class. Issues with

Re: [Mono-devel-list] The first (attempt to checkin) managed collation patch

2005-07-25 Thread Atsushi Eno
Hello, Paolo Molaro wrote: All of that is fine, except that you get incorrect data, since we have arrays of shorts or ints, so we either give incorrect results on bigendian systems or we introduce code to byteswap at runtime, needlessly slowing down the code. The code should do what we already

[Mono-devel-list] Building mono-tools

2005-07-25 Thread Paul
Hi, I have both the bog standard and developer versions of gtk-sharp installed (as I've been told that they are happy side by side). However, when I try to compile mono-tools, I'm getting the following error which prevents the build. Any ideas what's going on? ./elabel.cs(74) warning CS0108:

Re: [Mono-devel-list] Building mono-tools

2005-07-25 Thread Ben Maurer
On Mon, 2005-07-25 at 22:03 +0100, Paul wrote: ./HtmlRender.cs(64) error CS1503: Argument 1: Cannot convert from `Gecko.WebControl' to `Gtk.Widget' ./HtmlRender.cs(64) error CS1501: No overload for method `Add' takes `1' arguments make[1]: *** [browser.exe] Error 1 make: *** [all-recursive]

Re: [Mono-devel-list] Building mono-tools

2005-07-25 Thread Paul
Hi, You're are om the 2.0 version of gecko-sharp, you need version 1.0. Blast and rude words! Actually I was working on a patch to make monodoc work with gecko 2.0, does anyone think that it would be worth while? You have one vote from this direction for such a patch :-) TTFN Paul --

Re: [Mono-devel-list] Building mono-tools

2005-07-25 Thread Ben Maurer
On Mon, 2005-07-25 at 14:06 -0700, Rafael Ferreira wrote: You're are om the 2.0 version of gecko-sharp, you need version 1.0. Am somewhat confused as to why people are even able to get past the configure stage, seeing as we have: PKG_CHECK_MODULES(GECKO_SHARP, gecko-sharp = 0.6) Actually I

Re: [Mono-devel-list] DateTime binary format patch

2005-07-25 Thread Daniel Morgan
Hubert, I have tested your patch and it works. I have applied your patch to svn in mcs/class/System.Data.OracleClient. It is revision 47677. Thanks, Daniel Hubert FONGARNAND wrote: I've made a little patch. With it, mono transmits datetime (as parameter) in a binary format (to avoid

Re: [Mono-devel-list] momo on suse 9.3

2005-07-25 Thread Massimiliano Mantione
On Sat, 2005-07-23 at 00:23 -0700, Dennis Hayes wrote: do I install the Mono that comes with Suse, or from SVN, or install the Suse version, then up grade to the SVN version? Ways of working are personal things (just like text editors), so... use these advices at your own risk ;-) Anyway, this