-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added downcased shift-jis declarations. The old, all upper case decla…
…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
Showing
3 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
require 'rexml/encodings/Shift-JIS' |