summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/ISO-8859-1.rb
diff options
context:
space:
mode:
authorser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-19 03:51:53 +0000
committerser <ser@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-05-19 03:51:53 +0000
commited512acb2fd71016e320414a16b3262ce2f9c366 (patch)
tree2e3a631d82871b691dc1a7c0633033fa04ff8d2f /lib/rexml/encodings/ISO-8859-1.rb
parentd4d497dd86962d333337b70392623ccde5a053c2 (diff)
Cross-ported the REXML changes from HEAD to the 1.8 branch.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@8486 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml/encodings/ISO-8859-1.rb')
-rw-r--r--lib/rexml/encodings/ISO-8859-1.rb24
1 files changed, 3 insertions, 21 deletions
diff --git a/lib/rexml/encodings/ISO-8859-1.rb b/lib/rexml/encodings/ISO-8859-1.rb
index f4e4527c2d..2873d13bf0 100644
--- a/lib/rexml/encodings/ISO-8859-1.rb
+++ b/lib/rexml/encodings/ISO-8859-1.rb
@@ -1,25 +1,7 @@
+require 'rexml/encodings/US-ASCII'
+
module REXML
module Encoding
- @@__REXML_encoding_methods = %q~
- # Convert from UTF-8
- def encode content
- array_utf8 = content.unpack('U*')
- array_enc = []
- array_utf8.each do |num|
- if num <= 0xFF
- array_enc << num
- else
- # Numeric entity (&#nnnn;); shard by Stefan Scholl
- array_enc.concat "&\##{num};".unpack('C*')
- end
- end
- array_enc.pack('C*')
- end
-
- # Convert to UTF-8
- def decode(str)
- str.unpack('C*').pack('U*')
- end
- ~
+ register("ISO-8859-1", &encoding_method("US-ASCII"))
end
end