[Mono-docs-list] [Patch] Gnome.App.Show() - Gnome.App.ShowAll()

2003-03-11 Thread Charles Iliya Krempeaux
Hello,

This Patch changes occurrences of Gnome.App.Show() to
Gnome.App.ShowAll() in the tutorials that I wrote.

I've made this change because I just spent a good deal
of time trying to figure out why my application won't
display its contents.  (Because I simply copy and pasted
from my tutorial... and then used it as a basis to write
a real application.)

(For anything but the simplest of Apps, Show() will not
display the Application's contents.  You need to use ShowAll().
And since people will definitely be doing alot of copying 
pasting, from this book, it is important that we don't cause
readers any headaches.)


Could someone (with CVS access) please review this patch and
commit it.


Thanks.


See ya

-- 
 Charles Iliya Krempeaux, BSc
 [EMAIL PROTECTED]


 Reptile Consulting  Services604-REPTILEhttp://www.reptile.ca/
Index: Changelog
===
RCS file: /mono/monkeyguide/Changelog,v
retrieving revision 1.33
diff -u -r1.33 Changelog
--- Changelog	9 Mar 2003 10:50:27 -	1.33
+++ Changelog	12 Mar 2003 01:06:07 -
@@ -1,3 +1,15 @@
+2003-03-11  Charles Iliya Krempeaux [EMAIL PROTECTED]
+	* People are going to be doing alot of copy  pasting from
+	  this book!... so, to prevent people from having many
+	  headaches from wondering why the contents of their App
+	  won't show, changing Gnome.App.Show() to Gnome.App.ShowAll().
+	* monkeyguide/html/en/gnome/bindings/gnome/adding_contents.html :
+	  Changed Show() to ShowAll().
+	* monkeyguide/html/en/gnome/bindings/gnome/hello_world.html :
+	  Changed Show() to ShowAll().
+	* monkeyguide/html/en/gnome/bindings/rsvg/hello_world.html :
+	  Changed Show() to ShowAll().
+
 2003-03-09  Martin Willemoes Hansen [EMAIL PROTECTED]
 	* Fixed up installation/linux.html added a Credits section to it.
 	* Applied Laurent Guerby [EMAIL PROTECTED] patch to 
Index: html/en/gnome/bindings/gnome/adding_contents.html
===
RCS file: /mono/monkeyguide/html/en/gnome/bindings/gnome/adding_contents.html,v
retrieving revision 1.1
diff -u -r1.1 adding_contents.html
--- html/en/gnome/bindings/gnome/adding_contents.html	23 Feb 2003 20:41:16 -	1.1
+++ html/en/gnome/bindings/gnome/adding_contents.html	12 Mar 2003 01:06:07 -
@@ -41,7 +41,7 @@
 new Gnome.Program(Hello World, 1.0, Gnome.Modules.UI, args);
 
 MyMainWindow app = new MyMainWindow(program);
-app.Show();
+app.ShowAll();
  
 program.Run();
 }
Index: html/en/gnome/bindings/gnome/hello_world.html
===
RCS file: /mono/monkeyguide/html/en/gnome/bindings/gnome/hello_world.html,v
retrieving revision 1.4
diff -u -r1.4 hello_world.html
--- html/en/gnome/bindings/gnome/hello_world.html	23 Feb 2003 20:41:16 -	1.4
+++ html/en/gnome/bindings/gnome/hello_world.html	12 Mar 2003 01:06:07 -
@@ -34,7 +34,7 @@
 new Gnome.Program(Hello World, 1.0, Gnome.Modules.UI, args);
 
 Gnome.App app = new Gnome.App(Hello World, Hello World);
-app.Show();
+app.ShowAll();
  
 program.Run();
 }
@@ -97,7 +97,7 @@
 /p
 
 pre class=code
-app.Show();
+app.ShowAll();
 /pre
 
 p
@@ -143,7 +143,7 @@
 new Gnome.Program(Hello World, 1.0, Gnome.Modules.UI, args);
 
 MyMainWindow app = new MyMainWindow(program);
-app.Show();
+app.ShowAll();
  
 program.Run();
 }
