RE: [Mono-dev] UrlEncode difference in dotnet and mono

2006-01-03 Thread Andrew Skiba
Hi Ben, Sorry for late answer. I have problems with Mono System.Web at my cygwin, so if there is anyone still interested in solving the problem, I attach the unittest and the fix here, please check they are correct. The unittest is based on the test I made successfully on dotnet and Grasshopper

[Mono-dev] Educational collaboration

2006-01-03 Thread Lluís Pàmies i Juárez
I'm a student of Computer Science in Tarragona (Spain), and I'm interested in doing my graduate project by contributing mono. I'm interested in the interpreter, and I'm an enthusiast of the parallel programing. There is any possible contribution in this area ? Thanks for all. -- Lluís Pàmies i

Re: [Mono-dev] RE: Glade Custom Widget in mono

2006-01-03 Thread Wolfgang Profer
Hi! I needed this functionality myself and wrote a class that does the work of dispatching the widget creation calls to the right methods. See the two attached files for the class and how to use it. What should i write in the Creation function field? A method name like create_dgUseri that

[Mono-dev] Fwd: Creating an sms-tool - libcurl.mono

2006-01-03 Thread Aaron Meder
Hi there... I've found a little PHP-Script that does that, it uses the PHP curl-implementation [1] for connecting to the online service Natelskyline [2]. As I've seen there's a mono binding for libcurl [3]. That would probably be what I need. The latest Version is from April 2005. Is this

[Mono-dev] System.Reflection.Assemby:LoadFrom question

2006-01-03 Thread Arnhoffer Károly
Hi, I try to compile runtime the VB code below: Option Strict On Imports WFObj Imports NCore Imports NPartner Imports NFilter Imports System.Windows.Forms Imports Microsoft.VisualBasic Public Module WFProcedure_225737 Public Function WFExpression_226217(CurrentApp As WFApp,

[Mono-dev] problem while compile svn from mac os x

2006-01-03 Thread cartuchoGL
I get mono and mcs svn versions (r55007), it's compile fine on my debian box, but at mac os x not. I install automake 1.8.5 with fink because with automake version built-in mac os x break autogen.sh When run ./autogen.sh --prefix=/usr/local at mono directory end ok but show this warning

RE: [Mono-dev] UrlEncode difference in dotnet and mono

2006-01-03 Thread Ben Maurer
+ for (char c=Char.MinValue; c128; c++) chars are from 0 to 2^16-1 -- Ben ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] UrlEncode difference in dotnet and mono

2006-01-03 Thread Matthijs ter Woord
Just use Char.MaxValue instead of 128 - Original Message - From: Ben Maurer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Mono-devel-list@lists.ximian.com; [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, January 03, 2006 6:41 PM Subject: RE: [Mono-dev] UrlEncode difference in dotnet

Re: [Mono-dev] UrlEncode difference in dotnet and mono

2006-01-03 Thread Kornél Pál
There are two for loops in the test case you are talking about: + for (char c=Char.MinValue; c128; c++) + for (char c=(char)128; c Char.MaxValue; c++) { But I think this check is too lame: + string s = c.ToString(); + Assert.IsTrue (s != System.Web.HttpUtility.UrlEncode(s), I think it's

[Mono-dev] Monodoc

2006-01-03 Thread José Alexandre Antunes Faria
Hi there guys, 1) Is there a way to extend monodoc without changing the monodoc.xml file? I wanted to add documentation but without having to change it. 2) Is there a way to create nodes inside my documentation or only on the monodoc.xml file? Cheers, SpigaZ out...

[Mono-dev] Getting Ready for 1.1.13 Release

2006-01-03 Thread Wade Berrier
Hey all, We're getting ready for the 1.1.13 release. Tarballs will be created Thursday evening MST. This will probably be our last drop into the upcoming SuSE products. Wade signature.asc Description: This is a digitally signed message part ___

[Mono-dev] Validator controls expected results?

2006-01-03 Thread Christopher Bergström
Per the documentation.. If I have display=None and a asp:ValidationSummary / control then the validator control should not display results inline, but the JS still executes. I found a work-around by EnableClientScript=false.. bug? This is in Firefox latest version.. (Haven't tested in

[Mono-dev] FileStream Exception

2006-01-03 Thread Pablo Iñigo Blasco
Hi, i was trying implement something for System.IO.Ports on windows, but i have found a issue. The following code compiles on mcs and works fine in ms.net runtime: StreamReader sr; StreamWriter sw; Console.WriteLine(1); MSystem.IO.Ports.SerialPort.WindowsPortManager.Open(COM1, 9600, 8, 0, 1,

[Mono-dev] FileStream Exception

2006-01-03 Thread Pablo Iñigo Blasco
Hi, i was trying implement something for System.IO.Ports on windows, but i have found a issue. The following code compiles on mcs and works fine in ms.net runtime: StreamReader sr; StreamWriter sw; Console.WriteLine(1); MSystem.IO.Ports.SerialPort.WindowsPortManager.Open(COM1, 9600, 8, 0, 1,

[Mono-dev] Need testers for Mono's C# generics compiler.

2006-01-03 Thread Miguel de Icaza
Hello, I need developers that have generics code to try a new version of the C# compiler. I fixed bugs #72908 and #59289, but am afraid that my changes could have introduced regressions. This compiler can compile our SVN tree, and passes all of our C# tests, but I would like to get more

[Mono-dev] windows.forms crash under osX using darwinports

2006-01-03 Thread Daniel Oberhoff
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, I just tried this simple example: using System; using System.Windows.Forms; public class test { public static void Main() { MessageBox.Show(Hello World); } } I got mono with all libs from darwinports. After

RE: [Mono-dev] Need testers for Mono's C# generics compiler.

2006-01-03 Thread Andy Waddell
Hi Miguel, I just tried it on our code base and everything compiles fine. Running unit tests now (on the code it produced), and haven't seen any issues yet. We have a good bit of generics in our code base and have submitted several gmcs bugs. All have been promptly addressed except 76440 for