Re: [Mono-dev] Static Variables

2006-09-13 Thread Patrick Earl
Seeing the mono_class_static_field_address function, I assumed that there might be an initial lookup for the address, even if the value itself was assigned directly later on. Is this not true? Perhaps even the lookup happens in a direct manner in the jit machine? I will try and produce a

Re: [Mono-dev] bug in xsd.exe

2006-09-13 Thread L.G. Meredith
Lluis,Thanks for the response. The schema validates against the W3C schema schema using Oxygen. i haven't had the chance, yet to validate it using any other validation tool. Does xsd.exe on mono not support all valid schema? What are the limitations? Best wishes,--gregOn 9/12/06, Lluis Sanchez

Re: [Mono-dev] bug in xsd.exe

2006-09-13 Thread Atsushi Eno
Hello, Mono's XML serialization engine, as well as .NET, does not support all valid schemas. Actually it works under pretty much constrained situation. Sadly there is no documentation on how it does *not* work. I once blogged one example I know:

[Mono-dev] FW: Visual Web MonoDeveloper

2006-09-13 Thread Matt Dockerty
Hi Dee, To run ASP.net 2.0 applications you need to use xsp2 instead of xsp. You can find the options to do this in the mono sections of your apache config. Getting ASP.net project support in monodevelop was unsuccessful for me. You have to compile it with the --enable-aspnet option. Also the

Re: [Mono-dev] Visual Web MonoDeveloper

2006-09-13 Thread Miguel de Icaza
Hello, I read somewhere (perhaps on mono-project.com) that MonoDevelop can develop web applications. So rather than using VWD, I figured I should use MonoDevelop and be guaranteed 1.1 support. I downloaded the VMware image (Mono 1.1.16.1 on SLED 10) and I don't see how to develop my web

[Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Mart Roosmaa
Hi, The attached patch implements the GetBytes method for SqliteDataReader and also converts enums to integer automatically when saving the data to DB. Is it ok to commit? Mart Roosmaa Index: Mono.Data.SqliteClient/SqliteDataReader.cs

[Mono-dev] About license systems

2006-09-13 Thread pablosantosluac
Hi, I know a question about a license system isn't very common on this list, but I have to try. We need a license system for our server application. We need it to work on Unix/Mono. I have seen several commercial systems, but the ones which look good, at first glance, only run on Windows. I've

Re: [Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Miguel de Icaza
Hey, The attached patch implements the GetBytes method for SqliteDataReader and also converts enums to integer automatically when saving the data to DB. Is it ok to commit? Joshua approved it. ___ Mono-devel-list mailing list

Re: [Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Joshua Tauberer
Miguel de Icaza wrote: The attached patch implements the GetBytes method for SqliteDataReader and also converts enums to integer automatically when saving the data to DB. Is it ok to commit? Joshua approved it. How mysterious. :) Like I'm just pulling the strings behind the scenes.

Re: [Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Jb Evain
Hey, Miguel de Icaza wrote: The attached patch implements the GetBytes method for SqliteDataReader and also converts enums to integer automatically when saving the data to DB. Is it ok to commit? Joshua approved it. Isn't there is a problem with the handling of enums when their

Re: [Mono-dev] [PATCH] Small SqliteClient improvments.

2006-09-13 Thread Joshua Tauberer
Jb Evain wrote: Miguel de Icaza wrote: The attached patch implements the GetBytes method for SqliteDataReader and also converts enums to integer automatically when saving the data to DB. Is it ok to commit? Joshua approved it. Isn't there is a problem with the handling of enums when

Re: [Mono-dev] SPAM-LOW: About license systems

2006-09-13 Thread Charlie Poole
I find it amusing that the sp extreme folks don't tell you what the license for /their/ software is on the web site. It's LGPL if anyone is curious. Charlie -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of pablosantosluac Sent: Wednesday,

Re: [Mono-dev] [PATCH] Rijndael optimization patch

2006-09-13 Thread Sebastien Pouliot
On Tue, 2006-09-12 at 00:47 +0900, Kazuki Oikawa wrote: Hi. I optimized Rijndael implementation. Before (Key and block size is 128bit): 2.22 MB/sec After: 21.9 MB/sec (ThinkPad T43, Pentium M 2GHz, Windows XP) Please review it. Please commit with a ChangeLog entry. Thanks! --

[Mono-dev] Mono JIT on MIPS - disappearing this argument in virtual call....

2006-09-13 Thread Mark E Mason
Hello all, I'm working on a MIPS port of the Mono JIT compiler. It's coming along fairly well -- my hello, world test is getting approximately halfway to actually producing output lol. I've run into a problem with generating calls to virtual functions with 'this' pointers. In the

Re: [Mono-dev] IRIX port

2006-09-13 Thread Mark E Mason
Hello, I'm working on a Linux/MIPS port -- close enough? ;-) /Mark -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Miguel de Icaza Sent: Tuesday, September 12, 2006 6:56 PM To: Mathew Yeates Cc: mono-devel-list@lists.ximian.com Subject: Re:

Re: [Mono-dev] IRIX port

2006-09-13 Thread Miguel de Icaza
Hey, I'm working on a Linux/MIPS port -- close enough? It will certainly help. I would say that probably 70% of the work is the architecture port, the other 30% is OS-specific work. Which usually includes ABI conventions for the particular platform, exception and signal handling. So that

Re: [Mono-dev] IRIX port

2006-09-13 Thread Mark E Mason
Hello, From: Miguel de Icaza [mailto:[EMAIL PROTECTED] Hey, I'm working on a Linux/MIPS port -- close enough? It will certainly help. I would say that probably 70% of the work is the architecture port, the other 30% is OS-specific work. Which usually includes ABI

Re: [Mono-dev] IRIX port

2006-09-13 Thread Miguel de Icaza
There's just a few mono/JIT internals I'm getting stumped on. If I can get some help on those, I think the rest should come together in pretty short order. I would help if I could, but am sure that Paolo and Zoltan or Sergey, which seems to have joined the group of porters can answer that

Re: [Mono-dev] Mono JIT on MIPS - disappearing this argument in virtual call....

2006-09-13 Thread Mark E Mason
Belay that - I found it. My mistake. It gets a lot farther now LOL Thanks again, /Mark -Original Message- From: Mark E Mason Sent: Wednesday, September 13, 2006 3:57 PM To: mono-devel-list@lists.ximian.com Cc: Mark E Mason Subject: Mono JIT on MIPS - disappearing this

Re: [Mono-dev] Environment.ProcessorCount

2006-09-13 Thread Jon Chambers
Updated patch for approval. Thanks Gonzalo for the tip.- JonathanOn 9/6/06, Gonzalo Paniagua Javier [EMAIL PROTECTED] wrote: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

Re: [Mono-dev] coda on bug in xsd.exe

2006-09-13 Thread Atsushi Eno
Nice. Blind implementation detail differences without any rationality is always out of my interest, but someone might be interested. Cheers, Atsushi Eno L.G. Meredith wrote: Atsushi, Lluis, In the original schema i sent i used a recursive group style specification (as the schema specified

[Mono-dev] Class Status updates

2006-09-13 Thread Wade Berrier
Hi, I've recently finished adding the class status webpage generation to the same cron job that produces the dailies (monolite, monocharger, etc). I copied scripts and files from trunk/release/buildbot/scripts to trunk/release/scripts/class_status. mono-snapshot.sh, which produces the dailies,