Index: html/en/gnome/bindings/rsvg/hello_world.html
===
RCS file: /mono/monkeyguide/html/en/gnome/bindings/rsvg/hello_world.html,v
retrieving revision 1.1
diff -u -r1.1 hello_world.html
--- html/en/gnome/bindings/rsvg/hello_world.html	26 Feb 2003 08:16:32 -	1.1
+++ html/en/gnome/bindings/rsvg/hello_world.html	12 Mar 2003 01:06:08 -
@@ -35,7 +35,7 @@
 new Gnome.Program(SVG Hello World, 1.0, Gnome.Modules.UI, args);
 
 MyMainWindow app = new MyMainWindow(program);
-app.Show();
+app.ShowAll();
  
 program.Run();
 }


RE: [Mono-list] How can the assembly check the OS it's on?

2003-03-11 Thread Graham Allwood
Title: RE: [Mono-list] How can the assembly check the OS it's on?





Are we talking about implementing a Framework class or writing an application?


If it's the latter (which I presume it's not) then there is System.Diagnostics.EventLog which abstracts all of this. But I'm sure you all know that anyway and I've got mixed up with the question.

Graham Allwood




-Original Message-
From: Daniel Morgan [mailto:[EMAIL PROTECTED]] 
Sent: 11 March 2003 07:16
To: Fergus Henderson
Cc: Jonathan Pryor; Charles-Louis; Mono List
Subject: RE: [Mono-list] How can the assembly check the OS it's on?


Maybe you need a pair of glasses to see.


ORP has a CLI and JVM implementation. They even have OCL which is an Open
CLI Library.


-Original Message-
From: Fergus Henderson [mailto:[EMAIL PROTECTED]]On Behalf Of Fergus
Henderson
Sent: Monday, March 10, 2003 11:55 PM
To: Daniel Morgan
Cc: Jonathan Pryor; Charles-Louis; Mono List
Subject: Re: [Mono-list] How can the assembly check the OS it's on?



On 07-Mar-2003, Daniel Morgan [EMAIL PROTECTED] wrote:
 How do you determine in C# or .NET which CLI implementation you are
running?

 DotGNU Portable.NET
 Intel ORP
 Microsoft .NET
 Mono
 Rotor (MS SS CLI)


Since when did ORP become a CLR implementation?


Last time I looked, ORP was a JVM implementation, not a CLR implementation.


--
Fergus Henderson [EMAIL PROTECTED] | I have always known that the pursuit
The University of Melbourne | of excellence is a lethal habit
WWW: http://www.cs.mu.oz.au/~fjh | -- the last words of T. S. Garp.


___
Mono-list maillist - [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list





Re: [Mono-list] Problem compiling, any advice?

2003-03-11 Thread Paolo Molaro
On 03/11/03 ICE wrote:
 RunUO starts ok with Mono... the scripts (written in C# btw) begin to compile... but 
 then disaster strikes and the process is killed by the following message:
 
 Scripts: Compiling...
 Unhandled Exception: System.NullReferenceException: A null value was found where an 
 object instance was required
 in 0x000cc 00 Mono.CSharp.Const:LookupConstantValue (Mono.CSharp.EmitContext)
 in 0x00293 00 Mono.CSharp.MemberAccess:ResolveMemberAccess 
 (Mono.CSharp.EmitContext,Mono.CSharp.Expression,Mono.CSharp.Expression,Mono.CSharp.Location,Mono.CSharp.Expression)

This is a bug in the compiler.

 I am wondering if anyone can give me some advice on what to do next. Is this a bug 
 in mono? If so.. where should I report it?.. . If its not a bug, then any ideas on 
 the fault?
 
 If ya have a spare 10 mins, and wish to see the problem for yourself, you can 
 download the latest version of RunUO (small) from this address: 
 
 http://www.runuo.com/files/index.php

That link requires registering and god knows what else to be able to
download the file. Please provide that actual files to compile or, if
you can't distribute them, try to extract a simple test case that
triggers the issue.

Thanks!

lupus

-- 
-
[EMAIL PROTECTED] debian/rules
[EMAIL PROTECTED] Monkeys do it better
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] Mono Debugger: make errors (on gtksourceview-sharp.dll)

2003-03-11 Thread Charles-Louis
Hi,

I just downloaded and installed mono 0.23, I have gtk-sharp 0.8 on a RH
8.0 box, and I tried to compile the mono-debugger.

Unfortunately, There is a make error in the gtk directory:


Making all in gtk
make[3]: Entre dans le rpertoire
`/tmp/Mono/0.23/mono-debugger-0.2.2/widgets/gtk'
/usr/local/bin/mcs --unsafe --target library -L /lib -r glib-sharp.dll
-r gtk-sharp.dll -r gdk-sharp.dll -o gtksourceview-sharp.dll --recurse
'./*.cs'
./generated/GtkSharp.voidObjectboolSignal.cs(49) error CS0115:
`GtkSharp.voidObjectboolSignal.Dispose' no suitable methods found to
override

Are there any other libraries I need?

-- 
Charles-Louis [EMAIL PROTECTED]

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] How can the assembly check the OS it's on?

