PATH: //opt/alt/ruby22/lib64/ruby/2.2.0/rexml
FILE_BARU
CREATE
FOLDER_BARU
MKDIR
UPLOAD_FILE
GO
[ .. KEMBALI ]
📄 attlistdecl.rb
↓
X
📄 attribute.rb
↓
X
📄 cdata.rb
↓
X
📄 child.rb
↓
X
📄 comment.rb
↓
X
📄 doctype.rb
↓
X
📄 document.rb
↓
X
📁 dtd/
X
📄 element.rb
↓
X
📄 encoding.rb
↓
X
📄 entity.rb
↓
X
📁 formatters/
X
📄 functions.rb
↓
X
📄 instruction.rb
↓
X
📁 light/
X
📄 namespace.rb
↓
X
📄 node.rb
↓
X
📄 output.rb
↓
X
📄 parent.rb
↓
X
📄 parseexception.rb
↓
X
📁 parsers/
X
📄 quickpath.rb
↓
X
📄 rexml.rb
↓
X
📄 sax2listener.rb
↓
X
📄 security.rb
↓
X
📄 source.rb
↓
X
📄 streamlistener.rb
↓
X
📄 syncenumerator.rb
↓
X
📄 text.rb
↓
X
📄 undefinednamespaceexception.rb
↓
X
📁 validation/
X
📄 xmldecl.rb
↓
X
📄 xmltokens.rb
↓
X
📄 xpath.rb
↓
X
📄 xpath_parser.rb
↓
X
SAVING...
BERHASIL DIUBAH!
EDITING: output.rb
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 = 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
SIMPAN PERUBAHAN