[Mono-docs-list] [PATCH] Monodoc: Add contribution links to home page

2005-08-26 Thread Mario Sopena
Hi, Restore is less frightening than Delete, but it works better for changes than for additions so I feel the The dialog helps filter unintended or not ready contributions (either changes and additions). I the dialog you'd need to have a way to Restore/Delete unintended contributions and

Re: [Mono-winforms-list] Landing: libgdiplus cairo 1.0 update

2005-08-26 Thread Jordi Mas
El dv 26 de 08 del 2005 a les 13:52 +0300, en/na Vladimir Moushkov va escriure: Much much better!! Excelent work! Thanks! But there is still drawing glitches and I think they are MWF related. See SWF-Datagrid test in winforms/ We still need to implement clipping in libgdiplus that Datagrid

Re: [Mono-winforms-list] Master's Thesis

2005-08-26 Thread Jonathan Gilbert
At 02:34 PM 26/08/2005 +0300, you wrote: Hi! I composed a reply message to you earlier but I guess our mail system blocked it because it contained .exe files as attachment (two versions of the game I am making). I just wanted to thank you for your good advice!!! I wrote one version of the game

[Mono-dev] Re: [Mono-winforms-list] Landing: libgdiplus cairo 1.0 update

2005-08-26 Thread Jordi Mas
El dv 26 de 08 del 2005 a les 13:52 +0300, en/na Vladimir Moushkov va escriure: Much much better!! Excelent work! Thanks! But there is still drawing glitches and I think they are MWF related. See SWF-Datagrid test in winforms/ We still need to implement clipping in libgdiplus that Datagrid

[Mono-dev] Re: [Mono-list] Firebird db provider missing from Mono 1.1.8.3 win32 installer

2005-08-26 Thread Carlos Guzmán Álvarez
Hello: FirebirdSql.Data.Firebird is missing on Windows. Can we get this added please? Can somebody add it to the build proceess, please ( it's build fine ) -- Best regards Carlos Guzmán Álvarez Vigo-Spain ___ Mono-devel-list mailing list

Re: [Mono-dev] [PATCH] Monodoc: Add contribution links to home page

2005-08-26 Thread Mario Sopena
Hi, Restore is less frightening than Delete, but it works better for changes than for additions so I feel the The dialog helps filter unintended or not ready contributions (either changes and additions). I the dialog you'd need to have a way to Restore/Delete unintended contributions and

Re: [Mono-dev] mcs default encoding: Latin1 or not

2005-08-26 Thread Kornél Pál
Hi, From: Atsushi Eno Can we edit UTF8 files on vim on cygwin? No. This fact simply tells that we are not living in the age of Unicode. I think that for example the fact that a lot of default Linux installations are using UTF-8 as default code page shows that we are living in the age of

RE: [Mono-dev] Re: [PATCH] Fully Asynchronous and Re-Factored SslStreams in Mono.Security

2005-08-26 Thread JD Conley
I am unable to compile this, though, as I am getting CLS-compliance errors. The Assembly is marked as compliant but the SslStreamBase class includes a read object and a Read method (differing only in case). Is it just me? I'm using VS 2003 to compile - maybe mcs doesn't check for

Re: [Mono-dev] mcs default encoding: Latin1 or not

2005-08-26 Thread Miguel de Icaza
Hello, Thus I think the decision is, whether we are for culture neutralism, or for convenience of Latin1 people. There is no reason I stand for the latter, at least based on the factors I listed above. I would like to move to utf-8 myself, but we do need a plan to deploy this, and with all

Re: [Mono-dev] the c# compiler code

2005-08-26 Thread Kornél P?l
The following does not specific to mcs code it's my opinion about splitting files: I think having a clean and well organized source code is required for efficient development. When splitting is done by copying files using SVN then removing unnecessary parts from each file SVN history will

Re: [Mono-dev] the c# compiler code

2005-08-26 Thread Miguel de Icaza
Hello, The following does not specific to mcs code it's my opinion about splitting files: I think having a clean and well organized source code is required for efficient development. When splitting is done by copying files using SVN then removing unnecessary parts from each file SVN

Re: [Mono-dev] COM Interop, or something like it

2005-08-26 Thread Agustin.PHP Casiva
Its compatible the Microsoft implementation of Remoting with the Mono implementation???. -- Casiva Agustin, Desarrollador de Sistemas Cel: 03722-15554267 WebPage: www.casivaagustin.com.arMSN: [EMAIL PROTECTED] ___ Mono-devel-list mailing list

Re: [Mono-dev] the c# compiler code

2005-08-26 Thread John Luke
Hello, On Fri, 2005-08-26 at 16:12 -0400, Miguel de Icaza wrote: History is more valuable to those hacking on the compiler than having a source code that does not have a file-per-class. An acceptable hack is: modify MonoDevelop to support class-based browsing of your source code. Just so

AW: [Mono-dev] the c# compiler code

2005-08-26 Thread Eduard Ralph
Hi, Let me point out, that moving the class per file thing was only one ever several things that I suggested. As I mostly use VS I don't mind the issue that much anyway. My suggestion was more along the lines of cleaning up the code in general. The first step could be cleaning up the names of

Re: [Mono-dev] Authentication with WebRequest?

2005-08-26 Thread Kornél Pál
You can use HttpWebRequest.Headers to specify HTTP headers. Note that you are actually talking about HTTP headers not TCP headers. TCP is a lower level layer than HTTP that you cannot manipulate using sockets. If you want to send the whole request as raw data you have to use sockets but you

[Mono-dev] Authentication with WebRequest?

2005-08-26 Thread knocte
Does anybody know if I can use WebRequest or other class to generate this RAW tcp socket headers when making a request to a HTTP server?: GET /resource.xxx HTTP/1.0\r\n User-Agent: MyUAstring\r\n Host: example.com\r\n Authorization: Basic example-password\r\n\r\n Thanks in advance,

RE: [Mono-list] Re: Embedded Mono with native threads

2005-08-26 Thread Alexey Tsynaev
On 08/25/05 Alexey Tsynaev wrote: But actually I don't invoke any unmanaged code from c# code Host application creates thread where function from my plugin is called. In this function I just get MonoMethod and execute it by mono_runtime_invoke. That is all. Then you are

Re: [Mono-list] mod_mono install

2005-08-26 Thread Janus Tougaard
Hello Jeremy. It is possible to change the destination of those files. But the first problem we'll have to look at, is if you have the permissions to edit in the Apache configuration files. If you haven't it is impossible to make mod_mono work. Please give me further feedback on this =) Med