2003-03-11 Thread Charles-Louis
Thanks to all of you, You've been very helpful!

I'll be using the System.IO.Path.DirectorySeparatorChar variable,
because it's enough for the application I'm writing :-)




Le mar 11/03/2003  10:05, Graham Allwood a crit :
 Are we talking about implementing a Framework class or writing an
 application?
 
 If it's the latter (which I presume it's not) then there is
 System.Diagnostics.EventLog which abstracts all of this. But I'm sure
 you all know that anyway and I've got mixed up with the question.
 
 Graham Allwood
 
 
 
 -Original Message-
 From: Daniel Morgan [mailto:[EMAIL PROTECTED] 
 Sent: 11 March 2003 07:16
 To: Fergus Henderson
 Cc: Jonathan Pryor; Charles-Louis; Mono List
 Subject: RE: [Mono-list] How can the assembly check the OS it's on?
 
 Maybe you need a pair of glasses to see.
 
 ORP has a CLI and JVM implementation.  They even have OCL which is an
 Open
 CLI Library.
 
 -Original Message-
 From: Fergus Henderson [mailto:[EMAIL PROTECTED] Behalf Of
 Fergus
 Henderson
 Sent: Monday, March 10, 2003 11:55 PM
 To: Daniel Morgan
 Cc: Jonathan Pryor; Charles-Louis; Mono List
 Subject: Re: [Mono-list] How can the assembly check the OS it's on?
 
 
 On 07-Mar-2003, Daniel Morgan [EMAIL PROTECTED] wrote:
  How do you determine in C# or .NET which CLI implementation you are
 running?
 
  DotGNU Portable.NET
  Intel ORP
  Microsoft .NET
  Mono
  Rotor (MS SS CLI)
 
 Since when did ORP become a CLR implementation?
 
 Last time I looked, ORP was a JVM implementation, not a CLR
 implementation.
 
 --
 Fergus Henderson [EMAIL PROTECTED]  |  I have always known that the
 pursuit
 The University of Melbourne |  of excellence is a lethal
 habit
 WWW: http://www.cs.mu.oz.au/~fjh  | -- the last words of T. S.
 Garp.
 
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list
-- 
Charles-Louis [EMAIL PROTECTED]

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problem compiling, any advice?

2003-03-11 Thread ICE
Thanks for your reply :)

 Following on from what you suggested, here is a link directly to the RunUO
 files.
 www.utopia-rsa.com/RunUO-Beta-20.zip

 Running it under mono produces the errors I mentioned earlier :( Is this
bug
 being worked on? Or is it one not previously seen?

 I have been pulling my hair out for months trying to get to the source of
 the problems, but its hard to tell if im making any real progress.

 If you are able to shed any light on this, I would be gratefull. Thanks
 again :)

 -ICE-


 - Original Message -
 From: Paolo Molaro [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Sent: Tuesday, March 11, 2003 9:33 AM
 Subject: Re: [Mono-list] Problem compiling, any advice?


  On 03/11/03 ICE wrote:
   RunUO starts ok with Mono... the scripts (written in C# btw) begin to
 compile... but then disaster strikes and the process is killed by the
 following message:
  
   Scripts: Compiling...
   Unhandled Exception: System.NullReferenceException: A null value was
 found where an object instance was required
   in 0x000cc 00 Mono.CSharp.Const:LookupConstantValue
 (Mono.CSharp.EmitContext)
   in 0x00293 00 Mono.CSharp.MemberAccess:ResolveMemberAccess

(Mono.CSharp.EmitContext,Mono.CSharp.Expression,Mono.CSharp.Expression,Mono.
 CSharp.Location,Mono.CSharp.Expression)
 
  This is a bug in the compiler.
 
   I am wondering if anyone can give me some advice on what to do next.
Is
 this a bug in mono? If so.. where should I report it?.. . If its not a
bug,
 then any ideas on the fault?
  
   If ya have a spare 10 mins, and wish to see the problem for yourself,
 you can download the latest version of RunUO (small) from this address:
  
   http://www.runuo.com/files/index.php
 
  That link requires registering and god knows what else to be able to
  download the file. Please provide that actual files to compile or, if
  you can't distribute them, try to extract a simple test case that
  triggers the issue.
 
  Thanks!
 
  lupus
 
  --
  -
  [EMAIL PROTECTED] debian/rules
  [EMAIL PROTECTED] Monkeys do it better
  ___
  Mono-list maillist  -  [EMAIL PROTECTED]
  http://lists.ximian.com/mailman/listinfo/mono-list
 


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] lies and microbenmarks (Was: Mono 0.23 windows installer)

2003-03-11 Thread Paolo Molaro
On 03/09/03 David Jeske wrote:
   - CSC speeds up MS more than Mono (somewhat expected)

mcs inserts useless additional variables with the pre/post
increment/decrement operators, and that makes the jit produce somewhat
worse code, there is already a bug filed for that.

   - while many of the mono slowdowns seem related to JIT
 optimizations (which the new JIT will change and improve),
 the 2x slowdown in index_string_test points to a string,
 hashing, memory allocation, or other hashtable inefficiency

Yes, this issue should be investigated. We already discussed in the past
about storing the calculated hashvalue for strings: that may help
somewhat. Serge measured our hashtable implementation using the MS
runtime and the speed was comparable to their implementation.
The other issue is memory allocation: in the tests a lot of boxing
operations take place, I have a simple patch that speeds up both
index_test and index_string_test by about 10%, though it can be improved.

lupus

-- 
-
[EMAIL PROTECTED] debian/rules
[EMAIL PROTECTED] Monkeys do it better
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] mono under Debian : unresolved type ...

2003-03-11 Thread Paolo Molaro
On 03/10/03 David Marsal wrote:
 I try to compile the following hello.cs with mcs :
 
 using System;
 public class HelloWorld {
   static void Main() {
 Console.WriteLine(Hello World!);
   }
 }
 
 
 but when I launch mcs I get :
 
 unresolved type: [mscorlib]System.Reflection.MemberFilter
 unresolved type:
 [mscorlib]System.Diagnostics.SymbolStore.ISymbolDocumentWriter
 unresolved type:
[...]

You have probably installed pnet or ran a command that replaces
the mono CLR execution engine with the pnet one. pnet can't run
mcs so you can download and run (as root) this script:
http://www.debianplanet.org/mono/mono.init

to get back to using mono to run .net programs. I include the script
here as well:

==cut cut==
#!/bin/sh
# Copyright (C) 2002 Alp Toker [EMAIL PROTECTED]
# Licensed under the terms of the GNU GPL

if [ ! -e /proc/sys/fs/binfmt_misc/register ]; then
/sbin/modprobe binfmt_misc
mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
fi

if [ -e /proc/sys/fs/binfmt_misc/register ]; then
echo ':CLR:M::MZ::/usr/bin/mono:'  /proc/sys/fs/binfmt_misc/register
else
echo No binfmt_misc support
exit 1
fi

exit 0
==cut cut==

lupus

-- 
-
[EMAIL PROTECTED] debian/rules
[EMAIL PROTECTED] Monkeys do it better
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] [Myricom help #17446]Can you help me?(.net on redhat8.0)

2003-03-11 Thread hlf566
 Hello my dear friend:
 I am a linux lover,i am installing mono.
 I installed it following the next step:
 http://www.apacheworld.org/modmono/INSTALL
 a) Install Mono 0.20
 Install the Mono rpms from 
 http://www.go-mono.com/download.html
 b) Install Apache
 httpd-2.0.40-8.i386.rpm
 httpd-devel-2.0.40-8.i386.rpm
 c) mod_mono
 http://www.apacheworld.org/modmono/
 download  Red Hat 8.0 rpm,
 download  corlib.dll.tar.gz 
 copy it over your existing corlib.dll 
 d) XSP web server (0.3) 
 chown -R apache.apache /home/user/mono/install/xsp/server/test
 e) Configure Apache
 Edit the /etc/httpd/conf/httpd.conf file and add the following:
 
 LoadModule mono_module libmod_mono.so
 MonoApplication /mono /home/user/mono/install/xsp/server/test
 mkdir /var/www/.wapi/
 chown apache.apache /var/www/.wapi
 chmod 700 /var/www/.wapi
 f) Start apache 
 As root, type:
 /etc/init.d/httpd start
 g) Browse the examples
 http://127.0.0.1/mono/index.aspx
 
  Now i can look  around those examples,
 
  I have a application abount .net(c#) on windows 2000,but i am  not able to use it 
 on redhat8.0.
  If you would like help me,you can mail me a instruction about installing asp.net on 
 redhat8.0.
  especially how to  dispose application.
  Thank you very much.
  I am a chinese.
  I would lile make a friend with you.
  please mail me as quickly as possible.
 

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Debugger: make errors (ongtksourceview-sharp.dll)

2003-03-11 Thread Charles-Louis
Le mar 11/03/2003  11:37, Martin Willemoes Hansen a crit :
 On Tue, 2003-03-11 at 10:42, Charles-Louis wrote:
  Hi,
  
  I just downloaded and installed mono 0.23, I have gtk-sharp 0.8 on a RH
  8.0 box, and I tried to compile the mono-debugger.
  
  Unfortunately, There is a make error in the gtk directory:
  
  
  Making all in gtk
  make[3]: Entre dans le rpertoire
  `/tmp/Mono/0.23/mono-debugger-0.2.2/widgets/gtk'
  /usr/local/bin/mcs --unsafe --target library -L /lib -r glib-sharp.dll
  -r gtk-sharp.dll -r gdk-sharp.dll -o gtksourceview-sharp.dll --recurse
  './*.cs'
  ./generated/GtkSharp.voidObjectboolSignal.cs(49) error CS0115:
  `GtkSharp.voidObjectboolSignal.Dispose' no suitable methods found to
  override
  
  Are there any other libraries I need?
 
 I get this err too :(

these errors don't appear when installing the CVS version of gtk-sharp.
-- 
Charles-Louis [EMAIL PROTECTED]

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] lies and microbenmarks

2003-03-11 Thread Sebastian Bergmann
David Jeske wrote:
   - while many of the mono slowdowns seem related to JIT
 optimizations (which the new JIT will change and improve),
 the 2x slowdown in index_string_test points to a string,
 hashing, memory allocation, or other hashtable inefficiency

  Is this new JIT already available somewhere, for instance from CVS? If
  so, is it in a usable state? When is it expected to be ready?

  I'm currently researching an article on Mono, so this information would
  be appreciated,
Sebastian

-- 
  Sebastian Bergmann
  http://sebastian-bergmann.de/ http://phpOpenTracker.de/

  Did I help you? Consider a gift: http://wishlist.sebastian-bergmann.de/
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Status of unsafe code in Mono

2003-03-11 Thread Miguel de Icaza
hello!

 I am working on improving/rewriting Mono.Math.BigInteger, a class that
 is essential for asymmetrical crypto. My main focus is speed. I have
 found that using unsafe code can give a 20% - 50% speed boost in a
 couple of functions.

 I was wondering how well unsafe code is implemented in mono. Is it to
 the point where production code can use it?

It is well implemented, but if there was a bug, we would rapidly fix it
;-)

