# File rexml/dtd/dtd.rb, line 11
      def Parser.parse( input )
	case input
	when String
	  parse_helper input
	when File
	  parse_helper input.read
	end
      end