123456789_123456789_123456789_123456789_123456789_

Class: RSS::RDF

Relationships & Source Files
Namespace Children
Classes:
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
Instance Chain:
Inherits: RSS::Element
Defined in: lib/rss/1.0.rb,
lib/rss/image.rb,
lib/rss/slash.rb,
lib/rss/syndication.rb,
lib/rss/taxonomy.rb,
lib/rss/trackback.rb,
lib/rss/content/1.0.rb,
lib/rss/dublincore/1.0.rb

Constant Summary

Element - Inherited

GET_ATTRIBUTES, HAVE_CHILDREN_ELEMENTS, INDENT, MODELS, MUST_CALL_VALIDATORS, NEED_INITIALIZE_VARIABLES, PLURAL_FORMS, TO_ELEMENT_METHODS

RSS10 - Included

ELEMENTS, NSPOOL

Class Attribute Summary

Class Method Summary

Element - Inherited

Utils::InheritedReader - Extended

BaseModel - Extended

Utils - Included

element_initialize_arguments?

This method is used inside of several different objects to determine if special behavior is needed in the constructor.

get_file_and_line_from_caller

Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined.

h,
html_escape

Takes a string s with some HTML in it, and escapes ‘&’, ‘“’, ‘<’ and ‘>’, by replacing them with the appropriate entities.

new_with_value_if_need

If value is an instance of class klass, return it, else create a new instance of klass with value value.

to_class_name

Given a name in a name_with_underscores or a name-with-dashes format, returns the CamelCase version of name.

Instance Attribute Summary

Instance Method Summary

RootElementMixin - Included

XMLStyleSheetMixin - Included

Element - Inherited

SetupMaker - Included

Utils - Included

#element_initialize_arguments?

This method is used inside of several different objects to determine if special behavior is needed in the constructor.

#get_file_and_line_from_caller

Returns an array of two elements: the filename where the calling method is located, and the line number where it is defined.

#h,
#html_escape

Takes a string s with some HTML in it, and escapes ‘&’, ‘“’, ‘<’ and ‘>’, by replacing them with the appropriate entities.

#new_with_value_if_need

If value is an instance of class klass, return it, else create a new instance of klass with value value.

#to_class_name

Given a name in a name_with_underscores or a name-with-dashes format, returns the CamelCase version of name.

Constructor Details

.new(version = nil, encoding = nil, standalone = nil) ⇒ RDF

[ GitHub ]

  
# File 'lib/rss/1.0.rb', line 82

def initialize(version=nil, encoding=nil, standalone=nil)
  super('1.0', version, encoding, standalone)
  @feed_type = "rss"
end

Class Method Details

.required_uri

[ GitHub ]

  
# File 'lib/rss/1.0.rb', line 57

def required_uri
  URI
end

Instance Method Details

#full_name

[ GitHub ]

  
# File 'lib/rss/1.0.rb', line 87

def full_name
  tag_name_with_prefix(PREFIX)
end

#rss_version

[ GitHub ]

  
# File 'lib/rss/1.0.rb', line 81

alias_method(:rss_version, :feed_version)