[Mono-dev] Wrong logs from make run-test-ondotnet

2007-03-16 Thread Marek Sieradzki
This patch fixes it. make.patch Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] Patch for Math.cs and MathTest.cs

2007-03-16 Thread Andreas Nahr
Locale.GetText even has a Locale.GetText(String formatString, Object[] params) convenience overload. Greetings Andreas -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Im Auftrag von Miguel de Icaza Gesendet: Freitag, 16. März 2007 17:50 An: Andreas Nahr Cc: 'De

Re: [Mono-dev] Monodoc patch

2007-03-16 Thread Miguel de Icaza
Hey! > Also, I uploaded to updates to the class doc. I'm just wondering if > anyone has had a chance to read them over. I'd like to know if I > should continue documenting things in that style. I got them, I just need to review them. > Finally, I'm hoping to add some new contributor features (th

Re: [Mono-dev] Monodoc patch

2007-03-16 Thread Miguel de Icaza
Hey Kevin, Thanks a lot for your patch! It is now on SVN. Miguel. ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

[Mono-dev] ANN: NUnit 2.2.10 Release

2007-03-16 Thread Charlie Poole
Hi All, I just released NUnit 2.2.10, planned to be the final release in the 2.2 series. It fixes a few bugs but is otherwise compatible with NUnit 2.2.9. See the release notes at http://nunit.org/?p=releaseNotes&r=2.2.10. Download it at http://nunit.org/?p=download. If you're planning to switch

[Mono-dev] Mono's BitConverter.

2007-03-16 Thread Miguel de Icaza
Hello folks, We have recently been made aware of problems in BitConverter's implementation. The .NET bit converter implementation in 1.1 would not do much, it would basically just return the in-memory representation as a byte array or it would turn a byte array into a larger data type with n

Re: [Mono-dev] Reflection Emit issues

2007-03-16 Thread Ayende Rahien
Thanks, it is good to have at least an answer. On 3/16/07, Jb Evain <[EMAIL PROTECTED]> wrote: Hey, Sorry for delay, my freshly trained spam filter decided that this was a spam. I'm sad to admit that I don't see any workaround for that. I guess you'll have to wait for someone to implement tha

Re: [Mono-dev] Patch status

2007-03-16 Thread Miguel de Icaza
Hello Lionel, I had to revert your patch for DateTime, as we are getting a regression on the test suite, see: http://mono.ximian.com/monobuild/builds/HEAD/redhat-9-i386/mono/74470/logs/test-profiles.log The actual error is: Failures: 1) SoapShared.InternalSoapValuesTest.WriteReadData :

[Mono-dev] COM Interop PreserveSig patch

2007-03-16 Thread Jonathan Chambers
Hello, Here is a patch the implements PreserveSig handling for COM Interop. Note that this patch depends on the patch for mcs bug 81161 being accepted first. Code is contributed under MIT/X11 license. Thanks, Jonathan Index: mono/mono/metadata/ChangeLog ==

Re: [Mono-dev] Patch status

2007-03-16 Thread Miguel de Icaza
Hello, > I've sent in mid-February some patches for DateTime, Queue and > Stack (for the compatibility of their serialization between Mono > and > .Net), and I was wondering what their status were as they've not been > included into SVN. Can anybody tell me if there were issues with them? I ap

Re: [Mono-dev] Patch for Queue and Stack

2007-03-16 Thread Miguel de Icaza
Hello Lionel, Thanks for the patches for these two, but could you provide detailed ChangeLog entries for them? I do not want to write ChangeLog entries for everyone's patches. > As requested, the diff files created with 'diff -u'. > > ___ > Mono-

Re: [Mono-dev] Patch for Math.cs and MathTest.cs

2007-03-16 Thread Miguel de Icaza
Hello, > Locale.GetText ("The value '" + mode + "' is not valid for this usage > of the type MidpointRounding.") > > That is not going to work, because you would have to localize every > possible concatenated string combination. Moreover tools wouldn't be > able to extract the neccessary string d

Re: [Mono-dev] [PATCH] System.Web.Services: support for interface service declaration

2007-03-16 Thread Konstantin Triger
Title: RE: [Mono-dev][PATCH] System.Web.Services: support for interface service declaration Hi Eno,     - Does this change intended to include private methods       (BindingFlags.NonPublic) in a *class* as well as       private interface implementation? If yes why? Yes, it's int

Re: [Mono-dev] Patch status

2007-03-16 Thread Rafael Teixeira
Hi Lionel, Do you have the bug # where you attached them? That is the way we prefer, and where some tracking can be done. Thanks for your contributions, On 3/16/07, Lionel Cuir <[EMAIL PROTECTED]> wrote: > Hello all, > > I've sent in mid-February some patches for DateTime, Queue and > Stack (for

Re: [Mono-dev] storing references to mono-objects in C++ and passing them back to C#

2007-03-16 Thread Jonathan Chambers
Hi Andreas, It sounds like what you are doing is embedding mono. Did you see this page on the wiki (http://www.mono-project.com/Embedding_Mono)? To answer your #2 question, I think you want your menthod to be an internal call, rather than a pinvoke. Internal calls do no marshalling, so you wi

[Mono-dev] storing references to mono-objects in C++ and passing them back to C#

2007-03-16 Thread Andreas Lagemann
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi all, I want to do the following in a program which consists of interacting parts of native C++(not managed) code and C# on mono where the mono runtime is started from the C++ code and C# code calls back to C++: 1. I want to store a reference to an

[Mono-dev] Will fix and resubmitt Re: Patch for Math.cs and MathTest.cs

2007-03-16 Thread Dennis Hayes
I should have checked on that. I will just modify the error to a simple string i.e. throw new ArgumentException (Locale.GetText ("This mode is not valid value for MidpointRounding."), "mode") I will verify the changes are made everywhere and resubmit again. Thanks for taking the time to c

[Mono-dev] Patch status

2007-03-16 Thread Lionel Cuir
Hello all, I've sent in mid-February some patches for DateTime, Queue and Stack (for the compatibility of their serialization between Mono and .Net), and I was wondering what their status were as they've not been included into SVN. Can anybody tell me if there were issues with them? Lionel ___

Re: [Mono-dev] Patch for Math.cs and MathTest.cs

2007-03-16 Thread Andreas Nahr
Locale.GetText ("The value '" + mode + "' is not valid for this usage of the type MidpointRounding.") That is not going to work, because you would have to localize every possible concatenated string combination. Moreover tools wouldn't be able to extract the neccessary string data. If there is no