[Mono-bugs] [Bug 367670] New: Type.Equals() returns true when comparing vector and non-vector array

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367670


   Summary: Type.Equals() returns true when comparing vector and
non-vector array
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: CORLIB
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


The following program prints "True" on Mono and "False" on .NET:

using System;

public class Program
{
  static void Main()
  {
   
Console.WriteLine(typeof(string[]).Equals(Type.GetType("System.String[*]")));
  }
}


-- 
Configure bugmail: https://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 367663] ILGenerator.EmitCalli() doesn't handle null return type.

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367663

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367663#c1


Jb Evain <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 CC||[EMAIL 
PROTECTED]
 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Jb Evain <[EMAIL PROTECTED]>  2008-03-06 02:33:30 MST ---
Fixed in SVN. Thanks!


-- 
Configure bugmail: https://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 367354] Type.GetTypeCode() is slow

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367354

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367354#c3





--- Comment #3 from Juraj Skripsky <[EMAIL PROTECTED]>  2008-03-06 04:52:10 MST 
---
Hey Paolo, thanks for the optimization!

I should have been clearer in what point I was trying to make. I didn't mean to
compare the performance of MS.NET with Mono, merely the performance of IsInt
vs. IsInt2/IsInt3 above.

The results on MS.NET confirmed my expectations that Type.GetTypeCode + Switch
should be much faster than (t == typeof(...) || t == typeof(...) || ...). This
isn't the case on Mono and I thought it should/could be. But I have only an
extremely rough idea of what is going behind the scenes in Type.GetTypeCode...


-- 
Configure bugmail: https://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 367354] Type.GetTypeCode() is slow

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367354

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367354#c4





--- Comment #4 from Paolo Molaro <[EMAIL PROTECTED]>  2008-03-06 05:02:51 MST 
---
No, the .net results only confirmed that on the MS implementation typeof() is
likely very slow. You still didn't qualify your slow/fast with numbers so any
other interpretation of the numbers is meaningless.


-- 
Configure bugmail: https://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 362749] [Regression] PropertyGrid: date-time editor isn' t initialised with the current date value

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=362749

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=362749#c6





--- Comment #6 from Andy Hume <[EMAIL PROTECTED]>  2008-03-06 06:30:09 MST ---
Due to bug 363648--"MonthCalendar: no selection displayed if SelectionStart
includes _time_" that property value will not appear selected.  That bug is
fixed only in trunk.

If the property value has the time part removed (click and edit in the field),
the selection will be apparent.  Or see the two sub-items of property
"FooSelectionRangeInit", that's a good test.  (BTW the default values for
"FooSelectionRangeInitEmpty" will (correctly) cause today's to be selected).


-- 
Configure bugmail: https://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 362749] [Regression] PropertyGrid: date-time editor isn' t initialised with the current date value

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=362749

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=362749#c7


Andy Hume <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|REOPENED|RESOLVED
 Resolution||FIXED




--- Comment #7 from Andy Hume <[EMAIL PROTECTED]>  2008-03-06 06:31:00 MST ---
And hence re-mark fixed.


-- 
Configure bugmail: https://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 367670] Type.Equals() returns true when comparing vector and non-vector array

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367670

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367670#c1


Zoltan Varga <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 CC||[EMAIL 
PROTECTED]
 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Zoltan Varga <[EMAIL PROTECTED]>  2008-03-06 06:12:48 MST 
---
Fixed in SVN.


-- 
Configure bugmail: https://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 367791] New: ML crashes FF

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367791


   Summary: ML crashes FF
   Product: Moonlight
   Version: unspecified
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: engine
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


1. Go to
http://www.deez.info/sengelha/2008/01/09/silverlight-10-mandelbrot-set-generator/
2. Wait until the picture is rendered
3. Do left-click inside the picture.

FF crashes in 5-10 seconds


-- 
Configure bugmail: https://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 367668] ModuleBuilder.ResolveMethod() doesn't work

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367668

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367668#c1


