Re: [Mono-winforms-list] Crash with BackgroundWorker. Please confirm!

2007-09-10 Thread AATDark
Hi, Please fill a bug report at bugzilla for that issue http://bugzilla.ximian.com http://bugzilla.ximian.com/ Thank you very much Yours Bernhard _ Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von StApostol Gesendet: Mittwoch, 5. September 2007 20:52 An:

Re: [Mono-dev] [Beginners] Problem to do a simple makefile

2007-09-10 Thread Marcos Cobeña Morián
Hi David, It seems like an assembly version mismatch. Try using gmcs instead of mcs (for targeting 2.0); and it shouldn't be needed to reference System.dll. Also, assemblies installed on GAC can be referenced directly without copying files to your output path. My two bits. Regards, 2007/9/10,

[Mono-dev] Test Results: IronPython 2.0 Alpha 3/4, Kamaelia, Nested Yields, MS.NET and Mono 1.2.5./trunk/ r85570

2007-09-10 Thread M. David Peterson
I'll be filing a proper bug report to Mono Bugzilla shortly, but in follow-up to a conversation Michael Sparks and I had in #kamaelia earlier this morning the following is the result of running a simple test on IronPython 2.0 Alpha 4 on Windows and Alpha 3 and 4 on Mono 1.2.5./trunk/r85570.

Re: [Mono-dev] Test Results: IronPython 2.0 Alpha 3/4, Kamaelia, Nested Yields, MS.NET and Mono 1.2.5./trunk/ r85570

2007-09-10 Thread M. David Peterson
On 9/10/07, M. David Peterson [EMAIL PROTECTED] wrote: I'll be filing a proper bug report to Mono Bugzilla shortly, Done http://bugzilla.ximian.com/show_bug.cgi?id=82782 -- /M:D M. David Peterson http://mdavid.name | http://www.oreillynet.com/pub/au/2354 | http://dev.aol.com/blog/3155

Re: [Mono-dev] .Net 2.0 asynchronous web pages

2007-09-10 Thread Sunny
On 8/5/07, Adar Wesley [EMAIL PROTECTED] wrote: As far as I know the Async pages feature is not fully implemented. Is there any timeline for this? Does someone work on it? -- Svetoslav Milenov (Sunny) Even the most advanced equipment in the hands of the ignorant is just a pile of scrap.

Re: [Mono-dev] .Net 2.0 asynchronous web pages

2007-09-10 Thread Sunny
I just opened a bug: http://bugzilla.ximian.com/show_bug.cgi?id=82783 -- Svetoslav Milenov (Sunny) Even the most advanced equipment in the hands of the ignorant is just a pile of scrap. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

Re: [Mono-dev] Test Results: IronPython 2.0 Alpha 3/4, Kamaelia, Nested Yields, MS.NET and Mono 1.2.5./trunk/ r85570

2007-09-10 Thread M. David Peterson
On 9/10/07, M. David Peterson [EMAIL PROTECTED] wrote: On 9/10/07, M. David Peterson [EMAIL PROTECTED] wrote: I'll be filing a proper bug report to Mono Bugzilla shortly, Done http://bugzilla.ximian.com/show_bug.cgi?id=82782 Absolutely astounding, --- Additional Comments From

Re: [Mono-dev] Test Results: IronPython 2.0 Alpha 3/4, Kamaelia, Nested Yields, MS.NET and Mono 1.2.5./trunk/ r85570

2007-09-10 Thread M. David Peterson
On 9/10/07, M. David Peterson [EMAIL PROTECTED] wrote: Ahhh, the power of open source. That *ROCKS*! Thanks, Zoltan! Beautiful, m-david-petersons-computer:~/Projects/extf.googlecode.com/vendor/IronPython- 2.0A4 mdavid$ which mono /Users/mdavid/build/nuxleus/bin/mono

Re: [Mono-dev] Test Results: IronPython 2.0 Alpha 3/4, Kamaelia, Nested Yields, MS.NET and Mono 1.2.5./trunk/ r85570

2007-09-10 Thread M. David Peterson
On 9/10/07, M. David Peterson [EMAIL PROTECTED] wrote: I'm ready to hit it hard, as is Sylvain (he arrives here in our US offices in three days), at which point we both plan to spend a considerable amount of time w/ IronPython 2.0 running via Mono and focus our time on getting the the

Re: [Mono-list] mono_mod fails

2007-09-10 Thread Joshua Tauberer
Alexander Christov wrote: Can anybody explain whatś wrong with the mono_mod installation considering the following apacheś error.log contents: [Mon Sep 10 13:05:39 2007] [notice] caught SIGTERM, shutting down [Mon Sep 10 13:05:39 2007] [warn] (22)Invalid argument: Failed to destroy the

