зеркало из https://github.com/github/ruby.git
lib/unicode_normalize/normalize.rb: added US_ASCII
as trivially supported encoding (is always normalized, and may appear mixed in with UTF-8 or other Unicode encodings). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@48134 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
6e9ff5a892
Коммит
4fda619836
|
@ -1,3 +1,10 @@
|
|||
Sat Oct 25 20:09:09 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* lib/unicode_normalize/normalize.rb: added US_ASCII
|
||||
as trivially supported encoding (is always normalized,
|
||||
and may appear mixed in with UTF-8 or other Unicode
|
||||
encodings).
|
||||
|
||||
Sat Oct 25 20:01:01 2014 Martin Duerst <duerst@it.aoyama.ac.jp>
|
||||
|
||||
* test/test-unicode_normalize.rb: added
|
||||
|
|
|
@ -138,6 +138,8 @@ module UnicodeNormalize
|
|||
else
|
||||
raise ArgumentError, "Invalid normalization form #{form}."
|
||||
end
|
||||
elsif encoding == Encoding::US_ASCII
|
||||
string
|
||||
elsif UNICODE_ENCODINGS.include? encoding
|
||||
normalize(string.encode(Encoding::UTF_8), form).encode(encoding)
|
||||
else
|
||||
|
@ -166,6 +168,8 @@ module UnicodeNormalize
|
|||
else
|
||||
raise ArgumentError, "Invalid normalization form #{form}."
|
||||
end
|
||||
elsif encoding == Encoding::US_ASCII
|
||||
true
|
||||
elsif UNICODE_ENCODINGS.include? encoding
|
||||
normalized? string.encode(Encoding::UTF_8), form
|
||||
else
|
||||
|
|
Загрузка…
Ссылка в новой задаче