Imported Upstream version 4.6.0.125

Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2016-08-03 10:59:49 +00:00
parent a569aebcfd
commit e79aa3c0ed
17047 changed files with 3137615 additions and 392334 deletions

View File

@@ -1,64 +0,0 @@
2010-02-11 Zoltan Varga <vargaz@gmail.com>
* CP1250.cs CP1252.cs: Move the '--charCount' line to the beginning of the loop,
since it can be skipped in case of HandleFallback. Add brances around the
call to HandleFallback so the 'continue' call is only done if it is called.
Should fix #573682.
2008-07-11 Atsushi Enomoto <atsushi@ximian.com>
* CP1252.cs : continue after fallback was missing.
Fixed bug #408381, patch by Jonathan Gagnon.
2008-05-16 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : added Test/texts/*.txt to EXTRA_DISTFILES.
2006-11-20 Atsushi Enomoto <atsushi@ximian.com>
* windows-437-2000.ucm: copied from ICU: http://dev.icu-project.org/cgi-bin/viewcvs.cgi/charset/data/ucm/windows-437-2000.ucm?revision=1.2
* windows-10079-2000.ucm: copied from ICU: http://dev.icu-project.org/cgi-bin/viewcvs.cgi/charset/data/ucm/windows-10079-2000.ucm?revision=1.2
* CP437.cs : now it is autogenerated from windows-437-2000.ucm
Fixed bug #79951
* CP10079.cs : now it is autogenerated from windows-10079-2000.ucm.
2006-11-20 Atsushi Enomoto <atsushi@ximian.com>
* CP28605.cs, CP10000.cs:
cosmetic indent fix (now they are correctly auto-generated).
2006-01-17 Atsushi Enomoto <atsushi@ximian.com>
* CP1252.cs CP28592.cs CP437.cs CP861.cs CP10079.cs CP863.cs
CP865.cs CP28593.cs CP1253.cs CP28597.cs CP10000.cs CP850.cs
CP860.cs CP28605.cs CP1250.cs (All) :
Marked as [Serializable].
2006-01-12 Atsushi Enomoto <atsushi@ximian.com>
* CP10079.cs : oops, silly debugging code was remaining.
2005-12-02 Atsushi Enomoto <atsushi@ximian.com>
* Makefile : now it has tests.
* CP10079.cs : fixed some encoder/decoder mapping bugs.
2005-12-01 Atsushi Enomoto <atsushi@ximian.com>
* CP437.cs : forgot to comment out GetBytes(string).
2005-11-30 Atsushi Enomoto <atsushi@ximian.com>
* CP1252.cs CP28592.cs CP437.cs CP861.cs CP10079.cs CP863.cs CP865.cs
CP28593.cs CP1253.cs CP28597.cs CP850.cs CP860.cs CP28605.cs
CP1250.cs : made the same changes as CP10000.cs had in the previous
commit.
2005-11-30 Atsushi Enomoto <atsushi@ximian.com>
(initial changelog entry here.)
* Makefile : now it uses unsafe pointers.
* CP10000.cs : Added 2.0 fallback support and modified ToBytes() from
array to pointers, and commented ToBytes(string) out (uses virtual
implementation in ByteEncoding).

View File

@@ -3,7 +3,8 @@ SUBDIRS =
include ../../../build/rules.make
LIBRARY = I18N.West.dll
LOCAL_MCS_FLAGS = /r:$(corlib) /r:I18N.dll /unsafe
LIB_REFS = I18N
LOCAL_MCS_FLAGS = /unsafe
#NO_TEST = yes
EXTRA_DISTFILES = $(wildcard *.ucm) \

View File

@@ -1,12 +0,0 @@
2008-07-11 Atsushi Enomoto <atsushi@ximian.com>
* I18N.West.Test.cs : added test for bug #408381, by Jonathan Gagnon.
2006-11-20 Atsushi Enomoto <atsushi@ximian.com>
* I18N.West.Test.cs : added test for bug #79951.
2005-12-02 Atsushi Enomoto <atsushi@ximian.com>
* I18N.West.Test.cs : NUnit test for I18N.West encodings.