Re: [Mono-docs-list] GTk monodoc issues.

2003-10-14 Thread Miguel de Icaza
Hello, So, the story so far is, the /home/wmealing/.config/monodoc/changeset.xml (attached) is created whenever a file is edited, but I expected to see these changes show in the display after i have clicked save. (This should happen, i'd think ?) Im using the cvs checked out as of now (Mon

Re: [Mono-docs-list] Predefined docs patch

2003-10-14 Thread Martin Willemoes Hansen
On Mon, 2003-10-13 at 23:40, Duncan Mak wrote: Hello Martin! On Mon, 2003-10-13 at 09:32, Martin Willemoes Hansen wrote: I was copying and pasting a lot when describing finalizers and the 3 internal constructors. First off, I'd like to say thank you for writing this patch. NP. The

[Mono-docs-list] Npgsql docs update

2003-10-14 Thread Fawad Halim
Attached is a diff containing updates to several Npgsql docs. Is there a standard way of creating Examples pages in ECMA that we can reference from the topics or do the common examples have to be copied in each topic? Regards -fawad Index: class/Npgsql//en/Npgsql/NpgsqlCommand.xml

[Mono-docs-list] web monodoc ptree css

2003-10-14 Thread John Luke
Hello, Small patch to have the tree css behave more like ndoc. Specifically, the hover over links behavior. Index: tree.css === RCS file: /cvs/public/monodoc/browser/web/ptree/tree.css,v retrieving revision 1.2 diff -u -r1.2 tree.css

[Mono-list] Dispose() method in the UdpClient class

2003-10-14 Thread Giuseppe Greco
Hi all, I've given a look at the source code of the UdpClient class... and the Dispose() method looks like this: void Dispose (bool disposing) { if (disposed) return; disposed = true; if (disposing) { // release managed resources } // release unmanaged

Re: [Mono-list] Dispose() method in the UdpClient class

2003-10-14 Thread Gonzalo Paniagua Javier
El mar, 14-10-2003 a las 08:11, Giuseppe Greco escribió: 1. Isn't Socket a managed resource? The Socket class holds a socket, that is an unmanaged resource. That's why it's better to Close it explicitly instead of letting the GC do it. -Gonzalo ___

RE: [Mono-list] Dispose() method in the UdpClient class

2003-10-14 Thread Steinar Herland
2. What the advantage of assigning socket to the s local variable, and then call the Close() method on it? If you mean --- // release unmanaged resources if (socket != null){ socket.Close (); socket = null; } } --- Instead of --- // release unmanaged resources

Re: [Mono-list] Xml Deserialize + Constructor Needed

2003-10-14 Thread Lluis Sanchez
On dt, 2003-10-14 at 06:58, Pablo Fischer wrote: Hi all! I created a file in XML with the help of XmlSerialization, how I want to Deserialize it, I found in may sites (also in msdn) a simple way to do this, so my method: private static void Desarmar() { Accounts accs = new

RE: [Mono-list] mono provider factory

2003-10-14 Thread Marco Canini
Hello Daniel, On Tue, 2003-10-14 at 02:06, Daniel Morgan wrote: If its not included in the build, and you can build it manually, just enable it the build. what do you mean? should i modify the makefile in mcs/class? Brian Ritchie created the Mono.Data.ProviderFactory. If you have an

[Mono-list] RedHat 9 install problem

2003-10-14 Thread khw
I installed the RPMs for RedHat 9, but they install into /usr/lib instead of /usr/local/lib. So when I compile a simple sample app and try to run it I get the error: The assembly corlib.dll was not found or could not be loaded. It should have been installed in the `/usr/local/lib' directory. I

RE: [Mono-list] Re: [DotGNU]Re: Collaboration on alternatives to the US-patent-endangered APIs?

2003-10-14 Thread Rob . Tillie
Hello, As far as I am concerned, there is no point in continuing the Collaboration on alternatives to the US-patent-endangered APIs discussion. Why would one choose to alter an API? Even if it is patented by MS? Greetz, -- Rob. ___ Mono-list

Re: [Mono-list] mod_mono verbose mode?

2003-10-14 Thread Artur Brodowski
W licie z pon, 13-10-2003, godz. 16:32, Gonzalo Paniagua Javier pisze: Is the file readable/writable by both the user running apache and the user running the server? Of course it is, as requested in mod_mono INSTALL file. I have even made it world writeable, just to make sure if it's not some

Re: [Mono-list] Profiler of the runtime

2003-10-14 Thread Miguel de Icaza
Hello, Is it true that class-loading, assembly-loading and module-loading events have not yet be recorded in the profiler interface of the runtime? The interface supports that but there is no actual events raised. Mail us a patch, we will get it included.

[Mono-list] Binaries naming

2003-10-14 Thread Asier Llano Palacios
Hello, I've bin thinking about the names of the executables and found the following two cosmetic problems. a) Unconsistent naming, some of the including an 'm' at the beginning, some of them 'mono' and some of them nothing at all. mcs: for the compiler mono: for the jit

Re: [Mono-list] mod_mono verbose mode?

2003-10-14 Thread Gonzalo Paniagua Javier
El mar, 14-10-2003 a las 11:51, Artur Brodowski escribi: W licie z pon, 13-10-2003, godz. 16:32, Gonzalo Paniagua Javier pisze: Is the file readable/writable by both the user running apache and the user running the server? Of course it is, as requested in mod_mono INSTALL file. I have even

Re: [Mono-list] WG: Mcs/class/System/Microsoft.VisualBasic/VBCodeCompiler

2003-10-14 Thread Gonzalo Paniagua Javier
El mar, 07-10-2003 a las 11:53, Jochen Wezel escribió: Dear Andreas Nahr, Dear Gonzalo, Please could you review the VisualBasicCodeCompiler and after that place it into CVS? It's currently missing a I've seen. Currently, the VBCodeProvider creates a VBCodeGenerator instead of a

Re: [Mono-list] Mono early history.

2003-10-14 Thread Martin Willemoes Hansen
On Tue, 2003-10-14 at 00:44, Miguel de Icaza wrote: Miguel could you put this information in a history document available from http://www.go-mono.com or in the Monkey Guide. If your too busy, then tell me where I should put and I will be glade to do it. Hello, who is Saurik? Jay

[Mono-list] mono blogs

2003-10-14 Thread Martin Willemoes Hansen
Hi! I was thinking that the blogs link on the front page of http://www.go-mono.com could point directly to monologue, instead of pointing to a page that points to monologue. Monologue allready contains a list of bloggers, cant see why there is a need to maintain two lists. Also monologue

Re: [Mono-list] RedHat 9 install problems

2003-10-14 Thread Karl Waclawek
I just compiled a simple Hello app with mcs and tried to run it. Got the corlib.dll not found error, suggesting I should install it in /usr/local/lib. Will look at MONO_PATH. I didn't do anything but install the RPMS and compile a test app, I was assuming that should be enough for

Re: [Mono-list] Xml Deserialize + Constructor Needed

2003-10-14 Thread A Rafael D Teixeira
Well, it's a necessity for xml serialization (I learned it the hard way), that you have an Default Constructor, what means that you need a parameterless constructor (besides your other constructors). That is easy to understand why: when deserializing the xml, the deserializer sees an element

Re: [Mono-list] Xml Deserialize + Constructor Needed

2003-10-14 Thread Pablo Fischer
Thanks! It works! Also thanks to Rafael. Pablo El mar, 14-10-2003 a las 03:28, Lluis Sanchez escribió: On dt, 2003-10-14 at 06:58, Pablo Fischer wrote: Hi all! I created a file in XML with the help of XmlSerialization, how I want to Deserialize it, I found in may sites (also in msdn) a

Re: [Mono-list] Binaries naming

2003-10-14 Thread Theo Spears
I know debian at least has systems to deal with exactly this (for example with awk and friends). It allows you to select which of a set of programs which are traditionally associated with a given name that name is linked to. I don't know if there are similar ways of doing things on redhat, but in

RE: [Mono-list] Binaries naming

2003-10-14 Thread Asier Llano Palacios
Those things are considered easily solvable by selecting to use one or the other. For example: A per-distribution configuration file called /etc/dotnet.conf could be created, where you can choose your default framework. With content like this (and maybe any other per-distribution option):

Re: [Mono-list] Binaries naming

2003-10-14 Thread Miguel de Icaza
Hello, I've bin thinking about the names of the executables and found the following two cosmetic problems. We will likely move to track the same names that the Microsoft.NET Framework uses, to simplify the migration of applications from Windows. Maybe we will keep aliases to the current

RE: [Mono-list] Binaries naming

2003-10-14 Thread Asier Llano Palacios
Hello, We will likely move to track the same names that the Microsoft.NET Framework uses, to simplify the migration of applications from Windows. Maybe we will keep aliases to the current names, we have yet to decide. You can see this trend with wsdl, chktrust, and secutil. Some tools

RE: [Mono-list] Binaries naming

2003-10-14 Thread Miguel de Icaza
Hello, Mono and pnet will still block each other, but at least Mono will have a consistent naming and easy for newbie people. I really don't mind that mono blocks pnet because I'm planning to use only Mono, but as a Linux user I would prefer to have open alternatives. That's why I love

[Mono-list] Thread Abort Behavior

2003-10-14 Thread ggb
Hi, I've view a different behavior with thread aborting between Microsoft and Mono .NET implementations. Sample: Void ThreadProc() { try { //X } catch(ThreadAbortException e) { } //YYY } //YY code

[Mono-list] XSP and mod_mono once again

2003-10-14 Thread Artur Brodowski
Hello. Well, I've managed to get XSP and mod_mono running (thanks again Gonzalo), but it serves pages (even simplest examples) terribly slow. I've read in the archives that data transfer is not Mono's strong side, but Monodoc online version works quite ok for me, even though it is much more

Re: [Mono-list] Dispose() method in the UdpClient class

2003-10-14 Thread Met @ Uber
On Tue, 2003-10-14 at 02:43, Gonzalo Paniagua Javier wrote: El mar, 14-10-2003 a las 08:11, Giuseppe Greco escribi: 1. Isn't Socket a managed resource? The Socket class holds a socket, that is an unmanaged resource. That's why it's better to Close it explicitly instead of letting the GC

[Mono-list] Working with GTK#

2003-10-14 Thread Andy Walker
I am new to Linux, and am trying to get GTK# running on Mandrake 9.2. Mono 0.28 installed and working fine, but when I try to install the RPM I get messages such as: libgnomecanvas =2.2 not available or libglade2 = 2.2 not available is there a single RPM that installs the whole of

Re: [Mono-list] Dispose() method in the UdpClient class

2003-10-14 Thread Jonathan Pryor
The difference between managed and unmanaged resources? Managed == Memory Unmanaged == Everything Else. :-) It's perhaps not quite that clear cut, but it's close. A managed resource is a resource that the runtime (1) knows about, and (2) is responsible for allocating and cleaning up. That

Re: [Mono-list] Building fron CVS

2003-10-14 Thread Duncan Mak
On Mon, 2003-10-13 at 22:48, Karl Waclawek wrote: I re-updated from CVS and got further, until: (again, doing make fullbuild) You need to install ICU. Packages are available on Red Carpet, or you can download the source directly. Duncan. ___

Re: [Mono-list] Re: [DotGNU]Re: Collaboration on alternatives to the US-patent-endangered APIs?

2003-10-14 Thread Norbert Bollow
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Ben Maurer [EMAIL PROTECTED] wrote: Given that Miguel currently believes that none of the API is patentable, and that the only evidence you have given him to the contrary is `we have looked at this api, and it looks like a really thin wrapper' is

Re: [Mono-list] XSP and mod_mono once again

2003-10-14 Thread Gonzalo Paniagua Javier
El mar, 14-10-2003 a las 23:02, Artur Brodowski escribió: Hello. Well, I've managed to get XSP and mod_mono running (thanks again Gonzalo), but it serves pages (even simplest examples) terribly slow. I've read in the archives that data transfer is not Mono's strong side, but Monodoc online

Re: [Mono-list] Binaries naming

2003-10-14 Thread Ian MacLean
Using a 'm' prefix can only ever be a short term fix. What happens when there a multiple stable versions of mono that need to be installed side by side ? you can't really do m1.0ilasm.exe ans m1.1ilasm.exe Ian So, I would still prefer the same name with an 'm' prefix, so mono and pnet don't

Re: [Mono-list] Binaries naming

2003-10-14 Thread yoros
On Wed, Oct 15, 2003 at 12:33:49PM +0900, Ian MacLean wrote: Using a 'm' prefix can only ever be a short term fix. What happens when there a multiple stable versions of mono that need to be installed side by side ? you can't really do m1.0ilasm.exe ans m1.1ilasm.exe In the past there was a

Re: [Mono-list] Binaries naming

2003-10-14 Thread Iratxo Pichel Ortiz.
[EMAIL PROTECTED] wrote: On Wed, Oct 15, 2003 at 12:33:49PM +0900, Ian MacLean wrote: Using a 'm' prefix can only ever be a short term fix. What happens when there a multiple stable versions of mono that need to be installed side by side ? you can't really do m1.0ilasm.exe ans m1.1ilasm.exe