[Mono-list] Little Mono Addins documentation errata

2007-09-10 Thread José A. Salvador Vanaclocha
Hi, We are studying the mono addins architecture and we have found a little errata in the documentation, we think. Concretely at the host xml ExtensionNode element definition in the Mono Addins Introduction wich displays ... ExtensionPoint path = /TextEditor/TypeExtensions/ICommand

Re: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono

2007-09-10 Thread Miguel de Icaza
Hello, After customer request, we have modified our .NET component to work with Mono. To do so few minor changes were required and full rewrite of Random methods (since .NET Framework and Mono return different random values for the same seed). This seems like an odd dependency to have

Re: [Mono-list] Little Mono Addins documentation errata

2007-09-10 Thread Lluis Sanchez
El dl 10 de 09 del 2007 a les 18:32 +0200, en/na José A. Salvador Vanaclocha va escriure: Hi, We are studying the mono addins architecture and we have found a little errata in the documentation, we think. Concretely at the host xml ExtensionNode element definition in the Mono Addins

Re: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono

2007-09-10 Thread Alan McGovern
If you need the same numbers for a given seed, why are you using a random number generator? If you need reproducible pseudo-random numbers then you could just SHA1 has your seed, which gives you 20 bytes (4 integers). Then if you need more numbers, SHA1 hash the result from the previous operation

Re: [Mono-list] GemBox.Spreadsheet 2.9 supporting Mono

2007-09-10 Thread Sebastien Pouliot
My understanding is that the issue is solved but here's my two cents anyway... Using SHA1 is *heavyweight* (CPU) for the job of getting regular randomness. A lot of faster algorithms are available to do so. E.g. You could copy Mono's Random implementation (MIT licensed) and execute it under any

[Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Lluis Sanchez
If you found some annoying bugs in MonoDevelop that you'd like to get fixed in the next release. If you reported some bugs which are not yet fixed maybe because we've not been able to reproduce them. If you want to help in tracking down some of the issues that MD has... please join us next

Re: [Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Daniel Morgan
I understand this maybe low-priority for you, but I would like to see it fixed - get MonoDevelop to build and run on Win32 - at least console projects building and running out-of-the-box would be nice. I think it would be a stretch to ask for the asp.net and gtk# designers to work too --

Re: [Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Lluis Sanchez
El dl 10 de 09 del 2007 a les 12:09 -0700, en/na Daniel Morgan va escriure: I understand this maybe low-priority for you, but I would like to see it fixed - get MonoDevelop to build and run on Win32 - at least console projects building and running out-of-the-box would be nice. I think it

Re: [Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Austin Winstanley
How about getting Regions to work? What are the thoughts on this? It would be a great help for organizing large amounts of code... ___ Mono-list maillist - Mono-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-list

Re: [Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Lluis Sanchez
El dl 10 de 09 del 2007 a les 15:07 -0500, en/na Austin Winstanley va escriure: How about getting Regions to work? What are the thoughts on this? It would be a great help for organizing large amounts of code... I'm sure it is useful, but that's not a bug, but a missing feature. Lluis.

Re: [Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Austin Winstanley
Ok, well, while I understand it's not going to be in this release, is there any plans to implement Regions at some point? On 9/10/07, Lluis Sanchez [EMAIL PROTECTED] wrote: El dl 10 de 09 del 2007 a les 15:07 -0500, en/na Austin Winstanley va escriure: How about getting Regions to work?

Re: [Mono-list] Sept 14th: MonoDevelop Bug Day

2007-09-10 Thread Lluis Sanchez
El dl 10 de 09 del 2007 a les 15:21 -0500, en/na Austin Winstanley va escriure: Ok, well, while I understand it's not going to be in this release, is there any plans to implement Regions at some point? Yes, it's in the plan, but not for MD 1.0. On 9/10/07, Lluis Sanchez [EMAIL

[Mono-list] SCP

2007-09-10 Thread Matthew Daubney
Hey all, is there a way to send files using SCP in C#? If not, then is there an SFTP or something similar alternative? Thanks for any advice, Matt Daubney ___ Mono-list maillist - Mono-list@lists.ximian.com

Re: [Mono-list] SCP

2007-09-10 Thread Damien DALY
2007/9/10, Matthew Daubney [EMAIL PROTECTED]: Hey all, is there a way to send files using SCP in C#? If not, then is there an SFTP or something similar alternative? Hi, I've searched for such libs (to do SSH) and I've found 2 libs : http://granados.sourceforge.net/

Re: [Mono-list] mono_mod fails

2007-09-10 Thread Robert Jordan
Alexander Christov wrote: Hi All! Can anybody explain whatś wrong with the mono_mod installation considering the following apacheś error.log contents: Please post your mod_mono config, especially the part where applications are configured. Robert