mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2eac4d0fb4
conversion to iconv. [ruby-core:06520] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
35 lines
595 B
Ruby
35 lines
595 B
Ruby
module REXML
|
|
module Encoding
|
|
begin
|
|
require 'uconv'
|
|
|
|
def decode_eucjp(str)
|
|
Uconv::euctou8(str)
|
|
end
|
|
|
|
def encode_eucjp content
|
|
Uconv::u8toeuc(content)
|
|
end
|
|
rescue LoadError
|
|
require 'nkf'
|
|
|
|
EUCTOU8 = '-Ewm0'
|
|
U8TOEUC = '-Wem0'
|
|
|
|
def decode_eucjp(str)
|
|
NKF.nkf(EUCTOU8, str)
|
|
end
|
|
|
|
def encode_eucjp content
|
|
NKF.nkf(U8TOEUC, content)
|
|
end
|
|
end
|
|
|
|
register("EUC-JP") do |obj|
|
|
class << obj
|
|
alias decode decode_eucjp
|
|
alias encode encode_eucjp
|
|
end
|
|
end
|
|
end
|
|
end
|