PATH:
opt
/
alt
/
ruby19
/
lib64
/
ruby
/
1.9.1
/
rexml
require 'rexml/encoding' module REXML class Output include Encoding attr_reader :encoding def initialize real_IO, encd="iso-8859-1" @output = real_IO self.encoding = encd @to_utf = encd != 'UTF-8' end def <<( content ) @output << (@to_utf ? self.encode(content) : content) end def to_s "Output[#{encoding}]" end end end
[-] output.rb
[edit]
[-] source.rb
[edit]
[-] comment.rb
[edit]
[-] xpath_parser.rb
[edit]
[-] element.rb
[edit]
[-] undefinednamespaceexception.rb
[edit]
[-] xmltokens.rb
[edit]
[-] parent.rb
[edit]
[-] streamlistener.rb
[edit]
[-] quickpath.rb
[edit]
[-] cdata.rb
[edit]
[-] parseexception.rb
[edit]
[+]
dtd
[-] entity.rb
[edit]
[-] instruction.rb
[edit]
[+]
parsers
[-] xmldecl.rb
[edit]
[-] node.rb
[edit]
[-] functions.rb
[edit]
[-] doctype.rb
[edit]
[+]
..
[-] document.rb
[edit]
[-] rexml.rb
[edit]
[-] encoding.rb
[edit]
[+]
formatters
[-] xpath.rb
[edit]
[-] namespace.rb
[edit]
[+]
validation
[-] attlistdecl.rb
[edit]
[-] sax2listener.rb
[edit]
[-] attribute.rb
[edit]
[-] syncenumerator.rb
[edit]
[-] child.rb
[edit]
[-] text.rb
[edit]
[+]
light