[Mono-bugs] [Bug 47720][Wis] Changed - DateTime.Parse (RFC1123) does not handle timezone
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Thu, 27 May 2004 14:19:15 -0400 (EDT)
Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.
Changed by atsushi@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=47720
--- shadow/47720 2004-01-09 23:54:31.000000000 -0500
+++ shadow/47720.tmp.32244 2004-05-27 14:19:15.000000000 -0400
@@ -1,13 +1,13 @@
Bug#: 47720
-Product: Mono/Class Libraries
+Product: Mono: Class Libraries
Version: unspecified
OS: unknown
OS Details:
-Status: NEW
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Wishlist
Component: CORLIB
AssignedTo: mono-bugs@ximian.com
ReportedBy: piersh@friskit.com
QAContact: mono-bugs@ximian.com
@@ -57,6 +57,19 @@
CultureInfo.InvariantCulture);
Doesn't seem to work, but if I understand correctly it should. Should
I report that as it's own bug?
+
+------- Additional Comments From atsushi@ximian.com 2004-05-27 14:19 -------
+Fixed in cvs. Well, let me explain the details.
+
+For the first example, we interpreted RFC1123 string as
+locale-dependent string (at the point immediate before I fixed). So I
+uncommented as Gonzalo wanted to do it.
+
+Second, there was a bug that some string value were incorrectly
+recognized as RFC1123 since the parser ignored the extraneous suffix part.
+
+For Mikael's case, InvariantCulture does not accept the format for
+latter one. Now mono also rejects it, while accept the former one.