[Mono-docs-list] msdn-browser/monodoc intergration

2005-09-14 Thread Rafael Ferreira
Hey guys, I'm going to start working on integrating Ben's msdn browser and monodoc. So far the whole thing looks pretty simple, I'm just going to add a new tab to monodoc and change the msdn-browse code to not use NodeStore. Does anyone have any pointers or ideas on how they would like to see

[Mono-dev] i cannot compile Mono today from SVN

2005-09-14 Thread Hubert FONGARNAND
i cannot compile Mono today from SVN make[8]: Entering directory `/home/hubert/mono/mcs/class/Microsoft.JScript' MONO_PATH=../../class/lib/net_2_0:$MONO_PATH /home/hubert/mono/mono/runtime/mono-wrapper ../../gmcs/gmcs.exe -d:NET_1_1 -d:NET_2_0 -debug /noconfig /r:System.dll

Re: [Mono-dev] problem

2005-09-14 Thread Miguel de Icaza
Hello, I have writed an asp.net application for query a db and show result in a datagrid whit sorting, paging ecc I have a lot of problems using datagrid with version 1.1.9. If i copy System.Web.dll into gac from version 1.1.8 all work fine. Is it normal? It is possible; Do you have a

Re: [Mono-dev] Mono runtime performance

2005-09-14 Thread Gary Smithrud
I would suggest build the Mono version with optimizations on and seeing the performance differences as well. Of course this is not a total surprise, since Mono is newer than .NET and as such the goal should be first to get it right and then to speed it up. On Sep 14, 2005, at 8:18 AM,

Re: [Mono-dev] Mono runtime performance

2005-09-14 Thread Graeme Geldenhuys
If you mean the Benchmark.exe must be built with optimizations on, I have done that. It runs a little bit faster, and on some tests, actually slower, but still not nearly as fast as with the Microsoft .NET framework. I installed Mono from the released builds, I don't compile Mono myself. I

Re: [Mono-list] mod_mono issue?

2005-09-14 Thread Gonzalo Paniagua Javier
On Sun, 2005-09-11 at 15:12 -0500, [EMAIL PROTECTED] wrote: In an aspx page under Mono 1.1.9 the Request.Url now gives the IP address of the server machine instead of the virtual hostgname that used to be sent in 1.1.8. I just fixed this in svn HEAD. I also uploaded a System.Web.dll to

Re: [good] [Mono-list] What's up with go-mono.com

2005-09-14 Thread Abe Gillespie
No, that's Mono's main project site. I read the Mono blogs everyday. Go to the main Mono site and click on the blogs link in the upper-right. It's broken. :( -Abe On 9/13/05, ted leslie [EMAIL PROTECTED] wrote: mono-project.com i think goes to same place. -tl On Tue, Sep 13, 2005 at

Re: [Mono-list] Mono Meeting in LA, September 13th, during Microsoft PDC.

2005-09-14 Thread Miguel de Icaza
Hey, Where do we meet? What room? It is the Santa Monica Room. Miguel ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

[Mono-list] New Yacc/Bison like parser generator for C#

2005-09-14 Thread Wayne Kelly
The Gardens Point Parser Generator (gppg) is a Yacc/Bison like parser generator. Both the parser generator and the parser runtime components are implemented entirely in C#. They make extensive use of generic collection classes and so require Beta Version 2.0 of the .NET Framework. The parser

Re: [Mono-list] yield

2005-09-14 Thread Raja R Harinath
Hi, Bernhard Herzog [EMAIL PROTECTED] writes: I wanted to use yield (like Miguel did it in HttpApplication), but I need to lock by data. Is this not allowed? static object lockit = new Object(); public static IEnumerable GetData() { lock (lockit) { for (int i = 0; i 10; i++)

Re: [Mono-list] Building Mono under Cygwin

2005-09-14 Thread Kornél Pál
This is not the error. I don't know why is semdel called because it does not exsist on Windows. The real error message that caused the build to fail is befor the semdel error. Kornél - Original Message - From: Michael Thomsen [EMAIL PROTECTED] To: Kornél Pál [EMAIL PROTECTED] Cc:

[Mono-list] Re: Nemerle 0.9.0 is out

2005-09-14 Thread Michal Moskal
On 9/14/05, Michal Moskal [EMAIL PROTECTED] wrote: Nemerle 0.9.0 has just been released. You can find details in the blog post: http://nemerle.org/blog/archive/2005/Sep-14.html We would like to thank mono folks and Martin Baulig and Zoltan Varga in particular. Without you converting the

[Mono-list] Request.InputStream exception

2005-09-14 Thread Peter
Hello, I am trying to implement an IHttpHandler, using the following code to read the content of the request: ... public void ProcessRequest(HttpContext context) { try { StreamReader _streamReader = new StreamReader(context.Request.InputStream);

RE: [Mono-list] mod_mono problem

2005-09-14 Thread Carl Olsen
Nope. Still not working: Creating new config (0x80f0c08) for (null) Destroying config 0x80f0c08 Server6:~ # xsp --root /home/carl/public_html xsp Listening on port: 8080 Listening on address: 0.0.0.0 Root directory: /home/carl/public_html Hit Return to stop the server.

[Mono-list] Source RPMs or .spec files?

2005-09-14 Thread Brion Vibber
I've found that I often need to patch Mono for some niggling bug in the class library that's been fixed in SVN. It could simplify my life in managing multiple servers a bit if I could build local RPMs of the latest release with the needed patches and put them in a local yum repository rather than

[Mono-list] Re: Embedding Mono Question

2005-09-14 Thread Robert Jordan
Eoin Coffey wrote: Hey All, Right now I'm working on embedding the Mono runtime into an application. The Mono C API is, for the most part, very clean and well layed out. The only thing that is lacking is decent docs of that API. What I want to know is if there is a way to query an image or

Re: [Mono-list] Building Mono under Cygwin

2005-09-14 Thread Michael Thomsen
When I try to run make under Cygwin, Monoburg won't run because it cannot find libglib2.dll. I have both the GLIB2 download from the compilation page on the Mono site and GLIB2 from the Mono installer in my path as well as a properly set PKG_CONFIG_PATH variable. Any thoughts on what I should do?

[Mono-list] Request.InputStream exception

2005-09-14 Thread Peter
Hello, I am trying to implement an IHttpHandler, using the following code to read the content of the request: ... public void ProcessRequest(HttpContext context) { try { StreamReader _streamReader = new StreamReader(context.Request.InputStream);