Skip to content

Commit

Permalink
Added downcased shift-jis declarations. The old, all upper case decla…
Browse files Browse the repository at this point in the history
…rations

are deprecated, but I need some Shift-JIS encoded documents to test against
before I remove them.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5145 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
ser committed Dec 9, 2003
1 parent e6636fe commit 6c64ca5
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ lib/rexml/encoding.rb
lib/rexml/encodings/EUC-JP.rb
lib/rexml/encodings/ICONV.rb
lib/rexml/encodings/ISO-8859-1.rb
lib/rexml/encodings/Shift-JIS.rb
lib/rexml/encodings/Shift_JIS.rb
lib/rexml/encodings/SHIFT-JIS.rb
lib/rexml/encodings/SHIFT_JIS.rb
lib/rexml/encodings/UNILE.rb
Expand Down
37 changes: 37 additions & 0 deletions lib/rexml/encodings/Shift-JIS.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
begin
require 'iconv'

module REXML
module Encoding
@@__REXML_encoding =<<-EOL
def decode(str)
return Iconv::iconv("utf-8", "shift-jis", str)[0]
end
def encode content
return Iconv::iconv("shift-jis", "utf-8", content)[0]
end
EOL
end
end
rescue LoadError
begin
require 'uconv'

module REXML
module Encoding
@@__REXML_encoding_methods =<<-EOL
def to_shift_jis content
Uconv::u8tosjis(content)
end
def from_shift_jis(str)
Uconv::sjistou8(str)
end
EOL
end
end
rescue LoadError
raise "uconv or iconv is required for Japanese encoding support."
end
end
1 change: 1 addition & 0 deletions lib/rexml/encodings/Shift_JIS.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
require 'rexml/encodings/Shift-JIS'

0 comments on commit 6c64ca5

Please sign in to comment.