private Method

ListenerMixin.start_RDF(tag_name, prefix, attrs, ns)

There's no documentation for this item.

Source Code

# File rss/1.0.rb, line 438
def start_RDF(tag_name, prefix, attrs, ns)
  check_ns(tag_name, prefix, ns, RDF::URI)

  @rss = RDF.new(@version, @encoding, @standalone)
  @rss.do_validate = @do_validate
  @rss.xml_stylesheets = @xml_stylesheets
  @last_element = @rss
  @proc_stack.push Proc.new { |text, tags|
    @rss.validate_for_stream(tags, @ignore_unknown_element) if @do_validate
  }
end
Comments

Have your say
Please use Textile formatting (click here for a cheat sheet). Use <code/> and <pre/> for code samples.
Click here to login with OpenID to to post comments.