[Mono-bugs] [Bug 574873] Programatically selecting a row in a tableview doesn't fire RowSelected
http://bugzilla.novell.com/show_bug.cgi?id=574873 http://bugzilla.novell.com/show_bug.cgi?id=574873#c2 Manfred Pohler changed: What|Removed |Added Status|NEEDINFO|NEW Info Provider|manf...@pp-p.net| --- Comment #2 from Manfred Pohler 2010-02-20 07:04:49 UTC --- No, I didn't check with ObjC. So I accept your information that this works "as expected" for SelectRow. UISlider should fire it's event. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 570959] UISlider does not fire ValueChanged when the value is set via code
http://bugzilla.novell.com/show_bug.cgi?id=570959 http://bugzilla.novell.com/show_bug.cgi?id=570959#c2 Manfred Pohler changed: What|Removed |Added Status|NEEDINFO|NEW Info Provider|manf...@pp-p.net| --- Comment #2 from Manfred Pohler 2010-02-20 06:59:46 UTC --- (In reply to comment #1) > Is this still happening? If so can you provide a test case please. Yes it happens. Create a project and add a class like this. public class VCTest : UIViewController { UIButton btN; UISlider slD; UILabel lbL; public override void ViewDidLoad() { base.ViewDidLoad(); btN = UIButton.FromType(UIButtonType.RoundedRect); btN.Frame = new RectangleF(10, 10, 200, 30); btN.SetTitle("Test", UIControlState.Normal); btN.TouchUpInside += delegate { slD.Value = 50; }; slD=new UISlider(new RectangleF(10, 60, 300, 30)); slD.MinValue = 0; slD.MaxValue = 100; slD.ValueChanged += delegate { lbL.Text = slD.Value.ToString(); }; lbL= new UILabel(new RectangleF(10, 160, 100, 30)); View.AddSubview(btN); View.AddSubview(slD); View.AddSubview(lbL); } } Use this class as you view with public override bool FinishedLaunching (UIApplication app, NSDictionary options) { window.AddSubview(new VCTest().View); window.MakeKeyAndVisible (); return true; } Expected: the button should set the value and fire slD.ValueChanged It does: the button changes the slider value - but it does NOT fire slD.ValueChanged -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 556498] Web Service Async method callback never return.
http://bugzilla.novell.com/show_bug.cgi?id=556498 http://bugzilla.novell.com/show_bug.cgi?id=556498#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #1 from Geoff Norton 2010-02-20 03:48:43 UTC --- dupe *** This bug has been marked as a duplicate of bug 556441 *** http://bugzilla.novell.com/show_bug.cgi?id=556441 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 556441] Web Service Async method callback never fired.
http://bugzilla.novell.com/show_bug.cgi?id=556441 http://bugzilla.novell.com/show_bug.cgi?id=556441#c2 --- Comment #2 from Geoff Norton 2010-02-20 03:48:43 UTC --- *** Bug 556498 has been marked as a duplicate of this bug. *** http://bugzilla.novell.com/show_bug.cgi?id=556498 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 556441] Web Service Async method callback never fired.
http://bugzilla.novell.com/show_bug.cgi?id=556441 http://bugzilla.novell.com/show_bug.cgi?id=556441#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-20 03:46:58 UTC --- I have tested this again, and I currently get: Method Called Method return ID=0 Date=1/1/0001 12:00:00 AM Name=asdasd TypeId=0 So this is either fixed already, or will be in the next release. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 548346] [SIM] objc_msgSend_stret which returns a struct containing a double does a ret $0x4 leaving the stack misaigned
http://bugzilla.novell.com/show_bug.cgi?id=548346 http://bugzilla.novell.com/show_bug.cgi?id=548346#c9 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #9 from Geoff Norton 2010-02-20 02:10:03 UTC --- Turns out this is all fixed, the misalignment happens in objc_msgSend_stret so our previous patch is sufficient, the original case of: System.Console.WriteLine("Latitude: "+new MonoTouch.CoreLocation.CLLocation().Coordinate.Latitude.ToString()); still fails, exactly like: [[[CLLocation alloc] init] coordinate] fails, because it pokes at internal structures in CLLocation that new doesn't initialize. Closing. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580185] assembly version redirection fails to work properly
http://bugzilla.novell.com/show_bug.cgi?id=580185 http://bugzilla.novell.com/show_bug.cgi?id=580185#c6 --- Comment #6 from Marek Habersack 2010-02-20 03:00:07 CET --- Created an attachment (id=343639) --> (http://bugzilla.novell.com/attachment.cgi?id=343639) assembly_binding.diff The attached patch fixes the issue. Not committed yet - pending review by the runtime folks. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 552582] Problems when pausing
http://bugzilla.novell.com/show_bug.cgi?id=552582 http://bugzilla.novell.com/show_bug.cgi?id=552582#c6 Michael Hutchinson changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #6 from Michael Hutchinson 2010-02-20 01:17:18 UTC --- Probably not. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 561650] MonoDevelop Editor Slowdown
http://bugzilla.novell.com/show_bug.cgi?id=561650 http://bugzilla.novell.com/show_bug.cgi?id=561650#c3 --- Comment #3 from Marcelo de Sena Lacerda 2010-02-20 00:36:16 UTC --- I don't have a mac available anymore :( -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581543] trying to set a UIBarButtonItem to a navigation bar doesn't appear
http://bugzilla.novell.com/show_bug.cgi?id=581543 http://bugzilla.novell.com/show_bug.cgi?id=581543#c2 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #2 from Geoff Norton 2010-02-20 00:24:48 UTC --- The docs for RightBarButtonItem specify that you set it to appear when the current stack is visible, so you're setting it then immediately navigating away, change the line to: dvc.NavigationItem.SetRightBarButtonItem(doneButton, false); and it will do what you want. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581543] trying to set a UIBarButtonItem to a navigation bar doesn't appear
http://bugzilla.novell.com/show_bug.cgi?id=581543 http://bugzilla.novell.com/show_bug.cgi?id=581543#c1 --- Comment #1 from Martin Bowling 2010-02-20 00:17:42 UTC --- Created an attachment (id=343634) --> (http://bugzilla.novell.com/attachment.cgi?id=343634) sample MonoTouch.Dialog project that exhibits this problem -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581543] New: trying to set a UIBarButtonItem to a navigation bar doesn't appear
http://bugzilla.novell.com/show_bug.cgi?id=581543 http://bugzilla.novell.com/show_bug.cgi?id=581543#c0 Summary: trying to set a UIBarButtonItem to a navigation bar doesn't appear Classification: Mono Product: MonoTouch Version: SVN Platform: Macintosh OS/Version: Mac OS X 10.6 Status: NEW Severity: Normal Priority: P5 - None Component: Class Libraries AssignedTo: gnor...@novell.com ReportedBy: martinbowl...@gmail.com QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_6_2; en-us) AppleWebKit/531.21.8 (KHTML, like Gecko) Version/4.0.4 Safari/531.21.10 creating an instance of a UIBarButtonItem in my class to hold a doneButton, then newing up the button before pushing a new view onto the controller, the done button is not displayed. Reproducible: Always Steps to Reproduce: 1. 2. 3. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 555439] TcpClient fails when using 3G (but not always)
http://bugzilla.novell.com/show_bug.cgi?id=555439 http://bugzilla.novell.com/show_bug.cgi?id=555439#c26 --- Comment #26 from Katherine Ye 2010-02-19 23:07:29 UTC --- I have figured out the Uri part. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581459] Process restarts by thread abort with AspNetForums and mono-2.6.3
http://bugzilla.novell.com/show_bug.cgi?id=581459 http://bugzilla.novell.com/show_bug.cgi?id=581459#c3 --- Comment #3 from Marc Christensen 2010-02-19 23:06:34 UTC --- Here are a couple traces with file and line numbers: Thread was being aborted Description: HTTP 500. Error processing request. Stack Trace: System.Threading.ThreadAbortException: Thread was being aborted at (wrapper managed-to-native) System.Diagnostics.Process:CreateProcess_internal (System.Diagnostics.ProcessStartInfo,intptr,intptr,intptr,System.Diagnostics.Process/ProcInfo&) at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x002a7] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System/System.Diagnostics/Process.cs:1096 at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x00096] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System/System.Diagnostics/Process.cs:1194 at System.Diagnostics.Process.Start () [0x0002c] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System/System.Diagnostics/Process.cs:1204 at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:Start () at Mono.CSharp.CSharpCodeCompiler.CompileFromFileBatch (System.CodeDom.Compiler.CompilerParameters options, System.String[] fileNames) [0x00190] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System/Microsoft.CSharp/CSharpCodeCompiler.cs:246 Server Error in '/' Application Thread was being aborted Description: HTTP 500. Error processing request. Stack Trace: System.Threading.ThreadAbortException: Thread was being aborted at (wrapper managed-to-native) System.Reflection.Assembly:GetTypes (bool) at System.Reflection.Assembly.GetTypes () [0x0] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/corlib/System.Reflection/Assembly.cs:359 at System.Web.UI.TemplateParser.FindNamespaceInAssembly (System.Reflection.Assembly asm, System.String namesp) [0x0] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.UI/TemplateParser.cs:630 at System.Web.UI.TemplateParser.AddAssemblyForNamespace (System.String namesp) [0x00067] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.UI/TemplateParser.cs:606 at System.Web.UI.TemplateParser.AddImport (System.String namesp) [0x0004c] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.UI/TemplateParser.cs:588 at System.Web.UI.TemplateParser.AddDirective (System.String directive, System.Collections.Hashtable atts) [0x001c4] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.UI/TemplateParser.cs:380 at System.Web.UI.TemplateControlParser.AddDirective (System.String directive, System.Collections.Hashtable atts) [0x0022d] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.UI/TemplateControlParser.cs:222 at System.Web.Compilation.AspGenerator.TagParsed (ILocation location, TagType tagtype, System.String tagid, System.Web.Compilation.TagAttributes attributes) [0x000ea] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/AspGenerator.cs:958 at System.Web.Compilation.AspParser.OnTagParsed (TagType tagtype, System.String id, System.Web.Compilation.TagAttributes attributes) [0x0001c] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/AspParser.cs:654 at System.Web.Compilation.AspParser.Parse () [0x00113] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/AspParser.cs:283 at System.Web.Compilation.AspGenerator.Parse (System.IO.TextReader reader, System.String filename, Boolean doInitParser) [0x00029] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/AspGenerator.cs:649 at System.Web.Compilation.GenericBuildProvider`1[TParser].Parse () [0x00032] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/GenericBuildProvider.cs:87 at System.Web.Compilation.GenericBuildProvider`1[TParser].GenerateCode () [0x0] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/GenericBuildProvider.cs:102 at System.Web.Compilation.GenericBuildProvider`1[TParser].GenerateCode (System.Web.Compilation.AssemblyBuilder assemblyBuilder) [0xb] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/GenericBuildProvider.cs:121 at System.Web.Compilation.BuildManager.GenerateAssembly (System.Web.Compilation.AssemblyBuilder abuilder, System.Web.Compilation.BuildProviderGroup group, System.Web.VirtualPath vp, Boolean debug) [0x0007a] in /usr/src/packages/BUILD/mono-2.6.3/mcs/class/System.Web/System.Web.Compilation/BuildManager.cs:574 Version information: Mono Runtime Version: 2.6.3 (tarball Thu Feb 11 19:48:39 UTC 2010); ASP.NET Version: 2.0.50727.1433 -- Configure bugmail: http://bu
[Mono-bugs] [Bug 555621] NTLM-Authentication on https server failes on certificates
http://bugzilla.novell.com/show_bug.cgi?id=555621 http://bugzilla.novell.com/show_bug.cgi?id=555621#c6 Gonzalo Paniagua Javier changed: What|Removed |Added CC||gonz...@novell.com --- Comment #6 from Gonzalo Paniagua Javier 2010-02-19 22:57:21 UTC --- That problem code means that the Mono SSL stack was not able to create a valid certificate chain, which is normal for MonoTouch (or a regular mono install without root and intermediate certificates). If the problem was caused by the certificate, you would not be able to see the 401 error because an exception would be thrown earlier than that. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 571151] Mono.Debugger.TargetMemoryException at address 0x00000004
http://bugzilla.novell.com/show_bug.cgi?id=571151 http://bugzilla.novell.com/show_bug.cgi?id=571151#c Michael Gorse changed: What|Removed |Added CC||mgo...@novell.com -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 576775] p/invoke function pointers unsupported
http://bugzilla.novell.com/show_bug.cgi?id=576775 http://bugzilla.novell.com/show_bug.cgi?id=576775#c3 --- Comment #3 from Geoff Norton 2010-02-19 22:25:56 UTC --- ITs something we'd like to support in the future, buts its non-trivial due to the fact that we cannot JIT instance delegates. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579997] NSHttpCookie.name not accessible
http://bugzilla.novell.com/show_bug.cgi?id=579997 http://bugzilla.novell.com/show_bug.cgi?id=579997#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED CC||gnor...@novell.com Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 22:19:43 UTC --- Fixed in the next release thanks. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 574873] Programatically selecting a row in a tableview doesn't fire RowSelected
http://bugzilla.novell.com/show_bug.cgi?id=574873 http://bugzilla.novell.com/show_bug.cgi?id=574873#c1 Geoff Norton changed: What|Removed |Added Status|NEW |NEEDINFO CC||gnor...@novell.com Info Provider||manf...@pp-p.net --- Comment #1 from Geoff Norton 2010-02-19 22:17:48 UTC --- Have you confirmed that the delegate method is invoked in ObjC? From my testing it doesnt which makes me think this is invalid. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 574235] Values do not allow null
http://bugzilla.novell.com/show_bug.cgi?id=574235 http://bugzilla.novell.com/show_bug.cgi?id=574235#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED CC||gnor...@novell.com Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 22:15:29 UTC --- All fixed in the next release, thanks. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 573326] WCF call in MonoTouch fails when BasicHttpSecurityMode is set to TransportWithMessageCredential
http://bugzilla.novell.com/show_bug.cgi?id=573326 http://bugzilla.novell.com/show_bug.cgi?id=573326#c5 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED CC||gnor...@novell.com Resolution||FIXED --- Comment #5 from Geoff Norton 2010-02-19 22:12:40 UTC --- This should be in 1.4.100, thanks for all the information. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 570959] UISlider does not fire ValueChanged when the value is set via code
http://bugzilla.novell.com/show_bug.cgi?id=570959 http://bugzilla.novell.com/show_bug.cgi?id=570959#c1 Geoff Norton changed: What|Removed |Added Status|NEW |NEEDINFO CC||gnor...@novell.com Info Provider||manf...@pp-p.net --- Comment #1 from Geoff Norton 2010-02-19 22:11:33 UTC --- Is this still happening? If so can you provide a test case please. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 545629] GetTitle() isn't called during the databinding of the UIPickerView
http://bugzilla.novell.com/show_bug.cgi?id=545629 http://bugzilla.novell.com/show_bug.cgi?id=545629#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED CC||gnor...@novell.com Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 22:10:24 UTC --- This bug was fixed a long long time ago, sorry for not closing it. UIPicker samples can be seen in monotouch-samples git repo. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 576775] p/invoke function pointers unsupported
http://bugzilla.novell.com/show_bug.cgi?id=576775 http://bugzilla.novell.com/show_bug.cgi?id=576775#c2 --- Comment #2 from Zachary Griswold 2010-02-19 22:10:12 UTC --- "I haven't tested passing a C# delegate to a native C function to see if C->C# via a delegate->function pointer works (via Marshal.GetFunctionPointerForDelegate)." That answers the second part to my question, glad to hear it works :) "You can only pinvoke static delegates, and you must decorate the target with a special attribute to teach the AOT compiler how to compile the wrappers" So to answer the first part of my question, there is no support (or plans thereof) to support something like the following: --- public delegate int InstanceAdder(IntPtr obj, IntPtr sel, int x, int y); [DllImport(MonoTouch.Constants.ObjectiveCLibrary, EntryPoint="objc_msgSend")] public static extern InstanceAdder InstanceAdder_objc_msgSend_sel(IntPtr obj, IntPtr sel, IntPtr arg1); --- Thanks! -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 540730] SomeTextView.SizeThatFits always returns 0, 0.
http://bugzilla.novell.com/show_bug.cgi?id=540730 http://bugzilla.novell.com/show_bug.cgi?id=540730#c3 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED CC||gnor...@novell.com Resolution||INVALID --- Comment #3 from Geoff Norton 2010-02-19 22:09:45 UTC --- If you want the same behaviour as objc you need to do someTextView.SizeThatFits (someTextView.Bounds); -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 558075] Add incremental linking to MTOUCH
http://bugzilla.novell.com/show_bug.cgi?id=558075 http://bugzilla.novell.com/show_bug.cgi?id=558075#c1 Miguel de Icaza changed: What|Removed |Added CC||mig...@novell.com --- Comment #1 from Miguel de Icaza 2010-02-19 22:09:09 UTC --- Update: We have started some work on this area, we have found a couple of hot spots. There is no easy fix, but we know what needs to be done to cut some of that time. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581459] Process restarts by thread abort with AspNetForums and mono-2.6.3
http://bugzilla.novell.com/show_bug.cgi?id=581459 http://bugzilla.novell.com/show_bug.cgi?id=581459#c2 Zoltan Varga changed: What|Removed |Added Component|misc|Sys.Web Product|Mono: Runtime |Mono: Class Libraries --- Comment #2 from Zoltan Varga 2010-02-19 22:08:56 UTC --- -> sys.web -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580776] Nested ViewControllers eventually leak and then crash
http://bugzilla.novell.com/show_bug.cgi?id=580776 http://bugzilla.novell.com/show_bug.cgi?id=580776#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 22:08:21 UTC --- This was fixed in 1.4.100 and 1.9.2 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581046] Thread synchronization, assertion failed, race condition, parallel marking GC
http://bugzilla.novell.com/show_bug.cgi?id=581046 http://bugzilla.novell.com/show_bug.cgi?id=581046#c1 Miguel de Icaza changed: What|Removed |Added Status|NEW |NEEDINFO CC||mig...@novell.com Info Provider||jcebe...@hotmail.com Severity|Normal |Major --- Comment #1 from Miguel de Icaza 2010-02-19 22:07:11 UTC --- The trace is not useful enough to find a fix. We need a test case. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 566298] mono/sparc does not build, or it crashes
http://bugzilla.novell.com/show_bug.cgi?id=566298 http://bugzilla.novell.com/show_bug.cgi?id=566298#c6 Zoltan Varga changed: What|Removed |Added Status|NEW |RESOLVED CC||var...@gmail.com Resolution||FIXED --- Comment #6 from Zoltan Varga 2010-02-19 22:05:53 UTC --- This was already fixed in SVN HEAD, now it is fixed on the mono 2.6 branch too. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 557584] build missing assets and behaves differently compared to iphone simulator
http://bugzilla.novell.com/show_bug.cgi?id=557584 http://bugzilla.novell.com/show_bug.cgi?id=557584#c3 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #3 from Geoff Norton 2010-02-19 22:04:32 UTC --- The animation seems fine here on both. Closing as invalid. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 536816] textfield.Ended doesn't fire unless textfield.AllEditingEvents also 'wired up'
http://bugzilla.novell.com/show_bug.cgi?id=536816 http://bugzilla.novell.com/show_bug.cgi?id=536816#c5 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #5 from Geoff Norton 2010-02-19 21:59:48 UTC --- This isn't a bug as per above. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 571309] when creating a new project/solution in monodevelop, there is no option to keep existing workspace open
http://bugzilla.novell.com/show_bug.cgi?id=571309 http://bugzilla.novell.com/show_bug.cgi?id=571309#c1 Miguel de Icaza changed: What|Removed |Added Version|unspecified |2.2 CC||mig...@novell.com Component|Tools |project AssignedTo|mono-bugs@lists.ximian.com |monodevelop-b...@lists.ximi ||an.com QAContact|mono-bugs@lists.ximian.com |monodevelop-b...@lists.ximi ||an.com Product|MonoTouch |MonoDevelop --- Comment #1 from Miguel de Icaza 2010-02-19 21:59:40 UTC --- Moving to MonoDevelop -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 572120] Unrecoverable errors in MonoTouch.Dialog Sample
http://bugzilla.novell.com/show_bug.cgi?id=572120 http://bugzilla.novell.com/show_bug.cgi?id=572120#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 21:58:45 UTC --- This is fixed in 1.4.100, thanks -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 564301] CALayerDelegate no longer works with CALayer as of 1.4.2
http://bugzilla.novell.com/show_bug.cgi?id=564301 http://bugzilla.novell.com/show_bug.cgi?id=564301#c3 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #3 from Geoff Norton 2010-02-19 21:58:08 UTC --- Fixed in the next release, thanks. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 577984] Mono AOT can not handle reference to parameter type return values.
http://bugzilla.novell.com/show_bug.cgi?id=577984 http://bugzilla.novell.com/show_bug.cgi?id=577984#c5 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #5 from Geoff Norton 2010-02-19 21:52:44 UTC --- This was fixed and will be in the next monotouch release. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581054] [Regression] Error when clicking on story in BlogStarterKit on mono-2.6.3
http://bugzilla.novell.com/show_bug.cgi?id=581054 http://bugzilla.novell.com/show_bug.cgi?id=581054#c Marc Christensen changed: What|Removed |Added Summary|[Regression] Error when |[Regression] Error when |clicking on store in|clicking on story in |BlogStarterKit on |BlogStarterKit on |mono-2.6.3 |mono-2.6.3 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 552582] Problems when pausing
http://bugzilla.novell.com/show_bug.cgi?id=552582 http://bugzilla.novell.com/show_bug.cgi?id=552582#c5 --- Comment #5 from Geoff Norton 2010-02-19 21:49:39 UTC --- hutch, Is this still worth keeping open? -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 574837] Debug on iPhone fails during installation stage
http://bugzilla.novell.com/show_bug.cgi?id=574837 http://bugzilla.novell.com/show_bug.cgi?id=574837#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 21:49:14 UTC --- This is a code/signing provisioning problem. The latest Alpha and MD will give you exact information on what needs to be done to resolve this. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581484] Need to run 1.0/1.1 assemblies on 2.0 profile
http://bugzilla.novell.com/show_bug.cgi?id=581484 http://bugzilla.novell.com/show_bug.cgi?id=581484#c1 Rodrigo Kumpera changed: What|Removed |Added Status|NEW |RESOLVED CC||rkump...@novell.com Resolution||FIXED --- Comment #1 from Rodrigo Kumpera 2010-02-19 21:49:25 UTC --- Fixed in r152098. We now default to the 2.0 runtime for 1.0/1.1 assemblies. This might not be the best option as MS will run the 1.1 runtime if it is available. But we no longer can do that with 2.8 as we removed a lot of #if for 1.1. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579899] mtouch error when inheriting from a ViewCOntroller in a library
http://bugzilla.novell.com/show_bug.cgi?id=579899 http://bugzilla.novell.com/show_bug.cgi?id=579899#c1 Geoff Norton changed: What|Removed |Added CC||gnor...@novell.com AssignedTo|mono-bugs@lists.ximian.com |jbev...@novell.com --- Comment #1 from Geoff Norton 2010-02-19 21:48:32 UTC --- -> jb -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 578575] Build fails with error "mtouch failed with no output (1)"
http://bugzilla.novell.com/show_bug.cgi?id=578575 http://bugzilla.novell.com/show_bug.cgi?id=578575#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #1 from Geoff Norton 2010-02-19 21:48:10 UTC --- Your project has the compiler target set to X86, set it back to Any and it works as exepected. Project->Options->Build->Compiler (make sure to change it for all targets). -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579747] [Preserve] attribute is ignored when "Link all assemblies is used".
http://bugzilla.novell.com/show_bug.cgi?id=579747 http://bugzilla.novell.com/show_bug.cgi?id=579747#c2 Miguel de Icaza changed: What|Removed |Added Status|NEW |CLOSED Resolution||FIXED --- Comment #2 from Miguel de Icaza 2010-02-19 21:45:44 UTC --- Closing the bug -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 566298] mono/sparc does not build, or it crashes
http://bugzilla.novell.com/show_bug.cgi?id=566298 http://bugzilla.novell.com/show_bug.cgi?id=566298#c5 --- Comment #5 from Joel Squire 2010-02-19 21:45:43 UTC --- Created an attachment (id=343602) --> (http://bugzilla.novell.com/attachment.cgi?id=343602) Patch to mono-2.6.1 This is due to an alignment issue in mono/metadata/debug-helpers.c. The attached patch fixes it for me. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 548127] btouch.exe --debug option does not work with get/set accessors
http://bugzilla.novell.com/show_bug.cgi?id=548127 http://bugzilla.novell.com/show_bug.cgi?id=548127#c2 Miguel de Icaza changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #2 from Miguel de Icaza 2010-02-19 21:44:56 UTC --- Thanks for the report, will be fixed on the next release. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 578428] Monotouch runtime crashes when using linq group by statement
http://bugzilla.novell.com/show_bug.cgi?id=578428 http://bugzilla.novell.com/show_bug.cgi?id=578428#c4 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||DUPLICATE --- Comment #4 from Geoff Norton 2010-02-19 21:43:55 UTC --- This is a dupe in fact, lets just keep 1 bug open. *** This bug has been marked as a duplicate of bug 553783 *** http://bugzilla.novell.com/show_bug.cgi?id=553783 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 553783] Comparer.Default is not supported (fails with JIT error on device)
http://bugzilla.novell.com/show_bug.cgi?id=553783 http://bugzilla.novell.com/show_bug.cgi?id=553783#c4 Geoff Norton changed: What|Removed |Added CC||eduardos...@gmail.com --- Comment #4 from Geoff Norton 2010-02-19 21:43:55 UTC --- *** Bug 578428 has been marked as a duplicate of this bug. *** http://bugzilla.novell.com/show_bug.cgi?id=578428 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581495] [Regression] Precompiled MVC template fails when clicking "About"
http://bugzilla.novell.com/show_bug.cgi?id=581495 http://bugzilla.novell.com/show_bug.cgi?id=581495#c Marc Christensen changed: What|Removed |Added Status Whiteboard||mono-2.6.4 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581495] New: [Regression] Precompiled MVC template fails when clicking "About"
http://bugzilla.novell.com/show_bug.cgi?id=581495 http://bugzilla.novell.com/show_bug.cgi?id=581495#c0 Summary: [Regression] Precompiled MVC template fails when clicking "About" Classification: Mono Product: Mono: Class Libraries Version: 2.6.x Platform: x86-64 OS/Version: openSUSE 11.2 Status: NEW Severity: Normal Priority: P5 - None Component: Sys.Web AssignedTo: mhabers...@novell.com ReportedBy: mchristen...@novell.com QAContact: mono-bugs@lists.ximian.com Found By: Component Test Blocker: --- Description of Problem: openSUSE 11.2 x86_64 mono-core-2.6.3-30.1.x86_64 apache2-mod_mono-2.6.2-30.1.x86_64 mvc-template-test-0.1-1.1.noarch The automated test failed when testing a precompiled MVC template app. This app is used for all automated testing run and has worked in the past and therefor is a regression. This happens with both Apache and xsp2. To reproduce: 1) install the above environment. 2) http:///mvcTestPre/ 3) Click the "About" link in the upper right hand corner 4) Error: Server Error in '/mvcTestPre' Application The resource cannot be found. Description: HTTP 404. The resource you are looking for (or one of its dependencies) could have been removed, had its name changed, or is temporarily unavailable. Please review the following URL and make sure that it is spelled correctly. Requested URL: /mvcTestPre/Home/About -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 574233] Selected / SetSelected is not handled properly for UITableviewCell
http://bugzilla.novell.com/show_bug.cgi?id=574233 http://bugzilla.novell.com/show_bug.cgi?id=574233#c1 Miguel de Icaza changed: What|Removed |Added Status|NEW |RESOLVED CC||mig...@novell.com Resolution||INVALID --- Comment #1 from Miguel de Icaza 2010-02-19 21:41:21 UTC --- This is the same case as discussed on the other bug (570965): If you want to track changes to the properties, you need to override also the SetEditing mode. Whether SetSelected calls the Selected property, or the Selected property calls SetSelected, or either one of them ends up directly manipulating the internals of an object is an implementation specific issue at the Objective-C level. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 577690] MonoTouch runtime crashed while iphone simulator running
http://bugzilla.novell.com/show_bug.cgi?id=577690 http://bugzilla.novell.com/show_bug.cgi?id=577690#c1 Geoff Norton changed: What|Removed |Added Status|NEW |NEEDINFO CC||gnor...@novell.com Info Provider||la...@mcnutt-consulting.com --- Comment #1 from Geoff Norton 2010-02-19 21:41:15 UTC --- Larry, I can't tell why this is crashing without a test case. Please attach a sample program which shows the issue here. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 570965] UITableViewController.Editing property is not properly used
http://bugzilla.novell.com/show_bug.cgi?id=570965 http://bugzilla.novell.com/show_bug.cgi?id=570965#c1 Miguel de Icaza changed: What|Removed |Added Status|NEW |RESOLVED CC||mig...@novell.com Resolution||INVALID --- Comment #1 from Miguel de Icaza 2010-02-19 21:40:07 UTC --- If you want to track changes to the properties, you need to override also the SetEditing mode. Whether SetEditing calls the Editing property, or the Editing property calls SetEditing, or either one of them ends up directly manipulating the internals of an object is an implementation specific issue at the Objective-C level. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 561650] MonoDevelop Editor Slowdown
http://bugzilla.novell.com/show_bug.cgi?id=561650 http://bugzilla.novell.com/show_bug.cgi?id=561650#c2 Geoff Norton changed: What|Removed |Added Status|NEEDINFO|RESOLVED CC||gnor...@novell.com Info Provider|marceloslace...@gmail.com | Resolution||NORESPONSE --- Comment #2 from Geoff Norton 2010-02-19 21:40:10 UTC --- No Response -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 561650] MonoDevelop Editor Slowdown
http://bugzilla.novell.com/show_bug.cgi?id=561650 http://bugzilla.novell.com/show_bug.cgi?id=561650#c1 Miguel de Icaza changed: What|Removed |Added Status|NEW |NEEDINFO CC||mig...@novell.com Info Provider||marceloslace...@gmail.com --- Comment #1 from Miguel de Icaza 2010-02-19 21:37:08 UTC --- What version of MonoDevelop is this? Could you try to install the latest version, we believe this has been fixed. Please post the information, setting the bug to NEEDINFO for now. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 557921] System.Diagnostics.Process: error creating process handle
http://bugzilla.novell.com/show_bug.cgi?id=557921 http://bugzilla.novell.com/show_bug.cgi?id=557921#c3 --- Comment #3 from Chris Eldredge 2010-02-19 21:32:20 UTC --- Created an attachment (id=343600) --> (http://bugzilla.novell.com/attachment.cgi?id=343600) Work-around diff against /tags/mono-2-4-2-3/mono -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 557921] System.Diagnostics.Process: error creating process handle
http://bugzilla.novell.com/show_bug.cgi?id=557921 http://bugzilla.novell.com/show_bug.cgi?id=557921#c2 Chris Eldredge changed: What|Removed |Added CC||chris.eldre...@gmail.com --- Comment #2 from Chris Eldredge 2010-02-19 21:30:08 UTC --- We ran into this as well. It looks like mono/io-layer/handles.c:481 is the culprit. There are initially 256 shared handles available for allocation and if this number is exceeded no more can be allocated. There's a command that says, "FIXME: grow the arrays." I suspect when this happens the private handle previously allocated in the same function is leaked. Increasing _WAPI_HANDLE_INITIAL_COUNT (wapi-private.h:125) to some arbitrarily high number works around the issue but doesn't really fix it. Additionally, processes.c should set ret = FALSE near line 1037 to tell the calling code that it failed. It doesn't and as a result no Win32Exception gets thrown. In any case, once it fails it seems to get stuck even after some shared handles are deallocated by processes that exit. Backporting the fix from bug 536776 (r141381) does not resolve the issue. - Debian 5.0 (Linux localhost 2.6.26-2-amd64 #1 SMP Thu Nov 5 02:23:12 UTC 2009 x86_64 GNU/Linux) Mono JIT compiler version 2.4.2.3 (/tags/mono-2-4-2-3/mono r146859 Fri Feb 19 15:54:27 EST 2010) Copyright (C) 2002-2008 Novell, Inc and Contributors. www.mono-project.com TLS: __thread GC:Included Boehm (with typed GC) SIGSEGV: altstack Notifications: epoll Architecture: amd64 Disabled: none -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579802] iPhone app crashes after taking several pictures
http://bugzilla.novell.com/show_bug.cgi?id=579802 http://bugzilla.novell.com/show_bug.cgi?id=579802#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 21:22:33 UTC --- Mike, 1.4.100 fixed this, I took 10 pictures on my 3gs. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581484] New: Need to run 1.0/1.1 assemblies on 2.0 profile
http://bugzilla.novell.com/show_bug.cgi?id=581484 http://bugzilla.novell.com/show_bug.cgi?id=581484#c0 Summary: Need to run 1.0/1.1 assemblies on 2.0 profile Classification: Mono Product: Mono: Runtime Version: SVN Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: JIT AssignedTo: lu...@novell.com ReportedBy: jpo...@novell.com QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- Created an attachment (id=343596) --> (http://bugzilla.novell.com/attachment.cgi?id=343596) Test Case If you try to run an assembly compiled using 1.0 mcs/csc on HEAD/2.8, where we no longer ship 1.0 assemblies, you get: The assembly mscorlib.dll was not found or could not be loaded. It should have been installed in the `/opt/mono/lib/mono/1.0/mscorlib.dll' directory. We need to silently run this on the 2.0 profile and use 2.0 assemblies instead of the referenced 1.0 assemblies like .Net does. I don't know if this requires changes to the runtime or if we can do it by shipping policy files for all 1.0 assemblies. [1.0 compiled winforms test app attached] -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 576775] p/invoke function pointers unsupported
http://bugzilla.novell.com/show_bug.cgi?id=576775 http://bugzilla.novell.com/show_bug.cgi?id=576775#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Geoff Norton 2010-02-19 21:18:19 UTC --- You can only pinvoke static delegates, and you must decorate the target with a special attribute to teach the AOT compiler how to compile the wrappers. The following pattern will work: delegate void SomeDelegate (); [MonoPInvokeCallback (typeof (SomeDelegate))] void SomeMethod () { } Some_Pinvoke_Call (new SomeDelegate (SomeMethod)); -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 576262] An app delegate in a dll doesn't behave the same as an app delegate in the same file as the application class
http://bugzilla.novell.com/show_bug.cgi?id=576262 http://bugzilla.novell.com/show_bug.cgi?id=576262#c2 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #2 from Geoff Norton 2010-02-19 21:16:06 UTC --- Dont put the [Model] attribute on the class, [Model] is only meant to direct the runtime that somethng is a protocol. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 566360] Memory leak with simple navigation app
http://bugzilla.novell.com/show_bug.cgi?id=566360 http://bugzilla.novell.com/show_bug.cgi?id=566360#c2 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #2 from Geoff Norton 2010-02-19 21:14:48 UTC --- This leak was fixed in 1.4.99 and 1.9.2 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 555596] properties on structs possibly not being inlined
http://bugzilla.novell.com/show_bug.cgi?id=96 http://bugzilla.novell.com/show_bug.cgi?id=96#c5 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED Resolution||INVALID --- Comment #5 from Geoff Norton 2010-02-19 21:13:59 UTC --- It looks like the reordering is causing a different method invocation pattern, inliner working as expected. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579184] Ping native invocation crashes on iphone
http://bugzilla.novell.com/show_bug.cgi?id=579184 http://bugzilla.novell.com/show_bug.cgi?id=579184#c1 Geoff Norton changed: What|Removed |Added Status|NEW |RESOLVED CC||gnor...@novell.com Resolution||WONTFIX --- Comment #1 from Geoff Norton 2010-02-19 21:13:06 UTC --- To do a ping requires a linux kernel capability (capget) or the ping binary on the device which doesn't exist. I presume you want to know if a host is reachable, you should look at: http://github.com/migueldeicaza/monotouch-samples/blob/80a91b5fbddeb7ab23e66a8d3a9e1e5937f3cd0a/reachability/reachability.cs -> WONTFIX -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581459] Process restarts by thread abort with AspNetForums and mono-2.6.3
http://bugzilla.novell.com/show_bug.cgi?id=581459 http://bugzilla.novell.com/show_bug.cgi?id=581459#c Marc Christensen changed: What|Removed |Added AssignedTo|mono-bugs@lists.ximian.com |mhabers...@novell.com -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581459] Process restarts by thread abort with AspNetForums and mono-2.6.3
http://bugzilla.novell.com/show_bug.cgi?id=581459 http://bugzilla.novell.com/show_bug.cgi?id=581459#c Marc Christensen changed: What|Removed |Added Status Whiteboard||mono-2.6.4 Severity|Critical|Major -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581459] New: Process restarts by thread abort with AspNetForums and mono-2.6.3
http://bugzilla.novell.com/show_bug.cgi?id=581459 http://bugzilla.novell.com/show_bug.cgi?id=581459#c0 Summary: Process restarts by thread abort with AspNetForums and mono-2.6.3 Classification: Mono Product: Mono: Runtime Version: 2.6.x Platform: x86-64 OS/Version: openSUSE 11.2 Status: NEW Severity: Critical Priority: P5 - None Component: misc AssignedTo: mono-bugs@lists.ximian.com ReportedBy: mchristen...@novell.com QAContact: mono-bugs@lists.ximian.com Found By: Component Test Blocker: --- Description of Problem: openSUSE 11.2 x86_64 mono-core-2.6.3-30.1.x86_64 apache2-mod_mono-2.6.2-30.1.x86_64 Mono_ASP.NET_MonoForums-0.7-4.1.noarch pgsql-testdb-1.6-2.1.noarch When running AspNetForums, I get a process restart from a thread abort. Steps to reproduce: 01) start with a clean setup of opensuse 11.2 x86_64 02) install the above RPMs 03) stop apache 04) initialize the test database using the /usr/bin/mono-pg-setup (from pgsql-testdb) 05) start apache 06) connect to /AspNetFurms 07) Log in as admin/admin 08) click "Home" button 09) click "Admin" button 10) click "Create New Users" button 11) Username 'test', password 'test', email m...@mono.com 12) click "Create Account" 13) Click "Admin" 15) Click "Create new Forum" 16) Forum Name 'Mono Forum", Dexscription: "This forum is for the discussion of Mono." 17) Uncheck "Moderated" 18) Click "Create New Forum" button 19) Click "Logout" link 20) On front page enter Username: test Password: test 21) Click "Login" button 22) Click "Mono Forum" link 23) Boom. You should get a stack trace at this point GOTO step 3 to repeat === This may be different depending on your environment. This is my trace output: Server Error in '/AspNetForums' Application Thread was being aborted Description: HTTP 500. Error processing request. Stack Trace: System.Threading.ThreadAbortException: Thread was being aborted at (wrapper managed-to-native) System.IO.MonoIO:GetFileAttributes (string,System.IO.MonoIOError&) at System.IO.MonoIO.ExistsDirectory (System.String path, System.IO.MonoIOError& error) [0x0] in :0 at System.IO.Directory.Exists (System.String path) [0x0] in :0 at System.Web.Caching.CacheDependency..ctor (System.String[] filenames, System.String[] cachekeys, System.Web.Caching.CacheDependency dependency, DateTime start) [0x0] in :0 at System.Web.Caching.CacheDependency..ctor (System.String filename) [0x0] in :0 at AspNetForums.Components.Globals.LoadSkinnedTemplate (System.String virtualPathToTemplate, System.String templateKey, System.Web.UI.Page page) [0x0] in :0 at AspNetForums.Controls.ThreadList.ApplyTemplates () [0x0] in :0 at AspNetForums.Controls.ThreadList.CreateChildControls () [0x0] in :0 at System.Web.UI.Control.EnsureChildControls () [0x0] in :0 at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] in :0 at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] in :0 at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] in :0 at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] in :0 at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] in :0 at System.Web.UI.Control.PreRenderRecursiveInternal () [0x0] in :0 at System.Web.UI.Page.ProcessLoadComplete () [0x0] in :0 at System.Web.UI.Page.InternalProcessRequest () [0x0] in :0 at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context) [0x0] in :0 Version information: Mono Runtime Version: 2.6.3 (tarball Thu Feb 11 19:48:39 UTC 2010); ASP.NET Version: 2.0.50727.1433 == A different stack trace from another run: Server Error in '/AspNetForums' Application Thread was being aborted Description: HTTP 500. Error processing request. Stack Trace: System.Threading.ThreadAbortException: Thread was being aborted at (wrapper managed-to-native) System.Diagnostics.Process:CreateProcess_internal (System.Diagnostics.ProcessStartInfo,intptr,intptr,intptr,System.Diagnostics.Process/ProcInfo&) at System.Diagnostics.Process.Start_noshell (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x0] in :0 at System.Diagnostics.Process.Start_common (System.Diagnostics.ProcessStartInfo startInfo, System.Diagnostics.Process process) [0x0] in :0 at System.Diagnostics.Process.Start () [0x0] in :0 at (wrapper remoting-invoke-with-check) System.Diagnostics.Process:Start () at Mono.CSharp.CSharpCodeCompiler.CompileFromFileBatch (System.CodeDom.Compiler.CompilerParameters options, System.String[] fileNames) [0x0] in :0 Version information: Mono Runtime Version: 2.6.3 (tarball Thu Feb 11 19:48:39 UTC 2010); ASP.NET Version: 2.0.50727.1433 -- Configure bugmail:
[Mono-bugs] [Bug 581412] New: General comment on bounds checking
http://bugzilla.novell.com/show_bug.cgi?id=581412 http://bugzilla.novell.com/show_bug.cgi?id=581412#c0 Summary: General comment on bounds checking Classification: Mono Product: Mono: Class Libraries Version: 2.6.x Platform: All OS/Version: All Status: NEW Severity: Normal Priority: P5 - None Component: System AssignedTo: mono-bugs@lists.ximian.com ReportedBy: xoc...@gmail.com QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US; rv:1.9.2) Gecko/20100218 Ubuntu/10.04 (lucid) Firefox/3.6 Howdy. I was looking at Socket and NetworkStream, but this might be more widespread... Bounds tend to be checked with: if (offset < 0 || offset > bufferLength) { throw ... } if (size < 0 || offset + size > bufferLength) { throw ... } Suppose offset were 1 and size were int.MaxValue. After the first check, the second really ought to be if (size < 0 || size > bufferLength - offset) { throw ... } Reproducible: Always -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580185] assembly version redirection fails to work properly
http://bugzilla.novell.com/show_bug.cgi?id=580185 http://bugzilla.novell.com/show_bug.cgi?id=580185#c5 --- Comment #5 from Marek Habersack 2010-02-19 20:21:46 CET --- I'm working on it, expect a fix soon. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581400] New: reading via stream on non square resource icons causes gdplus to emit [GDI+ status: InvalidParameter]
http://bugzilla.novell.com/show_bug.cgi?id=581400 http://bugzilla.novell.com/show_bug.cgi?id=581400#c0 Summary: reading via stream on non square resource icons causes gdplus to emit [GDI+ status: InvalidParameter] Classification: Mono Product: Mono: Class Libraries Version: SVN Platform: Other OS/Version: Ubuntu Status: NEW Severity: Normal Priority: P5 - None Component: libgdiplus AssignedTo: mono-bugs@lists.ximian.com ReportedBy: tom_hin...@sil.org QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- Created an attachment (id=343575) --> (http://bugzilla.novell.com/attachment.cgi?id=343575) Zip up project, showing bug User-Agent: Mozilla/5.0 (X11; U; Linux x86_64; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.43 Safari/532.5 This isn't a problem for ico files opened via gdiplus only ico streams. IE. doing something like this: Properties.Resources.Grip2003.ToBitmap(); where Grip2003 is a non square ico resources. throws: Unhandled Exception: System.ArgumentException: A null reference or invalid value was found [GDI+ status: InvalidParameter] Reproducible: Always Steps to Reproduce: 1. Compile and run attached project Actual Results: Unhandled Exception: System.ArgumentException: A null reference or invalid value was found [GDI+ status: InvalidParameter] at System.Drawing.GDIPlus.CheckStatus (Status status) [0x0] at System.Drawing.Image.InitFromStream (System.IO.Stream stream) [0x0] at System.Drawing.Image.LoadFromStream (System.IO.Stream stream, Boolean keepAlive) [0x0] at System.Drawing.Icon.GetInternalBitmap () [0x0] at System.Drawing.Icon.ToBitmap () [0x0] at (wrapper remoting-invoke-with-check) System.Drawing.Icon:ToBitmap () at TestIcoResources.MainClass..ctor () [0x6] in /home/hindlet/Projects/TestIcoResources/TestIcoResources/Main.cs:71 at TestIcoResources.MainClass.Main (System.String[] args) [0x0] in /home/hindlet/Projects/TestIcoResources/TestIcoResources/Main.cs:1 Expected Results: no gdiplus error. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581361] Cannot set the RichTextBox.SelectionCharOffset property
http://bugzilla.novell.com/show_bug.cgi?id=581361 http://bugzilla.novell.com/show_bug.cgi?id=581361#c Jeff Tan changed: What|Removed |Added Priority|P5 - None |P1 - Urgent -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581361] Cannot set the RichTextBox.SelectionCharOffset property
http://bugzilla.novell.com/show_bug.cgi?id=581361 http://bugzilla.novell.com/show_bug.cgi?id=581361#c Jeff Tan changed: What|Removed |Added Summary|Cannot the |Cannot set the |RichTextBox.SelectionCharOf |RichTextBox.SelectionCharOf |fset property |fset property -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580185] assembly version redirection fails to work properly
http://bugzilla.novell.com/show_bug.cgi?id=580185 http://bugzilla.novell.com/show_bug.cgi?id=580185#c4 Jordan Earls changed: What|Removed |Added CC||jor...@certss.com --- Comment #4 from Jordan Earls 2010-02-19 18:33:35 UTC --- I would say it seems more like a bug because the original .Net implementation allows assembly redirection from the web.config. Also, this bug is currently preventing my ASP.Net application from working and I'm running Mono 2.6.1 -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581361] New: Cannot the RichTextBox.SelectionCharOffset property
http://bugzilla.novell.com/show_bug.cgi?id=581361 http://bugzilla.novell.com/show_bug.cgi?id=581361#c0 Summary: Cannot the RichTextBox.SelectionCharOffset property Classification: Mono Product: Mono: Class Libraries Version: 2.6.x Platform: i586 OS/Version: openSUSE 11.2 Status: NEW Severity: Major Priority: P5 - None Component: Windows.Forms AssignedTo: mono-bugs@lists.ximian.com ReportedBy: x@hotmail.com QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- Created an attachment (id=343554) --> (http://bugzilla.novell.com/attachment.cgi?id=343554) Zipped solution file showing the reported bug User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.1.8) Gecko/20100202 Firefox/3.5.8 (.NET CLR 3.5.30729) On Mono 2.6.1, it is not possible to set the read/write RichTextBox.SelectionCharOffset property to a non-zero value. This property is used to build features like superscripts and subscripts into RichTextBox. Refer to the attached solution and steps to reproduce this bug. Reproducible: Always Steps to Reproduce: 1. Unzip the attached solution file. Open RTFTextBoxTest.sln with Monodevelop v2.2, compile and debug it on Mono 2.6.1. 2. When Form1 pops up, Enter a character such as "A" into the built-int RichTextBox and the click the "Superscipt" toolstrip button - which is suppose to set the RichTextBox.SelectionCharOffset property to 3 so that the base line for subsequent input is raised. 3. Continue to type another character such as "B" into the RichTextBox. Actual Results: After step 2, a warning message box will pop up showing that the value of RichTextBox.SelectionCharOffset is still zero. The character typed into the RichTextBox is shown at the same base line as the first character typed in. Expected Results: The warning message box should not appear and the second character should be shown as a superscript (displayed at a raised base line). Repeat step 1 - 3 on Window with .NET 2.0, one shall see the expected results. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 555439] TcpClient fails when using 3G (but not always)
http://bugzilla.novell.com/show_bug.cgi?id=555439 http://bugzilla.novell.com/show_bug.cgi?id=555439#c25 --- Comment #25 from Katherine Ye 2010-02-19 17:38:50 UTC --- I know we can construct a Uri using Uri uri = new Uri("http://www.java2s.com";)... In my app I have hostname and port. Can you show me an example of how to construct a uri based on hostname and port. Or construct a uri base on System.Net.IPEndPoint or System.Net.IPAddress etc. Thanks -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579292] Mono.Data.Sqlite (2.0) broken on OSX
http://bugzilla.novell.com/show_bug.cgi?id=579292 http://bugzilla.novell.com/show_bug.cgi?id=579292#c1 --- Comment #1 from Eric Butler 2010-02-19 16:56:11 UTC --- Looks like Mono.Data.Sqlite is just broken on OSX. Here's a quick test app: // compile with: // gmcs testsqlite.cs -r:Mono.Data.Sqlite -r:System.Data // (must use gmcs - The 1.0 Mono.Data.Sqlite DLL doesn't appear to crash) using System; using System.IO; using System.Data; using Mono.Data.Sqlite; public class Test { public static void Main () { try { var connectionString = "URI=file:/tmp/test.db,version=3"; using (var connection = new SqliteConnection(connectionString)) { connection.Open(); var cmd = new SqliteCommand("CREATE TABLE test (id INTEGER)", connection); cmd.ExecuteNonQuery(); cmd = new SqliteCommand("INSERT INTO test (id) VALUES (1)", connection); cmd.ExecuteNonQuery(); cmd = new SqliteCommand("SELECT * FROM test", connection); var adapter = new SqliteDataAdapter(cmd); var ds = new DataSet(); // Crash here // System.EntryPointNotFoundException: sqlite3_column_origin_name adapter.Fill(ds); } } finally { if (File.Exists("/tmp/test.db")) File.Delete("/tmp/test.db"); } } } -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 579292] Mono.Data.Sqlite (2.0) broken on OSX
http://bugzilla.novell.com/show_bug.cgi?id=579292 http://bugzilla.novell.com/show_bug.cgi?id=579292#c Eric Butler changed: What|Removed |Added CC||e...@extremeboredom.net Summary|DataAdapter seems to report |Mono.Data.Sqlite (2.0) |a column does not exist |broken on OSX |when attempting to fill a | |datatable | -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581287] New: notifyIcon Symbol not transparent
http://bugzilla.novell.com/show_bug.cgi?id=581287 http://bugzilla.novell.com/show_bug.cgi?id=581287#c0 Summary: notifyIcon Symbol not transparent Classification: Mono Product: Mono: Class Libraries Version: 2.4.x Platform: Other OS/Version: Linux Status: NEW Severity: Normal Priority: P5 - None Component: Windows.Forms AssignedTo: mono-bugs@lists.ximian.com ReportedBy: christ...@apiviewer.de QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.1; de; rv:1.9.2) Gecko/20100115 Firefox/3.6 The icon displayed in the taskbar notification area is not transparent. This may be related to the FillRectangle call in NotifyIcon.cs:200 in OnPaintInternal as SystemColors.Window is White in most cases. Reproducible: Always Steps to Reproduce: 1. set a .ico file as icon for the notifyicon 2. run the application Actual Results: icon is not transparent (background is white) Expected Results: icon should be transparent -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 570648] System.IO.Packaging ZipPackage does not work due to Uri issue
http://bugzilla.novell.com/show_bug.cgi?id=570648 http://bugzilla.novell.com/show_bug.cgi?id=570648#c1 Alan McGovern changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Alan McGovern 2010-02-19 13:48:47 UTC --- Committed this fix in r152070 in the 2-6 branch and 152072 in trunk. If anyone comes up with a better fix, feel free to reopen the bug. It might be possible to do this better when we have full support for the UriBuilder class. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 581273] New: ToolTip window remains visible after closing the parent ToolStrip
http://bugzilla.novell.com/show_bug.cgi?id=581273 http://bugzilla.novell.com/show_bug.cgi?id=581273#c0 Summary: ToolTip window remains visible after closing the parent ToolStrip Classification: Mono Product: Mono: Class Libraries Version: 2.6.x Platform: x86 OS/Version: Windows XP Status: NEW Severity: Normal Priority: P5 - None Component: Windows.Forms AssignedTo: mono-bugs@lists.ximian.com ReportedBy: andreas.flu...@t-online.de QAContact: mono-bugs@lists.ximian.com Found By: --- Blocker: --- Created an attachment (id=343462) --> (http://bugzilla.novell.com/attachment.cgi?id=343462) testcase unnamed.cs User-Agent: Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729; NET4.0C; .NET4.0E) When setting the ToolTipText of a ToolStripButton and closing the ToolStrip, the Tip window remains visible (zombie). See attached testcase. Reproducible: Always Steps to Reproduce: 1.compile and run attached testcase 2.hoover over the ToolStripButton and wait until Tip appears 3.press the button (while not moving the mouse) Actual Results: ToolTip window remains visible, while the ToolStrip disappears Expected Results: ToolTip window should close if the owning Control vanishes -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 380252] Mono.Data.SQLite crashes on call to SqliteDataAdapter.Fill(DataTable table) with simple SELECT
http://bugzilla.novell.com/show_bug.cgi?id=380252 http://bugzilla.novell.com/show_bug.cgi?id=380252#c2 Alexander Karpenko changed: What|Removed |Added CC||alexand...@remobjects.com --- Comment #2 from Alexander Karpenko 2010-02-19 13:04:00 UTC --- (In reply to comment #1) > It just runs fine. Make sure your sqlite 3 is correct and of released version. > > At least I found sqlite3_column_origin_name() from the official documentation: > http://www.sqlite.org/c3ref/funclist.html I've get the same issue with MonoDevelop on Mac OS X. Used latest ADO.NET 2.0 Provider for SQLite v1.0.65.0 from here: http://sqlite.phxsoftware.com/ In my case I found that when tried to get schema table from reader: SQLiteCommand sel = new SQLiteCommand("SELECT * FROM test;", conn); SQLiteDataReader rdr = sel.ExecuteReader(); DataTable schema = rdr.GetSchemaTable(); Unhandled Exception: System.EntryPointNotFoundException: sqlite3_column_origin_name at (wrapper managed-to-native) System.Data.SQLite.UnsafeNativeMethods:sqlite3_column_origin_name (intptr,int) at System.Data.SQLite.SQLite3.ColumnOriginalName (System.Data.SQLite.SQLiteStatement stmt, Int32 index) [0x0] in :0 at System.Data.SQLite.SQLiteDataReader.GetSchemaTable (Boolean wantUniqueInfo, Boolean wantDefaultValue) [0x0] in :0 at System.Data.SQLite.SQLiteDataReader.GetSchemaTable () [0x0] in :0 at (wrapper remoting-invoke-with-check) System.Data.SQLite.SQLiteDataReader:GetSchemaTable () at TestSqlLite.MainClass.Main (System.String[] args) [0x00024] in /Users/alexander/Projects/sqlitetest/sqlitetest/Main.cs:27 The application was terminated by a signal: SIGHUP -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580631] Microsoft.Build.BuildEngine.ProjectLoadSettings enumeration is missing and Microsoft.Build.BuildEngine.Project.Load missing overloads.
http://bugzilla.novell.com/show_bug.cgi?id=580631 http://bugzilla.novell.com/show_bug.cgi?id=580631#c1 Ankit Jain changed: What|Removed |Added Status|ASSIGNED|RESOLVED Resolution||FIXED --- Comment #1 from Ankit Jain 2010-02-19 12:05:25 UTC --- Fixed in svn r152066. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 572707] Regression in System.Web Test Suite
http://bugzilla.novell.com/show_bug.cgi?id=572707 http://bugzilla.novell.com/show_bug.cgi?id=572707#c1 Marek Habersack changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Marek Habersack 2010-02-19 12:20:37 CET --- Fixed in r152040 (trunk), r152041 (2.6 branch) and r152042 (2.4 branch) -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 572781] OnInit event of SqlDataSource does not fire.
http://bugzilla.novell.com/show_bug.cgi?id=572781 http://bugzilla.novell.com/show_bug.cgi?id=572781#c3 Marek Habersack changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #3 from Marek Habersack 2010-02-19 12:18:12 CET --- Fixed in r152060 (trunk), r152061 (2.6 branch) and r152062 (2.4 branch) -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580887] fails to compile array initialization expression
http://bugzilla.novell.com/show_bug.cgi?id=580887 http://bugzilla.novell.com/show_bug.cgi?id=580887#c2 Marek Safar changed: What|Removed |Added Status|NEEDINFO|RESOLVED Info Provider|rkvi...@novell.com | Resolution||FIXED --- Comment #2 from Marek Safar 2010-02-19 09:45:13 UTC --- Already fixed in trunk. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 580887] fails to compile array initialization expression
http://bugzilla.novell.com/show_bug.cgi?id=580887 http://bugzilla.novell.com/show_bug.cgi?id=580887#c Marek Safar changed: What|Removed |Added Version|SVN |2.6.x -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. You are the assignee for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs
[Mono-bugs] [Bug 576341] Modulus on Decimal values does not work as expected
http://bugzilla.novell.com/show_bug.cgi?id=576341 http://bugzilla.novell.com/show_bug.cgi?id=576341#c1 Paolo Molaro changed: What|Removed |Added Status|NEW |RESOLVED Resolution||FIXED --- Comment #1 from Paolo Molaro 2010-02-19 08:33:16 UTC --- Fixed in svn, thanks for the test case. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email --- You are receiving this mail because: --- You are the QA contact for the bug. ___ mono-bugs maillist - mono-bugs@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-bugs