-
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.
* Took out the duplicate Shift-JIS entries, for OSes that don't understand case sensitive file names. * Fixed some bugs in the encodings git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5179 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
- Loading branch information
ser
committed
Dec 12, 2003
1 parent
ff2a47e
commit 47c59bb
Showing
8 changed files
with
44 additions
and
48 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 |
---|---|---|
@@ -1 +1,37 @@ | ||
require 'rexml/encodings/SHIFT_JIS' | ||
begin | ||
require 'iconv' | ||
|
||
module REXML | ||
module Encoding | ||
@@__REXML_encoding_methods =<<-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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -2,8 +2,8 @@ | |
# | ||
# URL: http://www.germane-software.com/software/rexml | ||
# Author: Sean Russell <[email protected]> | ||
# Version: 2.7.2 | ||
# Date: +2003/343 | ||
# Version: @ANT_VERSION@ | ||
# Date: @ANT_DATE@ | ||
|
||
|
||
|
||
|
@@ -21,6 +21,6 @@ | |
# A tutorial is available in docs/tutorial.html | ||
module REXML | ||
Copyright = "Copyright #{Time.now.year} Sean Russell <[email protected]>" | ||
Date = "+2003/343" | ||
Version = "2.7.2" | ||
Date = "+2003/346" | ||
Version = "2.7.3" | ||
end |