mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rexml/encoding.rb (encoding=): give priority to particular
conversion to iconv. [ruby-core:06520] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9661 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
c7143d7779
commit
2eac4d0fb4
5 changed files with 63 additions and 34 deletions
|
@ -1,13 +1,28 @@
|
|||
require 'uconv'
|
||||
|
||||
module REXML
|
||||
module Encoding
|
||||
def decode_sjis content
|
||||
Uconv::sjistou8(content)
|
||||
end
|
||||
begin
|
||||
require 'uconv'
|
||||
|
||||
def encode_sjis(str)
|
||||
Uconv::u8tosjis(str)
|
||||
def decode_sjis content
|
||||
Uconv::sjistou8(content)
|
||||
end
|
||||
|
||||
def encode_sjis(str)
|
||||
Uconv::u8tosjis(str)
|
||||
end
|
||||
rescue LoadError
|
||||
require 'nkf'
|
||||
|
||||
SJISTOU8 = '-Swm0'
|
||||
U8TOSJIS = '-Wsm0'
|
||||
|
||||
def decode_sjis(str)
|
||||
NKF.nkf(SJISTOU8, str)
|
||||
end
|
||||
|
||||
def encode_sjis content
|
||||
NKF.nkf(U8TOSJIS, content)
|
||||
end
|
||||
end
|
||||
|
||||
b = proc do |obj|
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue