mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
47c59bb62b
* Took out the duplicate Shift-JIS entries, for OSes that don't understand case sensitive file names. * Fixed some bugs in the encodings git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
37 lines
727 B
Ruby
37 lines
727 B
Ruby
begin
|
|
require 'iconv'
|
|
|
|
module REXML
|
|
module Encoding
|
|
@@__REXML_encoding_methods =<<-EOL
|
|
def decode(str)
|
|
return Iconv::iconv("utf-8", "shift-jis", str)[0]
|
|
end
|
|
|
|
def encode content
|
|
return Iconv::iconv("shift-jis", "utf-8", content)[0]
|
|
end
|
|
EOL
|
|
end
|
|
end
|
|
rescue LoadError
|
|
begin
|
|
require 'uconv'
|
|
|
|
module REXML
|
|
module Encoding
|
|
@@__REXML_encoding_methods =<<-EOL
|
|
def to_shift_jis content
|
|
Uconv::u8tosjis(content)
|
|
end
|
|
|
|
def from_shift_jis(str)
|
|
Uconv::sjistou8(str)
|
|
end
|
|
EOL
|
|
end
|
|
end
|
|
rescue LoadError
|
|
raise "uconv or iconv is required for Japanese encoding support."
|
|
end
|
|
end
|