[Mono-bugs] [Bug 30009][Nor] Changed - Should use Encoding.Default instead of UnixEncoding
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
13 Dec 2002 09:35:27 -0000
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 gonzalo@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=30009
--- shadow/30009 Fri Dec 13 04:33:28 2002
+++ shadow/30009.tmp.7071 Fri Dec 13 04:35:27 2002
@@ -1,22 +1,21 @@
Bug#: 30009
Product: Mono/Class Libraries
Version: unspecified
OS: other
OS Details:
-Status: REOPENED
-Resolution:
+Status: RESOLVED
+Resolution: FIXED
Severity: Unknown
Priority: Normal
Component: CORLIB
AssignedTo: miguel@ximian.com
ReportedBy: miguel@ximian.com
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
URL:
-Cc:
Summary: Should use Encoding.Default instead of UnixEncoding
BugsThisDependsOn: 30008[FIXED]
Encoding.Default should be used by the Console code instead of our hacked
UnixEncoding. The downside is that we have to return the correct code page
for it.
@@ -25,6 +24,13 @@
This should be fixed now as Default properly gets the encoding from
g_get_encoding () and loads the appropiate class (and UnixEncoding ==
Default).
May be in the case of an exception thrown when loading the encoding,
we should default to UTF8Unmarked instead of UTF8
+
+------- Additional Comments From gonzalo@ximian.com 2002-12-13 04:35 -------
+Fixed in CVS.
+
+juli reported to get strange characters in her console, which had
+ASCII encoding. I changed Encoding to get an ascii encoder and now
+console works properly for her.