From 47bd6a4f37cb14701458233479caaaf3a25397b3 Mon Sep 17 00:00:00 2001 From: ser Date: Sat, 9 Apr 2005 17:03:32 +0000 Subject: Applied Nobu's patch to the XML document encoding structure in REXML. It passes all of REXML's native tests as well as a couple of others, and should fix potential threading issues. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8293 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- lib/rexml/encodings/UNILE.rb | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'lib/rexml/encodings/UNILE.rb') diff --git a/lib/rexml/encodings/UNILE.rb b/lib/rexml/encodings/UNILE.rb index 95141093b5..0560a08361 100644 --- a/lib/rexml/encodings/UNILE.rb +++ b/lib/rexml/encodings/UNILE.rb @@ -1,7 +1,6 @@ module REXML module Encoding - @@__REXML_encoding_methods =<<-EOL - def encode content + def encode_unile content array_utf8 = content.unpack("U*") array_enc = [] array_utf8.each do |num| @@ -16,7 +15,7 @@ module REXML array_enc.pack('C*') end - def decode(str) + def decode_unile(str) array_enc=str.unpack('C*') array_utf8 = [] 2.step(array_enc.size-1, 2){|i| @@ -24,6 +23,12 @@ module REXML } array_utf8.pack('U*') end - EOL + + register(UNILE) do |obj| + class << obj + alias decode decode_unile + alias encode encode_unile + end + end end end -- cgit v1.2.3