[Mono-dev] Marshalling Structures (size = sizeof-1)

2006-09-11 Thread William Lahti
First, the structure in question:[StructLayout(LayoutKind.Sequential)]public struct XVisualInfo {    public IntPtr visual;    public XVisualID visualid; // enum XVisualID: uint { Zero }    public int screen;     public int depth;    public int c_class;    public uint red_mas

Re: [Mono-dev] Nullable types and "as" operator

2006-09-11 Thread Michael Schurter
Miguel de Icaza wrote: > > Could you file a bug report for this? > Done: http://bugzilla.ximian.com/show_bug.cgi?id=79371 -- Michael Schurter Synthesys Solutions ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.c

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

2006-09-11 Thread Michael Schurter
Hi, Miguel de Icaza wrote: Just wondering if this patch is going to get committed or if there's something else I should do to help it along. Could you provide a Changelog entry for it? I reviewed your patch, it looks ok, but I would like the ChangeLog entries as well. Attached is a new patc

[Mono-dev] Mono on Pocket PC

2006-09-11 Thread Carlos J. Muentes
Are there any plans to port mono to the Pocket PC? I haven't been able to find anything on this. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] the inmortal debugger...

2006-09-11 Thread Miguel de Icaza
Hello, > Ok, qué pongo en el Bug-Report ? The problem, your research and the desired outcome. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

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

2006-09-11 Thread Miguel de Icaza
Hello, > Just wondering if this patch is going to get committed or if there's > something else I should do to help it along. Could you provide a Changelog entry for it? I reviewed your patch, it looks ok, but I would like the ChangeLog entries as well. __

[Mono-dev] DataList SelectedIndex

2006-09-11 Thread Tony Gu
The selectedIndex of the DataList control always return -1, when I run the following test code under mono-1.1.17. Same code works fine in .NET.Is this a bug or just this coding can't get the selectedIndex under Mono?Any help is appreciated.Tony<%@ Page Language="C#" %>Test DataList Select         

Re: [Mono-dev] the inmortal debugger...

2006-09-11 Thread alcides viamontes
--- Miguel de Icaza <[EMAIL PROTECTED]> escribió: > Hello, > > > The last commit in the module "debugger" in the > svn > > repository is from 7 weeks ago, right?. Version > .30 > > doesn't support spitting out generic instances > fields > > and locals. Are there any plans for those > features

Re: [Mono-dev] Re your blog - New MonoDevelop is out!

2006-09-11 Thread Daniel Espinosa
There exist a project called Pootle, in pootle.wordforge.org, where using a Web inferface you can translate diferent proyects (send a request to its list), and after you finish you can get help in how to send your translations to the developers in any project; also you can install a copy of pootle

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

2006-09-11 Thread Sebastien Pouliot
On Tue, 2006-09-12 at 00:47 +0900, Kazuki Oikawa wrote: > Hi. > > I optimized Rijndael implementation. Great job! I see three factors you addressed: a. you completely unrolled the Rijndael code; b. you're working on 32 bits integers instead of bytes; c. you pass the key as a parameter of the e

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

2006-09-11 Thread Michael Schurter
Michael Schurter wrote: > 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. Just wondering if this p

Re: [Mono-dev] App_Code folder

2006-09-11 Thread Gonzalo Paniagua Javier
On Mon, 2006-09-11 at 09:54 +0200, Piotr Stulinski wrote: > ASP.NET 2.0 App_Code compilation > > I have looked all over the internet for help regarding ASP.NET 2.0 > under mono and the App_Code folder. Also posted on gotmono forums > but no reply. It seems that this code is completely ignored whe

Re: [Mono-dev] Documentation synchronization

2006-09-11 Thread Miguel de Icaza
Hello, > Ok, I see. I have tried to find the documentation for > Mono.Unix.Catalog in the source code tree but cannot seem to find the > right place. > > How are the xml files organized? They live in monodoc/class/ASSEMBLY/LANG/NAMESPACE/CLASS.xml Miguel

Re: [Mono-dev] Documentation synchronization

2006-09-11 Thread Jacob Ilsø Christensen
Hi. Ok, I see. I have tried to find the documentation for Mono.Unix.Catalog in the source code tree but cannot seem to find the right place. How are the xml files organized? /Jacob On 9/11/06, Miguel de Icaza <[EMAIL PROTECTED]> wrote: > Hello, > > > Do you mean that the documentation present a

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

2006-09-11 Thread Chris Morgan
Do the mono unit tests test the aes implementation against the NIST standard test values to ensure correct behavior? Chris On 9/11/06, Kazuki Oikawa <[EMAIL PROTECTED]> wrote: > Hi. > > I optimized Rijndael implementation. > > Before (Key and block size is 128bit): > 2.22 MB/sec > After: > 2

[Mono-dev] [PATCH] Rijndael optimization patch

2006-09-11 Thread Kazuki Oikawa
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. Best regards. Kazuki Oikawa RijndaelManaged.patch.gz Description: application/gzip _

[Mono-dev] How to get best performance out of the embed API ?

2006-09-11 Thread Argiris Kirtzidis
Hi to all,   I'm new to Mono, coming from the microsoft .NET world. I recently got hooked into Mono and am trying to get Mono embedded in a native code 3D engine.   I am under the impression that the embedding API methods (mono_runtime_invoke, etc.) are the equivelant of the System.Reflection

Re: [Mono-dev] Message Box running NUnit tests under Mono 1.1.17

2006-09-11 Thread Jon Chambers
Charlie, This should be fixed now. I created a bug (#79355) to track this issue. Please mark bug as verified when you get a chance to test this.Thanks,JonathanOn 9/10/06, Charlie Poole <[EMAIL PROTECTED]> wrote: Hi Jonathan,   The attached program demonstrates it. Compile with a ref to S

Re: [Mono-dev] [Mono-list] Announce: Mono.Fuse 0.2.0 (+ Required mcs & mono patches)

2006-09-11 Thread Jonathan Pryor
On Sun, 2006-09-10 at 21:07 -0700, Valient Gough wrote: > (1) The reason it is harder to use the path-based API for a complex > filesystem has nothing to do with lines of code. The problem is due > to the data model, what I tried to explain before - with the path > based API, libfuse is remapping

Re: [Mono-dev] Announce: Mono.Fuse 0.3.0

2006-09-11 Thread pablosantosluac
great!!! I will try to use it ASAP to develop a filesystem integration with our SCM... :-P - Original Message - From: "Jonathan Pryor" <[EMAIL PROTECTED]> To: "Mono List" ; "mono-devel-list" <[EMAIL PROTECTED]> Sent: Monday, September 11, 2006 12:04 PM Subject: [Mono-dev] Announce: Mono

[Mono-dev] Announce: Mono.Fuse 0.3.0

2006-09-11 Thread Jonathan Pryor
Mono.Fuse is a C# binding for the FUSE library. This release features a near complete change in the public FileSystem API; a complete API change list is available at: http://www.jprl.com/Blog/archive/development/mono/2006/Sep-11.html Hopefully this will be the last major API change, though I wou

Re: [Mono-dev] Static Variables

2006-09-11 Thread Robert Jordan
Patrick Earl wrote: > Hi all. I'm trying to track down a bug relating to static variables. > You can see what the bug is all about here: > > http://bugzilla.ximian.com/show_bug.cgi?id=79211 > > I can easily examine the call that attempts to retrieve the value for > ipv4Supported. However

[Mono-dev] Static Variables

2006-09-11 Thread Patrick Earl
Hi all. I'm trying to track down a bug relating to static variables. You can see what the bug is all about here: http://bugzilla.ximian.com/show_bug.cgi?id=79211 I can easily examine the call that attempts to retrieve the value for ipv4Supported. However, I can't find the call where the

Re: [Mono-dev] Re your blog - New MonoDevelop is out!

2006-09-11 Thread Miguel de Icaza
Hello, > Setting up a web-site where any user may register and do translation > work will lower the barrier for doing translation work tremendously. Not > only for people NOT having the technical skills needed. This would > enable me to contribute some when I have a few left-over minutes, even

[Mono-dev] App_Code folder

2006-09-11 Thread Piotr Stulinski
ASP.NET 2.0 App_Code compilation   I have looked all over the internet for help regarding ASP.NET 2.0 under mono and the App_Code folder. Also posted on gotmono forums but no reply. It seems that this code is completely ignored when executing a web page under mono? Has this not yet been implemented