Miguel
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Problem compiling, any advice?

2003-03-11 Thread Miguel de Icaza
Hello,

 RunUO starts ok with Mono... the scripts (written in C# btw) begin to
 compile... but then disaster strikes and the process is killed by the
 following message:
  
 Scripts: Compiling...
 Unhandled Exception: System.NullReferenceException: A null value was
 found where an object instance was required
 in 0x000cc 00 Mono.CSharp.Const:LookupConstantValue
 (Mono.CSharp.EmitContext)
 in 0x00293 00 Mono.CSharp.MemberAccess:ResolveMemberAccess
 (Mono.CSharp.EmitContext,Mono.CSharp.Expression,Mono.CSharp.Expression,Mono.CSharp.Location,Mono.CSharp.Expression)
 in 0x0038d 00 Mono.CSharp.SimpleName:SimpleNameResolve

This output is actually the output of an old crash on the compiler.  You
might just have an old version of the compiler.  The new compiler would
have provided more information about where it crashed.

Upgrade your compiler/mono

Miguel.
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Status of unsafe code in Mono

2003-03-11 Thread Alan Tam
I think the question is:
Would we really accept nothing except code that make things work more correct?

Would we try to accept code if someone proves to us that it also works as
correct as ours but is faster?

Regards,
Alan

- Original Message -
From: Miguel de Icaza [EMAIL PROTECTED]
To: Ben Maurer [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Wednesday, March 12, 2003 12:15 AM
Subject: Re: [Mono-list] Status of unsafe code in Mono


 hello!

  I am working on improving/rewriting Mono.Math.BigInteger, a class that
  is essential for asymmetrical crypto. My main focus is speed. I have
  found that using unsafe code can give a 20% - 50% speed boost in a
  couple of functions.

  I was wondering how well unsafe code is implemented in mono. Is it to
  the point where production code can use it?

 It is well implemented, but if there was a bug, we would rapidly fix it
 ;-)

 Miguel
 ___
 Mono-list maillist  -  [EMAIL PROTECTED]
 http://lists.ximian.com/mailman/listinfo/mono-list


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Status of unsafe code in Mono

2003-03-11 Thread Martin Baulig
Ben Maurer [EMAIL PROTECTED] writes:

 I am working on improving/rewriting Mono.Math.BigInteger, a class that is essential 
 for
 asymmetrical crypto. My main focus is speed. I have found that using unsafe code can 
 give
 a 20% - 50% speed boost in a couple of functions.

Hi,

do you really mean `unsafe' and not `unchecked' - `unsafe' allows you to do unsafe 
things
with pointers like, for instance, getting the address of something - while `uncheck'
disables things like overflow checking.

-- 
Martin Baulig
[EMAIL PROTECTED]
[EMAIL PROTECTED]
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] Mono Debugger: make errors (on gtksourceview-sharp.dll)

2003-03-11 Thread Martin Baulig
Charles-Louis [EMAIL PROTECTED] writes:

 these errors don't appear when installing the CVS version of gtk-sharp.

Ah, so that's the reason why I can't reproduce it.  I'll check whether that's gtk# or a
debugger problem.

-- 
Martin Baulig
[EMAIL PROTECTED]
[EMAIL PROTECTED]
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


Re: [Mono-list] lies and microbenmarks

2003-03-11 Thread Miguel de Icaza
Hello,

- while many of the mono slowdowns seem related to JIT
  optimizations (which the new JIT will change and improve),
  the 2x slowdown in index_string_test points to a string,
  hashing, memory allocation, or other hashtable inefficiency
 
   Is this new JIT already available somewhere, for instance from CVS? If
   so, is it in a usable state? When is it expected to be ready?

Not available yet.  When we are happy with its stability for the kind of
production use that the current JIT is used for, it will be released. 

So `soon', but do not know how soon.  It is now able to bootstrap all of
the Mono class libraries, but there are still things that are broken.

Miguel
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] libgc in CVS

