Module: RSS::Maker::TaxonomyTopicsModel
Defined Under Namespace
Classes: TaxonomyTopicsBase
Class Method Summary
collapse
Class Method Details
.append_features(klass) ⇒ Object
9
10
11
12
13
14
|
# File 'lib/rss/maker/taxonomy.rb', line 9
def self.append_features(klass)
super
klass.def_classed_element("#{RSS::TAXO_PREFIX}_topics",
"TaxonomyTopics")
end
|
.install_taxo_topics(klass) ⇒ Object
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
# File 'lib/rss/maker/taxonomy.rb', line 16
def self.install_taxo_topics(klass)
klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
class TaxonomyTopics < TaxonomyTopicsBase
def to_feed(feed, current)
if current.respond_to?(:taxo_topics)
topics = current.class::TaxonomyTopics.new
bag = topics.Bag
@resources.each do |resource|
bag.lis << RDF::Bag::Li.new(resource)
end
current.taxo_topics = topics
end
end
end
EOC
end
|