Zoltan Varga <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 CC||[EMAIL 
PROTECTED]
 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Zoltan Varga <[EMAIL PROTECTED]>  2008-03-06 08:20:53 MST 
---
Fixed in SVN.


-- 
Configure bugmail: https://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 367653] [Regression] PolygonTriangulation throws up an error message on exit

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367653

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367653#c2


Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 AssignedTo|mono-bugs@lists.ximian.com  |[EMAIL 
PROTECTED]




--- Comment #2 from Jonathan Pobst <[EMAIL PROTECTED]>  2008-03-06 09:20:03 MST 
---
This was caused by ivanz's change r97094.  Assigning to him.


-- 
Configure bugmail: https://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 367583] [Regression] CSharpTetris crashes on close on mono-1.9p4

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367583

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367583#c6


Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 AssignedTo|mono-bugs@lists.ximian.com  |[EMAIL 
PROTECTED]




--- Comment #6 from Jonathan Pobst <[EMAIL PROTECTED]>  2008-03-06 09:20:29 MST 
---
This was caused by ivanz's change r97094.  Assigning to him.


-- 
Configure bugmail: https://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 362749] [Regression] PropertyGrid: date-time editor isn' t initialised with the current date value

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=362749

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=362749#c8


Thomas Wiest <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|RESOLVED|VERIFIED




--- Comment #8 from Thomas Wiest <[EMAIL PROTECTED]>  2008-03-06 09:56:39 MST 
---
Ah, ok. Sorry, I didn't understand that part. I'm marking verified as I saw it
display the right month in Mono 1.9p4.


-- 
Configure bugmail: https://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 366436] RichTextBox displays hidden text

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=366436



Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

  Status Whiteboard||RichTextBox




-- 
Configure bugmail: https://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 366438] ListBox: MultiExtend SelctionMode - SelectedIndex always -1

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=366438



Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

  Status Whiteboard||ListBox




-- 
Configure bugmail: https://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 367490] Menu: a wide Menu is drawn off screen edge

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367490



Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

  Status Whiteboard||Menu




-- 
Configure bugmail: https://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 367492] Menu: access key should use first letter if not explicit

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367492



Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

  Status Whiteboard||Menu




-- 
Configure bugmail: https://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 367499] MenuStrip: focus sticks on menubar on hitting Alt

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367499



Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

  Status Whiteboard||MenuStrip




-- 
Configure bugmail: https://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 367791] ML crashes FF

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367791

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367791#c1





--- Comment #1 from Sebastien Pouliot <[EMAIL PROTECTED]>  2008-03-06 11:21:02 
MST ---
it works for me (even if very slowly) with FF 2.0.0.12
can you supply the stacktrace of your crash ?


-- 
Configure bugmail: https://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 367499] MenuStrip: focus sticks on menubar on hitting Alt

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367499



Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 AssignedTo|mono-bugs@lists.ximian.com  |[EMAIL 
PROTECTED]
 Status|NEW |ASSIGNED




-- 
Configure bugmail: https://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 367499] MenuStrip: focus sticks on menubar on hitting Alt

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367499

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367499#c1


Jonathan Pobst <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #1 from Jonathan Pobst <[EMAIL PROTECTED]>  2008-03-06 11:21:54 MST 
---
Fixed in r97598.  Thanks for the report!

2008-03-06  Jonathan Pobst  <[EMAIL PROTECTED]>

