summaryrefslogtreecommitdiff
path: root/lib/rexml/encodings/EUC-JP.rb
blob: 8b146e5f0a6ca4d97528fce7e5c9470970b22ef1 (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 decode(str)
				return Uconv::euctou8(str)
			end

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

				def encode 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