2003-03-11 Thread Kenneth Benson
Title: libgc in CVS





*blinks*


Did I miss something while I was gone?


Ummm, why are all the different directories duplicated inside libgc?


Thanks, (with a puzzled look)


Ken





[Mono-list] Mono .23 Release - Red carpet

2003-03-11 Thread Chris Whelan




Hi-

I was just wondering why the mono red-carpet channel is still at .22

Regards,

Chris Whelan






[Mono-list] Database with the best support in mono?

2003-03-11 Thread revision17
In all the .net apps I write I'm trying to make them as easily comatible
with mono as possible.  One that I'll be writing shortly uses a database,
and I was wondering which has/will have the best support?


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


RE: [Mono-list] Database with the best support in mono?

2003-03-11 Thread Daniel Morgan
For more information see http://www.go-mono.com/ado-net.html

It depends on your requirements.  I will ask some questions.

What platforms will you run mono?

What kind of hardware do you anticipate using?

What is your budget?

How many users or maximum connections do you anticpate?

Will you have multiple databases scattered around the world?  Another words,
is distributed databases and replication technology important to you?

Do you think you will need things like stored procedures, triggers,
transactions?

Mono has support for many data sources: XML, Oracle, Microsoft SQL Server,
Sybase,
MySQL, PostgreSQL, SQL Lite, Firebird/Interbase, IBM DB2 Universal Database,
and ODBC.

