[Mono-bugs] [Bug 372892] New: EqualityComparerT.Default causes NRE for null argument

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


   Summary: EqualityComparerT.Default causes NRE for null argument
   Product: Mono: Class Libraries
   Version: SVN
  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: ---


It's easy to fix this bug but I'm not sure which way to fix it is the best, so
I'm rather posting the bug here:

using System;
using System.Collections.Generic;

public class Test
{
public static void Main ()
{
Console.WriteLine (EqualityComparerobject.Default.GetHashCode
(null));
Console.WriteLine (EqualityComparerstring.Default.GetHashCode
(null));
}
}

Actual results:

$ mono ./test.exe

Unhandled Exception: System.NullReferenceException: Object reference not set to
an instance of an object
  at
System.Collections.Generic.EqualityComparer`1+DefaultComparer[System.Object].GetHashCode
(System.Object obj) [0x0]
  at Test.Main () [0x0]

Expected results:
no NRE (.NET outputs 0 and 0 for each).


-- 
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 372892] EqualityComparerT.Default causes NRE for null argument

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

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





--- Comment #1 from Atsushi Enomoto [EMAIL PROTECTED]  2008-03-21 05:24:26 
MST ---
This seems to be the source of regression in olive
System.Workflow.ComponentModel.


-- 
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 372893] New: PasswordDeriveBytes.GetBytes() not producing expected output

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


   Summary: PasswordDeriveBytes.GetBytes() not producing expected
output
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: x86
OS/Version: Other
Status: NEW
  Severity: Normal
  Priority: P5 - None
 Component: System
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Created an attachment (id=203347)
 -- (https://bugzilla.novell.com/attachment.cgi?id=203347)
Source code that reproduces problem

Description of Problem:

I'm developing an encryption app and noticed some interesting behavior by my
Mono clients yesterday.  PasswordDeriveBytes.GetBytes() is not producing the
same output that .NET 2.0 does.

Mono output:

key 12
key 252
key 122
key 125
key 78
key 182
key 178
key 145
key 136
key 24
key 114
key 225
key 94
key 103
key 178
key 85
iv 141
iv 200
iv 84
iv 194
iv 14
iv 96
iv 171
iv 186
iv 197
iv 27
iv 203
iv 82
iv 171
iv 228
iv 50
iv 180

NET 2.0 Output:
key 12
key 252
key 122
key 125
key 78
key 182
key 178
key 145
key 136
key 24
key 114
key 225
key 94
key 103
key 178
key 85
iv 78
iv 182
iv 178
iv 145
iv 14
iv 96
iv 171
iv 186
iv 197
iv 27
iv 203
iv 82
iv 171
iv 228
iv 50
iv 180

Notice that the first four bytes in the second round are different.


-- 
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 372897] New: [REGRESSION] Session not available in Page_Init

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


   Summary: [REGRESSION] Session not available in Page_Init
   Product: Mono: Class Libraries
   Version: SVN
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Major
  Priority: P5 - None
 Component: Sys.Web
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Commit r98108* to HttpApplication.cs caused this regression. Revert that commit
and the test case does not throw anymore.

*) see
http://anonsvn.mono-project.com/viewcvs/trunk/mcs/class/System.Web/System.Web/HttpApplication.cs?r1=97908r2=98108rev=98108diff_format=h

Test case:
==

index.aspx
--
script runat=server
void Page_Init(object o, EventArgs e) {
Session[test] = true;
}
/script

- save above code as index.aspx
- start xsp2
- request http://localhost:8080/index.aspx

Actual result:
System.Web.HttpException: Session state can only be used when
enableSessionState is set to true, either in a configuration file or in the
Page directive.
  at System.Web.UI.Page.get_Session () [0x0] 
  at ASP.index_aspx.Page_Init (System.Object o, System.EventArgs e) [0x0] 
  at System.Web.UI.Control.OnInit (System.EventArgs e) [0x0] 
  at System.Web.UI.Page.OnInit (System.EventArgs e) [0x0] 
  at System.Web.UI.Control.InitRecursive (System.Web.UI.Control
namingContainer) [0x0] 
  at System.Web.UI.Page.InternalProcessRequest () [0x0] 
  at System.Web.UI.Page.ProcessRequest (System.Web.HttpContext context)
[0x0] 

Expected result:
No exception, just an empty page.


-- 
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 361847] External console not working

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

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


Ariel Chinn [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL 
PROTECTED]




--- Comment #2 from Ariel Chinn [EMAIL PROTECTED]  2008-03-21 06:05:58 MST ---
But I have xterm installed...
http://img183.imageshack.us/img183/92/picturery4.png


-- 
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 372897] [REGRESSION] Session not available in Page_Init

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

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





--- Comment #1 from Juraj Skripsky [EMAIL PROTECTED]  2008-03-21 06:09:01 MST 
---
This code in SessionStateModule.OnAcquireRequestState() seems to be part of the
problem:

if (!(context.Handler is IRequiresSessionState)) {
   Trace.WriteLine (Handler ( + context.Handler + ) does not require session
state);
   return;
}

After commit r98108, context.Handler is null when this method is called.


-- 
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 372780] sgen.exe generates invalid XmlSerializerContract

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

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


Atsushi Enomoto [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #5 from Atsushi Enomoto [EMAIL PROTECTED]  2008-03-21 07:04:04 
MST ---
Thanks for the repro cases. Now the fix is in svn (in System.Xml.dll, r89729).


-- 
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 372893] PasswordDeriveBytes.GetBytes() not producing expected output

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

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


Sebastien Pouliot [EMAIL PROTECTED] changed:

   What|Removed |Added

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




--- Comment #1 from Sebastien Pouliot [EMAIL PROTECTED]  2008-03-21 08:24:10 
MST ---
Hello Drew,

You're in BIG trouble if you use this code (at least on MS platform). 

First MS extended PKCS#5 v1.5 outside it's secure limit (you should never ask
more bytes than what the hash function can provide - the standard ask
implementation to abort in such case). MS doesn't (abort) and Mono does not
either (for compatibility).

Second MS extension process is *buggy*. How ? have a look at what MS
outputs... (and note the values I aligned).

NET 2.0 Output:
key 12
key 252
key 122
key 125
   key 78
   key 182
   key 178
   key 145
key 136
key 24
key 114
key 225
key 94
key 103
key 178
key 85
   iv 78
   iv 182
   iv 178
   iv 145
iv 14
iv 96
iv 171
iv 186
iv 197
iv 27
iv 203
iv 82
iv 171
iv 228
iv 50
iv 180

Since your IV is generally public data you're leaking 4 bytes (32 bits) of your
key (in this case only 96 bits remains safe from this bug).

Mono does not duplicate this bug (so I'm closing this bug as WONTFIX).

You can find more details about this on
https://bugzilla.novell.com/show_bug.cgi?id=316364

Since you seem to be using .NET 2.0 I *strongly* recommend that you use the
Rfc2898DeriveBytes class, which implements PKCS#5 v2 and doesn't, at my
knowledge, have a similar issue.


-- 
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 372932] New: Connection to Microsoft SQL Server Failed

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


   Summary: Connection to Microsoft SQL Server Failed
   Product: Mono: Class Libraries
   Version: 1.9.0
  Platform: x86
OS/Version: Windows Vista
Status: NEW
  Severity: Blocker
  Priority: P5 - None
 Component: Sys.Data.SqlClient
AssignedTo: mono-bugs@lists.ximian.com
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: Third Party Developer/Partner


Description of Problem:
Connection to Microsoft SQL Server 2005 SP2 failed spontaneously.

Steps to reproduce the problem:
Run code:
static void Main()
{
const string connStr =
@User
ID=Tornado;Pwd=***;Net=dbmssocn;Server=127.0.0.1\DEV;Integrated
Security=no;Initial Catalog=LocalDB;
const string cmdText = SELECT COUNT(*) FROM units;
for (var i = 0; i  3; i++)
using (var con = new SqlConnection(connStr))
using (var cmd = new SqlCommand(cmdText, con))
{
con.Open();
Console.WriteLine({0} : {1}, i, cmd.ExecuteScalar());
}
}

Actual Results:
0 : 0

Unhandled Exception: System.Data.SqlClient.SqlException: SQL Server does not
exist or access denied.
  at System.Data.SqlClient.SqlConnection.Open () [0x0]
  at MSSQLConTest.Program.Main () [0x0]

Expected Results:
0 : 0
1 : 0
2 : 0


-- 
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 372780] sgen.exe generates invalid XmlSerializerContract

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

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





--- Comment #6 from D Bera [EMAIL PROTECTED]  2008-03-21 08:43:18 MST ---
(In reply to comment #5 from Atsushi Enomoto)
 Thanks for the repro cases. Now the fix is in svn (in System.Xml.dll, r89729).

Nice.
Umm... I dont know how late it is for 1.9 but if possible, it would be really
helpful if this fix is available in 1.9.
Thanks a lot.


-- 
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 372780] sgen.exe generates invalid XmlSerializerContract

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

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





--- Comment #7 from Atsushi Enomoto [EMAIL PROTECTED]  2008-03-21 08:55:11 
MST ---
1.9 is already released.


-- 
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 372780] sgen.exe generates invalid XmlSerializerContract

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

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





--- Comment #8 from D Bera [EMAIL PROTECTED]  2008-03-21 09:04:32 MST ---
You would obviously know better, but I thought the last one was 1.9-p5
http://anonsvn.mono-project.com/viewcvs/tags/


-- 
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 324895] DataGridView: Column separators are ugly

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



Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 AssignedTo|[EMAIL PROTECTED]  |[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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 324895] DataGridView: Column separators are ugly

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

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


Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #1 from Jonathan Pobst [EMAIL PROTECTED]  2008-03-21 09:15:44 MST 
---
All DGV painting has been redone to match MS, this has been fixed as a result.


-- 
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 343964] DataGridView: part of cell contents visible in edit mode

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



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 343962] DataGridView: down arrow key ignored

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



Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 Blocks|343964  |




-- 
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 343964] DataGridView: part of cell contents visible in edit mode

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



Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 Depends on|343962  |




-- 
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 343965] DataGridView: allows edit cells without setter

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



Bug 343965 depends on bug 343964, which changed state.

Bug 343964 Summary: DataGridView: part of cell contents visible in edit mode
https://bugzilla.novell.com/show_bug.cgi?id=343964

   What|Old Value   |New Value

 Status|ASSIGNED|RESOLVED
 Resolution||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.
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 343964] DataGridView: part of cell contents visible in edit mode

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

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


Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #1 from Jonathan Pobst [EMAIL PROTECTED]  2008-03-21 09:29:50 MST 
---
Fixed in r98736.  Thanks for the report!

2008-03-21  Jonathan Pobst  [EMAIL PROTECTED]

* DataGridViewCell.cs, DataGridViewTextBoxCell.cs: Don't paint
the content if we are in edit mode.  [Fixes bug #343964]


-- 
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 372892] EqualityComparerT.Default causes NRE for null argument

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

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


Sebastien Pouliot [EMAIL PROTECTED] changed:

   What|Removed |Added

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




--- Comment #2 from Sebastien Pouliot [EMAIL PROTECTED]  2008-03-21 09:34:46 
MST ---
Fixed in SVN r98739.
Unit tests in r98738.

But it's not a regression, just missing checks. So either
System.Workflow.ComponentModel changed it's behavior (or has new tests) or
something else changed.


-- 
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 360788] Notepad.exe crashes randomly

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #8 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 10:00:52 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.
___
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-21 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#c2


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 10:05:07 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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 370944] Winform design troubles

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

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





--- Comment #2 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 10:10:12 MST 
---
the crash should be 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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 361352] Several bugs in ApplicationSettingsBase

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

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





--- Comment #2 from Alan McGovern [EMAIL PROTECTED]  2008-03-21 10:12:29 MST 
---
I'm bumping this because i need this committed in order to get the app ported
to mono. If this patch is wrong or unsuitable, let me know what needs to be
changed and i'll change it.


-- 
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] NPlot demo - graphs don't redraw correctly

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 10:54:42 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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 368043] Cannot close window on Control Inspector. App crashes

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 11:10:28 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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 359203] Font related exception when trying to run Windows Forms application on Mono-OSX

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Major   |Normal




--- Comment #3 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 11:12:31 MST 
---
not major


-- 
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 370944] Winform design troubles

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

   Severity|Major   |Normal




--- Comment #3 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 11:13:40 MST 
---
No more crash - Normal bug.


-- 
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 368051] MonoCalendar: Cannot delete appointment

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #1 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 11:52:31 MST 
---
I have fixed the mapping of delete - delete on my IBM usb keyboard 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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 368041] Right click on chess piece locks piece to mouse

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

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





--- Comment #1 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 11:57:06 MST 
---
I need to go buy a new mouse to test this.  I have the apple mightymouse which
cannot left+right click at the same 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 372616] Setting Focus to outer container does not focus inner child

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

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


Andreia Gaita [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #5 from Andreia Gaita [EMAIL PROTECTED]  2008-03-21 12:04:27 MST 
---
Fixed on r98750


-- 
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 360356] MoMA graphical issues

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

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





--- Comment #1 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 12:04: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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 360356] MoMA graphical issues

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||FIXED




--- Comment #2 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 12:12:26 MST 
---
resolve as fixed too


-- 
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 370944] Winform design troubles

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

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


Geoff Norton [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|NEW |NEEDINFO
  Info Provider||[EMAIL 
PROTECTED]




--- Comment #4 from Geoff Norton [EMAIL PROTECTED]  2008-03-21 12:14:01 MST 
---
Please attach a test with source code.  I will not run an untrusted binary blob
from the internet.


-- 
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 371859] request to Web services does not work (in 2.0 profile?)

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

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


Atsushi Enomoto [EMAIL PROTECTED] changed:

   What|Removed |Added

 Attachment #202646|0   |1
is obsolete||




--- Comment #2 from Atsushi Enomoto [EMAIL PROTECTED]  2008-03-21 13:06:44 
MST ---
Created an attachment (id=203440)
 -- (https://bugzilla.novell.com/attachment.cgi?id=203440)
more proposed fix

Now I found more preferred way to fix this issue.

PageParser.GetCompiledPageInstance() currently ignores inputFile argument when
it uses BuildManager (it does in 2.0) but it should not ignore this argument.
Since It is not limited to SoapDocumentationHandler, this fix should apply to
PageParser. And as a result, existing fake path hack could be removed. (and and
IMO it should; I didn't include such a change in this patch though.)

I find another possible bug in SoapDocumentationHandler.ctor(). It does not
actually premise custom WSDL help page because it always premise path as
equivalent to machine.config (so even if a web app contains wsdlHelpGenerator
href=blabla.aspx /, it will result in no such file error). In such case
I'd pass null inputFile so that PageParser can map virtual path (to
wsdlHelpGenerator) to physical path.

FYI: inputFile can be null in .NET. Try the following code in simple web app
with Default.aspx:

  PageParser.GetCompiledPageInstance(Default.aspx, null, this.Context);


-- 
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 364430] ODBC: Command fails to use a UNICODE string parameter

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



Gert Driesen [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL 
PROTECTED]
 AssignedTo|[EMAIL PROTECTED]|[EMAIL 
PROTECTED]




-- 
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 372823] ODBC: Unicode value cannot be inserted into table

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



Gert Driesen [EMAIL PROTECTED] changed:

   What|Removed |Added

 AssignedTo|[EMAIL PROTECTED]|[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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 372845] MenuItem not removed from menu when Disposed

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



Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 AssignedTo|mono-bugs@lists.ximian.com  |[EMAIL 
PROTECTED]
 Status|NEW |ASSIGNED
  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.
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 372845] MenuItem not removed from menu when Disposed

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

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


Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #1 from Jonathan Pobst [EMAIL PROTECTED]  2008-03-21 14:05:50 MST 
---
Fixed in r98768.  Thanks for the report and the test case!

2008-03-21  Jonathan Pobst  [EMAIL PROTECTED]

* MenuItem.cs: Remove menu item from parent when disposed.
[Fixes bug #372845]

2008-03-21  Jonathan Pobst  [EMAIL PROTECTED]

* MenuItemTest.cs: Add test for #372845.


-- 
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 324990] OdbcDataReader omits multibyte characters in VARCHAR that span 255 byte boundary

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



Gert Driesen [EMAIL PROTECTED] changed:

   What|Removed |Added

 CC||[EMAIL 
PROTECTED]
 AssignedTo|[EMAIL PROTECTED]|[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.
___
mono-bugs maillist  -  mono-bugs@lists.ximian.com
http://lists.ximian.com/mailman/listinfo/mono-bugs


[Mono-bugs] [Bug 364430] ODBC: Command fails to use a UNICODE string parameter

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

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


Gert Driesen [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #7 from Gert Driesen [EMAIL PROTECTED]  2008-03-21 15:54:00 MST 
---
Fixed in SVN (revision 98771).


-- 
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 372823] ODBC: Unicode value cannot be inserted into table

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

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


Gert Driesen [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #2 from Gert Driesen [EMAIL PROTECTED]  2008-03-21 15:57:00 MST 
---
Fixed in SVN (revision 98771).


-- 
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 324990] OdbcDataReader omits multibyte characters in VARCHAR that span 255 byte boundary

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

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


Gert Driesen [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #2 from Gert Driesen [EMAIL PROTECTED]  2008-03-21 16:00:48 MST 
---
This should be fixed in SVN (revision 98771).

Please reopen this bug report if you can still reproduce it.


-- 
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 373113] New: Builds boehm-gc incorrectly if top-level configure gets CPPFLAGS passed

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


   Summary: Builds boehm-gc incorrectly if top-level configure gets
CPPFLAGS passed
   Product: Mono: Runtime
   Version: 1.2.6
  Platform: Other
OS/Version: Other
Status: NEW
  Severity: Major
  Priority: P5 - None
 Component: packaging
AssignedTo: [EMAIL PROTECTED]
ReportedBy: [EMAIL PROTECTED]
 QAContact: mono-bugs@lists.ximian.com
  Found By: ---


Hi,
mono 1.2.6 builds boehm-gc incorrectly if one passes CPPFLAGS to the top-level
configure. This results in a build failure later as boehm-gc doesn't export all
symbols that are needed (at least when using --with-threads=__thread...
GC_thread_tls is missing then).

This is caused by the following:
the top-level configure exports CPPFLAGS so they're get passed to
libgc/configure. This works fine in general unless the top-level configure gets
CPPFLAGS passed.
In that case autoconf will call libgc/configure with those CPPFLAGS instead of
the ones that were exported by the top-level configure.

I.e.

CPPFLAGS=foo ./configure = configure exports CPPFLAGS=foo -DUSE_COMPILER_TLS
etc = configure calls libgc/configure CPPFLAGS=foo which then overwrites
what was exported.


-- 
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 371989] ComboBox: Alt+Down should open drop-down

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



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 371989] ComboBox: Alt+Down should open drop-down

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

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


Jonathan Pobst [EMAIL PROTECTED] changed:

   What|Removed |Added

 Status|ASSIGNED|RESOLVED
 Resolution||FIXED




--- Comment #1 from Jonathan Pobst [EMAIL PROTECTED]  2008-03-21 22:14:35 MST 
---
Fixed in r98784.  Thanks for the report!

2008-03-22  Jonathan Pobst  [EMAIL PROTECTED]

* ComboBox.cs: Alt-Down should drop down the list, Esc should
retract it.  [Fixes bug #371989]


-- 
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