diff options
| author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-19 15:31:17 +0000 |
|---|---|---|
| committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-12-19 15:31:17 +0000 |
| commit | 82643e0a69ec3dff4c8235f9975a266099ecdc69 (patch) | |
| tree | c3e8a20529d7eca13bdf6ea5b88b36dfea74e7d8 /lib/rexml | |
| parent | 70a828ead559d7fcc2e33943f9d72559afcce2f5 (diff) | |
| download | ruby-82643e0a69ec3dff4c8235f9975a266099ecdc69.tar.gz ruby-82643e0a69ec3dff4c8235f9975a266099ecdc69.tar.xz ruby-82643e0a69ec3dff4c8235f9975a266099ecdc69.zip | |
* lib/rexml/encodings/SHIFT-JIS.rb: backported from CVS HEAD.
* lib/rexml/encodings/SHIFT_JIS.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@7602 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rexml')
| -rw-r--r-- | lib/rexml/encodings/SHIFT-JIS.rb | 8 | ||||
| -rw-r--r-- | lib/rexml/encodings/SHIFT_JIS.rb | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/rexml/encodings/SHIFT-JIS.rb b/lib/rexml/encodings/SHIFT-JIS.rb index e7dc6339a..f17c92786 100644 --- a/lib/rexml/encodings/SHIFT-JIS.rb +++ b/lib/rexml/encodings/SHIFT-JIS.rb @@ -5,11 +5,11 @@ begin module Encoding @@__REXML_encoding_methods =<<-EOL def decode(str) - return Iconv::iconv("utf-8", "shift-jis", str)[0] + return Iconv::iconv("utf-8", "shift_jis", str)[0] end def encode content - return Iconv::iconv("shift-jis", "utf-8", content)[0] + return Iconv::iconv("shift_jis", "utf-8", content)[0] end EOL end @@ -21,11 +21,11 @@ rescue LoadError module REXML module Encoding @@__REXML_encoding_methods =<<-EOL - def to_shift_jis content + def encode(content) Uconv::u8tosjis(content) end - def from_shift_jis(str) + def decode(str) Uconv::sjistou8(str) end EOL diff --git a/lib/rexml/encodings/SHIFT_JIS.rb b/lib/rexml/encodings/SHIFT_JIS.rb index 6e8f75937..2fc0b2830 100644 --- a/lib/rexml/encodings/SHIFT_JIS.rb +++ b/lib/rexml/encodings/SHIFT_JIS.rb @@ -1 +1 @@ -require 'rexml/encodings/Shift-JIS' +load 'rexml/encodings/SHIFT-JIS.rb' |