If a data source is not supported, it should not be hard to create a new
using the various interfaces provided in ADO.NET like IDbConnection,
IDbCommand, IDataReader, and IDataAdapter, etc...   Also, if the data source
is not listed above, there is a good chance that the data source has ODBC
support which Mono's implementation of ADO.NET has.

I will not compare the differences between the various DBMS engines out
there; this should be done by your own research which is better.  However, I
can compare the various providers in Mono.

Microosoft SQL Server (System.Data.SqlClient) is actively developed and is
very usuable.

PostgreSQL (Npgsql) is actively developed.

MySQL (ByteFX.Data.MySQLClient) is actively developed.

Oracle (System.Data.OracleClient) is actively developed, but has problems on
Windows.  Hopefully, this will change.

IBM DB2 (Mono.Data.DB2Client) is actively developed, and I hear it works.

The other providers work, but are not actively developed much.

ODBC (System.Data.Odbc) works on Windows and Linux.

PostgreSQL (Mono.Data.PostgreSqlClient) works, but is deprecated in favor of
Npgsql.

MySQL (Mono.Data.MySql) works, but is deprecated in favor of
ByteFX.Data.MySQLClient.

OLE DB (System.Data.OleDb) only works on Linux due to its underlying native
library libgda which only works Linux.

SQL Lite (Mono.Data.SqliteClient) works.

