PATH:
opt
/
alt
/
ruby26
/
lib64
/
ruby
/
2.6.0
/
rexml
# frozen_string_literal: false require_relative '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 = encoding != 'UTF-8' if encoding == "UTF-16" @output << "\ufeff".encode("UTF-16BE") self.encoding = "UTF-16BE" end 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]
[-] security.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