Class: REXML::Document

Inherits:
Object
  • Object
show all
Defined in:
lib/simple_write.rb

Instance Method Summary collapse

Instance Method Details

#simple_write(output = $stdout, indent = -1,, transitive = false, ie_hack = false) ⇒ Object



6
7
8
9
10
11
12
13
14
# File 'lib/simple_write.rb', line 6

def simple_write( output=$stdout, indent=-1, transitive=false, ie_hack=false )
	output = Output.new( output, xml_decl.encoding ) if xml_decl.encoding != "UTF-8" && !output.kind_of?(Output)
	@children.each { |node|
		indent( output, indent ) if node.node_type == :element
		if node.write( output, indent, transitive, ie_hack )
        output << "\n" unless indent<0 or node == @children[-1]
      end
	}
end