RE: [Mono-list] Re: Embedded Mono with native threads

2005-08-26 Thread Francis Brosnan Blazquez
El vie, 26-08-2005 a las 11:44 +0500, Alexey Tsynaev escribió: On 08/25/05 Alexey Tsynaev wrote: But actually I don't invoke any unmanaged code from c# code Hi Alexey, Where I can get your patch? You can find it in the following Paolo's message:

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Julien Gilli
Paul F. Johnson wrote: On Thu, 2005-08-25 at 16:04 +0200, Paolo Molaro wrote: On 08/23/05 Julien Gilli wrote: There hasn't been any feedback from several core developers on this point. So I ask the same question again :-). Do you think that it's something that could be help mono

[Mono-list] Re: Serializing Objects to a Stream

2005-08-26 Thread Robert Jordan
Jonathan, how can i serialize an object to Xml but storing the object to a Stream and not to a File? A file _is_ a stream. Where is the point? Do you mean storing to memory? Then use MemoryStream. I am looking for a way to do XmlSerialization (or maybe SoapSerialization) to send objects

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Paul F. Johnson
Hi, What needs to be done? I think that putting the following couple of pages together on the Wiki : - General informations on bug days : * What is a bug day ? * Who can attempt ? This would need to be split and preferably, peer mentored. For example, user a may write and

Re: [Mono-list] mod_mono install

2005-08-26 Thread Jeremy Vaught
Thanks Janus, I only have permissions on '/home/jeremyvaught/' However, I have been in contact with the tech support, and I may be able to have them make some configuration changes, if I know exactly what changes need to be made. I don't suppose this is possible, but can I install my a second

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Julien Gilli
Hello, Paul F. Johnson wrote: I think that putting the following couple of pages together on the Wiki : - General informations on bug days : * What is a bug day ? * Who can attempt ? This would need to be split and preferably, peer mentored. I don't understand what you think

Re: [Mono-list] Sqlite version

2005-08-26 Thread Julien Sobrier
Thomas Zoechling a écrit : You have to specify the Version in the Connectionstring: string connectionString = Version=3,URI=file:SqliteTest.db; Hello, it doesn't seem to work with mono 1.1.6: System.DllNotFoundException: sqlite3 in (wrapper managed-to-native)

