[Mono-devel-list] Comment Service API

2005-03-02 Thread Khoa Vo
Design a full system for comments and ratings so people can annotate the documentation in Monodoc. Is this project still available? If not, I would like to start on this. Any help would be appreciated! ___ Mono-devel-list mailing list Mono-devel-list@lis

Re: [Mono-devel-list] [Fwd: Re: the patch status followup]

2005-03-02 Thread Atsushi Eno
Andrew Skiba wrote: (B> Atsushi Eno wrote: (B> (B>>Hi Andrew, (B>> (B>>Thanks for forwarding it to public list as per my request. (B>> (B>>Well, can you please give me an "yes/no" answer that if this (B>>question is related to your XmlTextWriter patch? (Of course it is (B>>no problem if t

Re: [Mono-devel-list] [Patch] Array.Sort

2005-03-02 Thread Ben Maurer
On Wed, 2005-03-02 at 19:27 -0600, Marcus wrote: > The MS implementation of Array.Sort attempts to check whether the Array it is > passed can be converted to object[], and in that case it uses a verison of > Quicksort that uses array indexers instead the slower Array accessors to > access elemen

Re: [Mono-devel-list] [Patch] Array.Sort

2005-03-02 Thread Marcus
The MS implementation of Array.Sort attempts to check whether the Array it is passed can be converted to object[], and in that case it uses a verison of Quicksort that uses array indexers instead the slower Array accessors to access elements of the Array. Apparently, their JIT has special helper

Re: [Mono-devel-list] [Patch] Array.Sort

2005-03-02 Thread Carlos Alberto Cortez
Hello Ben, Comments inline: El miÃ, 02-03-2005 a las 17:25 -0500, Ben Maurer escribiÃ: > On Wed, 2005-03-02 at 16:06 -0600, Carlos Alberto Cortez wrote: > > Attached is a patch for implementing Array.Sort generic methods. Could > > somebody review it? > > There is one major risk to these patches

Re: [Mono-devel-list] [Patch] Array.Sort

2005-03-02 Thread Ben Maurer
On Wed, 2005-03-02 at 16:06 -0600, Carlos Alberto Cortez wrote: > Attached is a patch for implementing Array.Sort generic methods. Could > somebody review it? There is one major risk to these patches: Array.Sort will be a better binding than Array.Sort. This means that people will automatically

[Mono-devel-list] [Patch] Array.Sort

2005-03-02 Thread Carlos Alberto Cortez
Attached is a patch for implementing Array.Sort generic methods. Could somebody review it? Carlos. Index: Array.cs === --- Array.cs (revisiÃn: 41210) +++ Array.cs (copia de trabajo) @@ -37,6 +37,7 @@ using System.Runtime.CompilerServ

[Mono-devel-list] [PATCH] CAS support for reflection with [Link|Inheritance]Demand

2005-03-02 Thread Sebastien Pouliot
Hello, The following patches (unmanaged and managed) allows LinkDemand and InheritanceDemand to be used "safely" with reflection. Test cases have been added/updated in both /mono/mono/tests/cas/linkdemand/ /mono/mono/tests/cas/inheritance/ Thanks -- Sebastien Pouliot <[EMAIL PROTECTED]> blog:

[Mono-devel-list] RE: [mono-vb] BC29999 error

2005-03-02 Thread Chesko, Ron
Will do. Thanks much, Ron > -Original Message- > From: Rafael Teixeira [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 02, 2005 1:10 PM > To: Chesko, Ron > Cc: mono-vb@lists.ximian.com; mono-devel-list > Subject: Re: [mono-vb] BC2 error > > Well it seems like mbas is hanging, an

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
Well it seems like mbas is hanging, and so xsp isn't finding the compiled dll. I'm short of easy remedies just now. Please file a bug report at our bugzilla (http://bugzilla.ximian.com/) at the product Mono:Compilers, component Basic. :( On Wed, 2 Mar 2005 13:05:18 -0600, Chesko, Ron <[EMAIL PRO

[Mono-devel-list] RE: [mono-vb] BC29999 error

2005-03-02 Thread Chesko, Ron
Okay, made the change and I get this now and the dll name changes each time I reload. Cannot find '58860.dll'. Description: Error processing request. Error Message: HTTP 404. Cannot find '58860.dll'. BTW, thanks for all of the help so far. Ron > -Original Message- > From: Rafael Teix

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
It is a known problem: Currently mbas isn't properly dealing with the "default property" for a class, so you need to be explicit. As a workaround it may (I can't test just now) work if you change the code to: > Line 67: if Request.QueryString.Item( "thanks" ) = "yes" then HIH, On

[Mono-devel-list] RE: [mono-vb] BC29999 error

2005-03-02 Thread Chesko, Ron
Alrighty. Other pages work (with the language line). My original problem page gives a new error with line 67 highlighted. Thanks, Ron Error message: /tmp/95963.vb(67,32) : error BC1501: No overload for method `QueryString' takes `1' arguments File name: /var/www/html/sites/NWB/contactus.aspx

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
try rpm --nodeps just for xsp after installing all the others, normally HIH, :) On Wed, 2 Mar 2005 12:05:07 -0600, Chesko, Ron <[EMAIL PROTECTED]> wrote: > Hey Rafael, > > This is the only page that I am having problems with in the current site > I am testing (we have about 4 or 5 sites that we

[Mono-devel-list] Re: [mono-vb] BC29999 error

2005-03-02 Thread Rafael Teixeira
Hi Ron, First, as it states in the wrongly repeated error message our VB.NET compiler is still in alpha stage, and without it you won't able to use VB.NET in your aspnet pages or user controls. I already patched the VBCodeCompiler class to call mbas in quiet mode, but I recall doing so only in th

Re: [Mono-devel-list] develop under Microsoft .NET and porting to Mono is correct?

2005-03-02 Thread Paolo Molaro
On 03/02/05 Mauro Bertoli wrote: > > For many of us Gtk# is the toolkit to use for GUI > > apps that > > use mono on any platform, if you have a different > > preference > > better start doing something about it and > > contribute. > Yes, why not lupus? > Now I try to understand what's the best so

Re: [Mono-devel-list] Is native codes for C# methods and CLI internal calls different?

2005-03-02 Thread Vivek, Bharath Varma (IE10)
> If you have the filter in Console.WriteLine() and you call it from Main, why > do you expect a huge stack walk? It looks correct that it just shows > WriteLine, Main and the invoke wrapper used to go from unmanaged > to managed code. I verified this against the output using the --trace and yes i

Re: [Mono-devel-list] [Fwd: Re: the patch status followup]

2005-03-02 Thread Andrew Skiba
Atsushi Eno wrote: (B> Hi Andrew, (B> (B> Thanks for forwarding it to public list as per my request. (B> (B> Well, can you please give me an "yes/no" answer that if this (B> question is related to your XmlTextWriter patch? (Of course it is (B> no problem if this Q is nothing to do with the

Re: [Mono-devel-list] [Fwd: Re: the patch status followup]

2005-03-02 Thread Atsushi Eno
Hi Andrew, (B (BThanks for forwarding it to public list as per my request. (B (BWell, can you please give me an "yes/no" answer that if this (Bquestion is related to your XmlTextWriter patch? (Of course it is (Bno problem if this Q is nothing to do with the patch though.) (B (BAndrew Skiba

Re: [Mono-devel-list] Mono and Pocket PCs

2005-03-02 Thread Jose Cornado
Iñigo: As far as I know this subject has to do with the "retargeteable" flag of the assembly itself. If an assembly has this flag set, the MS CLR loads the core libraries dinamycally, if not, it will use the core libraries set in the assembly. If you were to compile a mono assembly complying wit

Re: [Mono-devel-list] Gecko-sharp on Windows

2005-03-02 Thread Francisco T. Martinez
Mike Flippin wrote: I have been trying to get gecko-sharp working on Windows and have run into nothing but trouble with both the .NET framework and Mono. Is Gecko-sharp going to be included in a future version of the Windows installer? Is there some place where I can download a binary installer

Re: [Mono-devel-list] develop under Microsoft .NET and porting to Mono is correct?

2005-03-02 Thread Mauro Bertoli
> If you're so interested in SWF, why don't you start > contributing > bugfixes, documentation, test cases, new features? > For many of us Gtk# is the toolkit to use for GUI > apps that > use mono on any platform, if you have a different > preference > better start doing something about it and > co

[Mono-devel-list] System.Text.Encoding patches

2005-03-02 Thread Svetlana Zholkovsky
Hi, I submit some patches to the bugs 73214,73212 and 73086. The UTF-8 encoding patch can influence on the System.IO, because the BOM (\uFEFF) character now will be decoded by the decoder. Please, check it before you apply the patch. I send additional small patch to the System.Text.Encoding.cs

[Mono-devel-list] Membership Classes

2005-03-02 Thread Jens Sauer
Hello, I want to implementate the new Membership Classes in Asp.Net 2.0 to Mono, so I do not have to use a windows server. But I have the problem to read out the web.config file and to make the Membership Class static, so I can use it like the Page Object in normal code. Thank's a lot, Jens Sau

[Mono-devel-list] [Fwd: Re: the patch status followup]

2005-03-02 Thread Andrew Skiba
Hello, (B (BAtsushi Eno wrote: (B>>I'm investigating this case, and it confuses me a little bit. Code (B>> (B>> XmlElement b = d.CreateElement ("b"); (B>> b.SetAttribute ("xmlns","probe"); (B>> (B>>produces element b with namespace "" but with attribute xmlns="prob

Re: [Mono-devel-list] develop under Microsoft .NET and porting to Mono is correct?

2005-03-02 Thread Paolo Molaro
On 03/02/05 Mauro Bertoli wrote: > Hi, I understand GTK# are native in Mono, but SWF are > native in Windows :) and both are ported in the other > platform, I don't doubt that GTK is best. I think > final user prefer see SWF style and,sigh, most users If you're so interested in SWF, why don't you

Re: [Mono-devel-list] develop under Microsoft .NET and porting to Mono is correct?

2005-03-02 Thread Mauro Bertoli
Hi, I understand GTK# are native in Mono, but SWF are native in Windows :) and both are ported in the other platform, I don't doubt that GTK is best. I think final user prefer see SWF style and,sigh, most users want use Windows (...I cannot force threatening them to make to destroy the firm... :O )