Class: RSS::RDF::Channel

Inherits:
Element show all
Includes:
DublinCoreModel, ImageFaviconModel, RSS::RSS10, SyndicationModel, TaxonomyTopicsModel
Defined in:
lib/rss/1.0.rb,
lib/rss/image.rb,
lib/rss/taxonomy.rb,
lib/rss/dublincore.rb,
lib/rss/syndication.rb

Defined Under Namespace

Classes: Image, Items, Textinput

Constant Summary

Constants included from SyndicationModel

SyndicationModel::ELEMENTS

Constants included from DublinCoreModel

DublinCoreModel::DATE_ELEMENTS, DublinCoreModel::ELEMENTS, DublinCoreModel::ELEMENT_NAME_INFOS, DublinCoreModel::TEXT_ELEMENTS

Constants included from RSS::RSS10

RSS::RSS10::ELEMENTS, RSS::RSS10::NSPOOL

Constants inherited from Element

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

Instance Attribute Summary

Attributes inherited from Element

#do_validate

Class Method Summary collapse

Instance Method Summary collapse

Methods included from SyndicationModel

append_features

Methods included from BaseModel

#install_date_element, #install_have_child_element, #install_have_children_element, #install_text_element

Methods included from Utils

element_initialize_arguments?, get_file_and_line_from_caller, html_escape, new_with_value_if_need, to_class_name

Methods included from BaseDublinCoreModel

#append_features

Methods included from TaxonomyTopicsModel

append_features

Methods included from ImageFaviconModel

append_features

Methods included from ImageModelUtils

#validate_one_tag_name

Methods included from RSS::RSS10

append_features

Methods inherited from Element

#convert, #converter=, #full_name, get_attributes, have_children_elements, inherited, install_ns, models, must_call_validators, need_initialize_variables, plural_forms, required_prefix, #setup_maker, tag_name, #tag_name, to_element_methods, #to_s, #validate, #validate_for_stream

Constructor Details

#initialize(*args) ⇒ Channel

Returns a new instance of Channel.



192
193
194
195
196
197
198
199
# File 'lib/rss/1.0.rb', line 192

def initialize(*args)
  if Utils.element_initialize_arguments?(args)
    super
  else
    super()
    self.about = args[0]
  end
end

Class Method Details

.required_uriObject



168
169
170
# File 'lib/rss/1.0.rb', line 168

def required_uri
  ::RSS::URI
end