RE: [Mono-list] Mono Bug Day

2005-08-26 Thread Chris Aitken
IIRC, the GNOME project has bug days from 15 PM to 21 PM UTC, which is nice during the week. UTC == GMT Universal Coordinated Time. Keeps the French happy (well, happier)! ;) -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be

Re: [Mono-list] Sqlite version

2005-08-26 Thread Thomas Zoechling
http://turchin.homelinux.net/blogx/PermaLink.aspx/acbc7138-08d6-4a0f-a86d-709748a283d8 Julien Sobrier wrote: Thomas Zoechling a écrit : You have to specify the Version in the Connectionstring: string connectionString = Version=3,URI=file:SqliteTest.db; Hello, it doesn't seem to work

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Julien Gilli
Paul F. Johnson wrote: This would need to be split and preferably, peer mentored. I don't understand what you think should be peer mentored. Do you mean that attempting a bug day should be peer mentored ? Or were you mentionning writing up these pages should be peer mentored ?

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Daniel Morgan
There are two email lists that will help: - mono-bugs - mono-patches If you subscribe to these mail lists, you will be able to get email about a new bug or a change in a bug or its status. Also, mono-patches will allow you to peer review others code. Maybe a Pre-Release Days instead of Bug Day

[Mono-list] OpenOffice.org and Mono status update

2005-08-26 Thread Daniel Morgan
I heard some people such as Christian Hergert were interested in Mono working with Open Office.org 2.0. Here is Michael Meek's blog about Open Office.org and Mono working together on SUSE 9.3 Beta2. http://www.gnome.org/~michael/activity.html#2005-08-23 This links to a wiki detailing how to get

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Julien Gilli
Daniel Morgan wrote: Maybe a Pre-Release Days instead of Bug Day would be more appropriate for Mono. What do developers think about this ? I think that doing the hard work little by little is easier than having a big sprint once in a while, but I agree that prerelease days would be a great

Re: [Mono-list] Serial Port Libraries

2005-08-26 Thread Bas Westerbaan
The SerialPort class is implemented by Microsoft in the .net 2.0 framework in the System.IO.Ports namespace. Mono doesn't seem to have it implemented yet. But eventually someone will implement it. On 8/26/05, Howard Cole [EMAIL PROTECTED] wrote: Are there any Serial Port libraries in Mono?

RE: [Mono-list] (no subject)

2005-08-26 Thread Erik Dasque
Do we need to get in contact with Neoware to talk about it ? Erik On Tue, 2005-08-09 at 22:01 -0400, Nick Berardi wrote: I personally see no problem with show casing the site. Let me know what you need and anything I can do. Nick -Original Message- From: Miguel de Icaza

Re: [Mono-list] Mono Bug Day

2005-08-26 Thread Paul F. Johnson
Hi, True. I'm assuming this will be a freeze before an official beta release (going by the time line). In that case, some order of importance needs to be given over - something like (most important) compiler and mono runtime - corelibs - MWF [inc. cairo/libgdiplus] - monodevelop - gtklibs -

Re: [Mono-list] (no subject)

2005-08-26 Thread Kornél Pál
I don't see any legal issue regarding listing the site on a page that showcases Mono/ASP.NET users. It can be seen in Server HTTP header that it uses mod_mono and can be seen that has .aspx pages as well. So it's no secret that they use Mono/ASP.NET. Only people related to the site or the

Re: [Mono-list] mod_mono install

2005-08-26 Thread Janus Tougaard
Well i think it would be a quite difficult operation, maby impossible. You can't make any Apache configuration your self from that directory, have you told this guy from the hosting company that you are planing to load a new module on their server? - Usaly this aint possible, they wont. Also

[Mono-list] Npgsql 0.7.1 is out!!

2005-08-26 Thread Francisco Figueiredo Jr.
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I'd like to say that Npgsql version 0.7.1 is out. Npgsql is a .Net Provider for Postgresql 7.x and above. It allows your .Net programs access a Postgresql backend. More info about it can be found at:

Re: [Mono-list] Firebird db provider missing from Mono 1.1.8.3 win32 installer

2005-08-26 Thread Carlos Guzmán Álvarez
Hello: FirebirdSql.Data.Firebird is missing on Windows. Can we get this added please? Can somebody add it to the build proceess, please ( it's build fine ) -- Best regards Carlos Guzmán Álvarez Vigo-Spain ___ Mono-list maillist -