# File lib/cgikit/command.rb, line 63 def parse_element( element ) if REXML::Text === element then return end attrs = attributes_from_element(element) distinct_element(element, attrs) element.each do |child| parse_element(child) end end