Control.cs: Don't call ProcessMenuKey on WM_SYSKEYUP if there
was a mnemonic pressed as well as Alt.  Also, if nothing handles a
mnemonic, let the ToolStripManager have it even if it doesn't
have a matching mnemonic.
[Fixes bug #367499]


-- 
Configure bugmail: https://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 341850] NPlot locks up when running Multi Plot Demo

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=341850

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=341850#c8





--- Comment #8 from Marc Christensen <[EMAIL PROTECTED]>  2008-03-06 11:37:29 
MST ---
Not yet fixed in 1.9p4


-- 
Configure bugmail: https://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 367914] New: use of ldflda breaks remoting support

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367914


   Summary: use of ldflda breaks remoting support
   Product: Mono: Compilers
   Version: unspecified
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: C#
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Consider the following program:
using System;

public class Test: MarshalByRefObject
{
public DateTime Stamp = new DateTime (1968, 1, 2);

static void Main ()
{
AppDomain d = AppDomain.CreateDomain ("foo");
Test t = (Test) d.CreateInstanceAndUnwrap (typeof
(Test).Assembly.FullName, typeof (Test).FullName);
t.Stamp = new DateTime (1968, 1, 3);
Console.WriteLine (t.Stamp);
}
}

mcs emits a ldflda to call the DateTime constructor for t.Stamp.
It should use a local variable instead and use a ldfld instruction to store the
field.
The sample compiled with mcs will throw a InvalidOperationException at runtime.


-- 
Configure bugmail: https://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 367583] [Regression] CSharpTetris crashes on close on mono-1.9p4

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367583

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367583#c7


Ivan Zlatev <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #7 from Ivan Zlatev <[EMAIL PROTECTED]>  2008-03-06 13:11:50 MST ---
Fixed in r97611 and backported in r97612


-- 
Configure bugmail: https://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 367653] [Regression] PolygonTriangulation throws up an error message on exit

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367653

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367653#c3


Ivan Zlatev <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #3 from Ivan Zlatev <[EMAIL PROTECTED]>  2008-03-06 13:12:25 MST ---
Fixed in r97611 and backported in r97612


-- 
Configure bugmail: https://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 366570] PropertyGrid: ImageFormatConverter needs to recognise well-known values by Guid

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=366570

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=366570#c1





--- Comment #1 from Ivan Zlatev <[EMAIL PROTECTED]>  2008-03-06 13:13:54 MST ---
Andy, 

There are no unit tests attached to bug 366567


-- 
Configure bugmail: https://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 366570] PropertyGrid: ImageFormatConverter needs to recognise well-known values by Guid

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=366570

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=366570#c2


Ivan Zlatev <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Ivan Zlatev <[EMAIL PROTECTED]>  2008-03-06 13:40:38 MST ---
Fixed in r97619


-- 
Configure bugmail: https://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 367492] Menu: access key should use first letter if not explicit

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=367492

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=367492#c1





--- Comment #1 from Jonathan Pobst <[EMAIL PROTECTED]>  2008-03-06 15:16:26 MST 
---
Dangit, I wrote the code for that, and then only enabled it for the MenuStrip,
not the drop down menus.  Fixed this for MenuStrip only menus in r97631.  (It
might be better to file these separately in the future as different people do
each menu type.)  Thanks for the report!

2008-03-06  Jonathan Pobst  <[EMAIL PROTECTED]>

* ToolStrip.cs: Enable implicit mnemonics for drop down
menu strips.  [Fixes part of bug #367692]


-- 
Configure bugmail: https://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 363884] SVGPad crashes if you click on the New Document icon twice

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=363884

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=363884#c3





--- Comment #3 from Jonathan Pobst <[EMAIL PROTECTED]>  2008-03-06 15:46:53 MST 
---
Backported in r97635.

2008-02-22  Jonathan Pobst  <[EMAIL PROTECTED]>
[Backport to 1.9]
* TreeView.cs: Make selected_node and highlighted_node internal.
* TreeNodeCollection.cs: Reset selected_node and highlighted_node
to null when Nodes.Clear is called.
[Fixes bug #363884]


-- 
Configure bugmail: https://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 365662] ShutdownMode.AfterAllFormsClose (i.e. shutdown " when last form closes") does not work

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=365662



Rolf Bjarne Kvinge <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




-- 
Configure bugmail: https://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 365653] WindowsFormsApplicationBase. OnCreateMainForm should not throw exception

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=365653



Rolf Bjarne Kvinge <[EMAIL PROTECTED]> changed:

   What|Removed |Added

 Status|NEW |ASSIGNED




-- 
Configure bugmail: https://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 368032] New: [Test Case 496505] [MoMA] Update MoMA Definitions

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368032


   Summary: [Test Case 496505] [MoMA] Update MoMA Definitions
   Product: Mono: Class Libraries
   Version: 1.2.0
  Platform: i386
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Windows.Forms
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


STATUS: FAILED
BUILD: Mono 1.9.0 Preview 4
ENVIRONMENT: Mac OSX 10.5
NOTES: 03/06/08 16:10:09: Status changed from IDLE to FAILED by
[EMAIL PROTECTED] for build 'Mono 1.9.0 Preview 4' and environment 'Mac OSX
10.5

STEPS TO REPRODUCE: 

 - Delete all MoMA def files in
/Library/Frameworks/Mono.framework/Versions/1.9/lib/MoMA/Definitions and
~/.config/moma/Definitions
 - Run MoMA from the command line
 - Click 'Check for newer versions', update def files
 - Select a .exe to analyze and click Next

Expected results:
 - MoMA should analyze the assembly and return with the status report

Actual results:
 - MoMA crashes
 - If I restart MoMA and select the same assembly, the analyzation works fine.

How often does this happen? Always.


-- 
Configure bugmail: https://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 368032] [Test Case 496505] [MoMA] Update MoMA Definitions

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368032

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=368032#c1





--- Comment #1 from Rusty Howell <[EMAIL PROTECTED]>  2008-03-06 16:23:49 MST 
---
Stack trace from the terminal:

Thu Mar  6 16:16:07 x64-macos-2.mono.lab.novell.com mono[1001] :
CGContextDrawImage: invalid context
Thu Mar  6 16:16:07 x64-macos-2.mono.lab.novell.com mono[1001] :
CGContextSynchronize: invalid context
Thu Mar  6 16:16:07 x64-macos-2.mono.lab.novell.com mono[1001] :
CGContextSynchronize: invalid context
Stacktrace:

  at (wrapper managed-to-native) System.Drawing.Carbon.QDEndCGContext
(intptr,intptr&) <0x4>
  at (wrapper managed-to-native) System.Drawing.Carbon.QDEndCGContext
(intptr,intptr&) <0x>
  at System.Drawing.Carbon.ReleaseContext (intptr,intptr) [0x0003d] in
/private/tmp/monobuild/build/BUILD/mono-1.9/mcs/class/System.Drawing/System.Drawing/carbonFunctions.cs:133
  at System.Drawing.Graphics.Dispose () [0x00040] in
/private/tmp/monobuild/build/BUILD/mono-1.9/mcs/class/System.Drawing/System.Drawing/Graphics.cs:280
  at (wrapper remoting-invoke-with-check) System.Drawing.Graphics.Dispose ()
<0x>
  at System.Drawing.Graphics.Finalize () [0x0] in
/private/tmp/monobuild/build/BUILD/mono-1.9/mcs/class/System.Drawing/System.Drawing/Graphics.cs:79
  at (wrapper runtime-invoke) System.Drawing.Image.runtime_invoke_void
(object,intptr,intptr,intptr) <0x>
Abort trap
x64-macos-2:~ mono$ 


-- 
Configure bugmail: https://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 368041] New: Right click on chess piece locks piece to mouse

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368041


   Summary: Right click on chess piece locks piece to mouse
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: i386
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Windows.Forms
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Steps to reproduce:
 - Run ChessBoard/ChessDemo.exe  (from wf-apps)
 - Make first move with a white piece.
 - Left and right click on next piece (both buttons at same time)

Expected results:
 - Piece should move around and drop when mouse button is released.

Actual results:
 - Piece moves with mouse when mouse button is not pressed, and no amount of
clicking will get the piece to drop.

How often does this happen? Always.


-- 
Configure bugmail: https://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 363404] Date header should not be added by HttpResponse

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=363404

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=363404#c7





--- Comment #7 from Marc Christensen <[EMAIL PROTECTED]>  2008-03-06 17:06:11 
MST ---
Who is going to do this backport?


-- 
Configure bugmail: https://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 368043] New: Cannot close window on Control Inspector. App crashes

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368043


   Summary: Cannot close window on Control Inspector. App crashes
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: i386
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Windows.Forms
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Steps to reproduce:
 - Run ControlInspector.exe (part of wf-apps)
 - Click File -> Windows.Forms
 - Select System.Windows.Forms.Button and click OK
 - Button window should appear.
 - Close the button window by click the red x in the top left of the window

Expected results:
 - window should close

Actual results:
 - Window does not close. If I click in the title bar (to move the window) the
app crashes.

How often does this happen? Always.


Stack trace:

Thu Mar  6 17:15:56 x64-macos-2.mono.lab.novell.com mono[1176] : doClip:
empty path.
Thu Mar  6 17:15:56 x64-macos-2.mono.lab.novell.com mono[1176] : doClip:
empty path.
Thu Mar  6 17:15:56 x64-macos-2.mono.lab.novell.com mono[1176] : doClip:
empty path.

Unhandled Exception: System.NullReferenceException: Object reference not set to
an instance of an object
  at System.Windows.Forms.CarbonInternal.WindowHandler.ProcessEvent (IntPtr
callref, IntPtr eventref, IntPtr handle, UInt32 kind, System.Windows.Forms.MSG&
msg) [0x0] 
  at System.Windows.Forms.CarbonInternal.EventHandler.EventCallback (IntPtr
callref, IntPtr eventref, IntPtr handle) [0x0] 
  at (wrapper native-to-managed)
System.Windows.Forms.CarbonInternal.EventHandler:EventCallback
(intptr,intptr,intptr)
  at (wrapper managed-to-native)
System.Windows.Forms.XplatUICarbon:SendEventToEventTarget (intptr,intptr)
  at System.Windows.Forms.XplatUICarbon.GetMessage (System.Object queue_id,
System.Windows.Forms.MSG& msg, IntPtr hWnd, Int32 wFilterMin, Int32 wFilterMax)
[0x0] 
  at System.Windows.Forms.XplatUI.GetMessage (System.Object queue_id,
System.Windows.Forms.MSG& msg, IntPtr hWnd, Int32 wFilterMin, Int32 wFilterMax)
[0x0] 
  at System.Windows.Forms.Application.RunLoop (Boolean Modal,
System.Windows.Forms.ApplicationContext context) [0x0] 
  at System.Windows.Forms.Application.Run
(System.Windows.Forms.ApplicationContext context) [0x0] 
  at System.Windows.Forms.Application.Run (System.Windows.Forms.Form mainForm)
[0x0] 
  at ControlInspector.Startup.Main () [0x0] 
x64-macos-2:ControlInspector mono$


-- 
Configure bugmail: https://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 368046] New: GATetris high scores list redrawing

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368046


   Summary: GATetris high scores list redrawing
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: i386
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Windows.Forms
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Steps to reproduce:
 - Run GATetris (from wf-apps)
 - Go to Help -> Hall of Fame...

Expected results:
 - Window with high scores pops up. Easy to read.

Actual results:
 - The window that pops up looks like it's constantly redrawing the form. Make
the scores unreadable

How often does this happen? Always


-- 
Configure bugmail: https://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 368051] New: MonoCalendar: Cannot delete appointment

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368051


   Summary: MonoCalendar: Cannot delete appointment
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: i386
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Windows.Forms
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Steps to reproduce:
 - Run MonoCalendar (from wf-apps)
 - Create an appointment
 - click on the appointment and hit Delete or Backspace

Expected results:
 - the appointment should be deleted from the calendar

Actual results:
 - The appointment is still in the calendar


How often does this happen? Always


-- 
Configure bugmail: https://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 368053] New: NPlot demo - graphs don't redraw correctly

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368053


   Summary: NPlot demo - graphs don't redraw correctly
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: i386
OS/Version: Mac OS X 10.5
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: Windows.Forms
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Created an attachment (id=199336)
 --> (https://bugzilla.novell.com/attachment.cgi?id=199336)
screenshot of NPlot demo

Steps to reproduce:
 - Run NPlot demo.
 - Click on the 2D demo
 - Cycle through the graphs by clicking Next

Expected results:
 - Each graph should appear cleanly when Next is clicked

Actual results:
 - The old graph isn't drawn over properly for the new graph.

How often does this happen?  Always. I think it depends on the size of the
graphs.


-- 
Configure bugmail: https://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 368069] New: No swap file in VMware image

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368069


   Summary: No swap file in VMware image
   Product: Mono: Tools
   Version: 1.9.0
  Platform: i586
   URL: http://www.go-mono.com/archive/1.9/
OS/Version: openSUSE 10.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: VMware Image
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Component Test


The swap file is supposed to be /swap and it's supposed to be 512m. There is no
file there.


-- 
Configure bugmail: https://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 368070] New: Some repos have auto-refresh turned on by default

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368070


   Summary: Some repos have auto-refresh turned on by default
   Product: Mono: Tools
   Version: 1.9.0
  Platform: i586
OS/Version: openSUSE 10.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: VMware Image
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Component Test


Description of Problem:
Some repos have auto-refresh turned on by default.


Steps to reproduce the problem:
1. Start VM
2. Open terminal
3. Type zypper lr
4. notice that some repos have auto-refresh turned on


Actual Results:
linux:~ # zypper lr
# | Enabled | Refresh | Type   | Alias   | Name
--+-+-++-+---
1 | Yes | No  | rpm-md | Mono:Community  | Mono Community
(openSUSE_10.3)
2 | Yes | Yes | yast2  | 10.3-oss| 10.3-oss
3 | Yes | No  | rpm-md | Banshee | Banshee Music Player
(openSUSE_10.3)
4 | Yes | No  | rpm-md | mono-stable | Mono Stable
5 | No  | No  | rpm-md | mono-preview| Mono Preview
6 | Yes | Yes | yast2  | 10.3-non-oss| 10.3-non-oss
7 | Yes | Yes | yast2  | 10.3-debug  | 10.3-debug
8 | Yes | No  | rpm-md | GNOME:Community | Open repository for GNOME
related packages (openSUSE_10.3)
linux:~ #


Expected Results:
All repos should have auto-refresh turned off


How often does this happen? 
Every time.


-- 
Configure bugmail: https://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 368070] Some repos have auto-refresh turned on by default

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368070



Thomas Wiest <[EMAIL PROTECTED]> changed:

   What|Removed |Added

URL|
|http://www.go-mono.com/archive/1.9/




-- 
Configure bugmail: https://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 368076] New: The bottom of AnotherTetrisClone is cutoff

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368076


   Summary: The bottom of AnotherTetrisClone is cutoff
   Product: Mono: Tools
   Version: 1.9.0
  Platform: i586
   URL: http://www.go-mono.com/archive/1.9/
OS/Version: openSUSE 10.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: VMware Image
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Component Test


Description of Problem:
Not sure if this is a Mono problem, a 10.3 problem, or a VMware image problem.
Basically the bottom of AnotherTetrisClone is cut off.

I tried resetting the resolution to a larger size, setting the dpi from between
70 and 120 and all combinations, an nothing worked.

The weird thing is that AnotherTetrisClone looks and works perfectly in the
1.2.6 VMware image.


Steps to reproduce the problem:
1. Start VM
2. Run AnotherTetrisClone
3. Notice the bottom is cut off (pieces will disappear below the bottom)


Actual Results:
It's cut off

Expected Results:
It shouldn't be cut off

How often does this happen? 
every time.


-- 
Configure bugmail: https://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 368077] New: ControlInspector dies when trying to examine a winforms button

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368077


   Summary: ControlInspector dies when trying to examine a winforms
button
   Product: Mono: Tools
   Version: 1.9.0
  Platform: i586
   URL: http://www.go-mono.com/archive/1.9/
OS/Version: openSUSE 10.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: VMware Image
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Component Test


Description of Problem:
ControlInspector dies when trying to examine a winforms button. I'm not sure if
this is a Mono bug or a VMware image bug, but ControlInspector works fine in
the 1.2.6 VMware image.


Steps to reproduce the problem:
1. Start VM
2. Run ControlInspector
3. Click "File / WinForms"
4. Click on System.Windows.Forms.Button
5. notice the crash


Actual Results:
crash

Expected Results:
it should work

How often does this happen? 
every time

Additional Information:


-- 
Configure bugmail: https://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 368077] ControlInspector dies when trying to examine a winforms button

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368077

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=368077#c1





--- Comment #1 from Thomas Wiest <[EMAIL PROTECTED]>  2008-03-06 23:39:46 MST 
---
Created an attachment (id=199353)
 --> (https://bugzilla.novell.com/attachment.cgi?id=199353)
This is the bug report that the bug reporting tool saved out.


-- 
Configure bugmail: https://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 368078] New: The firewall is enabled by default

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368078


   Summary: The firewall is enabled by default
   Product: Mono: Tools
   Version: 1.9.0
  Platform: i586
OS/Version: openSUSE 10.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: VMware Image
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Component Test


Description of Problem:
The firewall is enabled by default, which means you can't ssh / samba to the
box.


Steps to reproduce the problem:
1. Start VM
2. Try to ssh to the vm
3. notice you can't


Actual Results:
Firewall is enabled

Expected Results:
Firewall is disabled

How often does this happen? 
every time


-- 
Configure bugmail: https://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 368078] The firewall is enabled by default

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368078



Thomas Wiest <[EMAIL PROTECTED]> changed:

   What|Removed |Added

URL|
|http://www.go-mono.com/archive/1.9/




-- 
Configure bugmail: https://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 368076] The bottom of AnotherTetrisClone is cutoff

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368076

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=368076#c1





--- Comment #1 from Thomas Wiest <[EMAIL PROTECTED]>  2008-03-06 23:47:55 MST 
---
CSharpTetris is cutoff at the bottom too. It wasn't cutoff in the 1.2.6 VMware
image.


-- 
Configure bugmail: https://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 368080] New: GraphLibraryDemo segfaults in the vmware image

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368080


   Summary: GraphLibraryDemo segfaults in the vmware image
   Product: Mono: Tools
   Version: 1.9.0
  Platform: i586
   URL: http://www.go-mono.com/archive/1.9/
OS/Version: openSUSE 10.3
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: VMware Image
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Component Test


Description of Problem:
GraphLibraryDemo segfaults in the vmware image. I'm not sure what's causing
this, but it doesn't happen in the 1.2.6 vmware image.

Steps to reproduce the problem:
1. Start VM
2. run GraphLibraryDemo in a terminal
3. notice the segfault


Actual Results:
segfault


Expected Results:
It should run


How often does this happen? 
Every time


-- 
Configure bugmail: https://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 368076] The bottom of AnotherTetrisClone is cutoff

2008-03-06 Thread bugzilla_noreply
https://bugzilla.novell.com/show_bug.cgi?id=368076

User [EMAIL PROTECTED] added comment
https://bugzilla.novell.com/show_bug.cgi?id=368076#c2





--- Comment #2 from Thomas Wiest <[EMAIL PROTECTED]>  2008-03-06 23:54:56 MST 
---
ICanSpy is cutoff on the bottom.


-- 
Configure bugmail: https://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