Sybase (Mono.Data.SybaseClient) I hear works, but may have bit-rotted.

TdsClient (Mono.Data.TdsClient) for older Sybase and Microsoft SQL Server
database.   I hear it
works, but may have bit-rotted.

I don't know the status of Firebird/Interbase though since it is a
completely separate project.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] Behalf Of revision17
Sent: Tuesday, March 11, 2003 4:30 PM
To: monolist
Subject: [Mono-list] Database with the best support in mono?


In all the .net apps I write I'm trying to make them as easily comatible
with mono as possible.  One that I'll be writing shortly uses a database,
and I was wondering which has/will have the best support?


___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list

___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list


[Mono-list] .Net developer position available to

2003-03-11 Thread John BouAntoun
Title: .Net developer position available to 






Hi guys,


I'm looking for a monoer who has .Net (preferrably ASP.Net) experience and a degree in Computer Science/Computer Engineering/Software Engineering who lives in Sydney, Austrlia.

The position involves work on a global ASP.Net CRM system as well as porting a legacy windows VB App to C#.


If you are an avid monoer, who codes reguarly in C# and has some SQL Server and ASP.Net experience shoot me an email.


Thanks


John BouAntoun





Re: [Mono-list] Mono .23 Release - Red carpet

2003-03-11 Thread Miguel de Icaza
Hello,

 I was just wondering why the mono red-carpet channel is still at .22

It has been corrected.
___
Mono-list maillist  -  [EMAIL PROTECTED]
http://lists.ximian.com/mailman/listinfo/mono-list