Class: RSS::TaxonomyTopicsModel::TaxonomyTopics

Inherits:
Element
  • Object
show all
Includes:
RSS10
Defined in:
lib/rss/taxonomy.rb

Constant Summary collapse

Bag =
::RSS::RDF::Bag

Constants included from RSS10

RSS10::ELEMENTS, 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, #parent

Class Method Summary collapse

Instance Method Summary collapse

Methods included from RSS10

append_features

Methods inherited from Element

add_have_children_element, add_need_initialize_variable, add_plural_form, add_to_element_method, content_setup, #convert, #converter=, def_corresponded_attr_reader, def_corresponded_attr_writer, get_attributes, have_children_elements, have_content?, #have_xml_content?, inherited, inherited_base, install_get_attribute, install_model, install_must_call_validator, install_ns, models, must_call_validators, #need_base64_encode?, need_initialize_variables, need_parent?, plural_forms, #set_next_element, tag_name, #tag_name, to_element_methods, #to_s, #valid?, #validate, #validate_for_stream

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 Utils::InheritedReader

#inherited_array_reader, #inherited_hash_reader, #inherited_reader

Methods included from SetupMaker

#setup_maker

Constructor Details

#initialize(*args) ⇒ TaxonomyTopics

Returns a new instance of TaxonomyTopics.



61
62
63
64
65
66
67
68
69
# File 'lib/rss/taxonomy.rb', line 61

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

Class Method Details

.required_prefixObject



47
48
49
# File 'lib/rss/taxonomy.rb', line 47

def required_prefix
  TAXO_PREFIX
end

.required_uriObject



51
52
53
# File 'lib/rss/taxonomy.rb', line 51

def required_uri
  TAXO_URI
end

Instance Method Details

#full_nameObject



71
72
73
# File 'lib/rss/taxonomy.rb', line 71

def full_name
  tag_name_with_prefix(TAXO_PREFIX)
end

#maker_target(target) ⇒ Object



75
76
77
# File 'lib/rss/taxonomy.rb', line 75

def maker_target(target)
  target.taxo_topics
end

#resourcesObject



79
80
81
82
83
84
85
86
87
# File 'lib/rss/taxonomy.rb', line 79

def resources
  if @Bag
    @Bag.lis.collect do |li|
      li.resource
    end
  else
    []
  end
end