1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/lib/rexml/encodings/SHIFT-JIS.rb
ser 96439f2a4a Merged in the changes from BSD bug report. shift-jis is now shift_jis, in
accordance with IANA


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7547 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2004-12-13 11:50:13 +00:00

37 lines
714 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 encode(content)
Uconv::u8tosjis(content)
end
def decode(str)
Uconv::sjistou8(str)
end
EOL
end
end
rescue LoadError
raise "uconv or iconv is required for Japanese encoding support."
end
end