summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/EUC-JP.rb
blob: 23a1c3c657bee4d62fc327d51f5bd064b27163f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
begin
	require 'uconv'

	module REXML
		module Encoding
			def from_euc_jp(str)
				return Uconv::euctou8(str)
			end

			def to_euc_jp content
				return Uconv::u8toeuc(content)
			end
		end
	end
rescue LoadError
  begin
	require 'iconv'
	module REXML
		module Encoding
			def from_euc_jp(str)
				return Iconv::iconv("utf-8", "euc-jp", str)[0]
			end

			def to_euc_jp content
				return Iconv::iconv("euc-jp", "utf-8", content)[0]
			end
		end
	end
  rescue LoadError
	raise "uconv or iconv is required for Japanese encoding support."
  end
end