Current Path : /proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/opt/alt/ruby18/lib64/ruby/1.8/rexml/encodings/ |
Current File : //proc/thread-self/root/proc/thread-self/root/proc/thread-self/root/proc/self/root/proc/self/root/opt/alt/ruby18/lib64/ruby/1.8/rexml/encodings/ICONV.rb |
require "iconv" raise LoadError unless defined? Iconv module REXML module Encoding def decode_iconv(str) Iconv.conv(UTF_8, @encoding, str) end def encode_iconv(content) Iconv.conv(@encoding, UTF_8, content) end register("ICONV") do |obj| Iconv.conv(UTF_8, obj.encoding, nil) class << obj alias decode decode_iconv alias encode encode_iconv end end end end