GIF87a;
require "rss/1.0" module RSS SY_PREFIX = 'sy' SY_URI = "http://purl.org/rss/1.0/modules/syndication/" RDF.install_ns(SY_PREFIX, SY_URI) module SyndicationModel extend BaseModel ELEMENTS = [] def self.append_features(klass) super klass.install_must_call_validator(SY_PREFIX, SY_URI) klass.module_eval do [ ["updatePeriod"], ["updateFrequency", :positive_integer] ].each do |name, type| install_text_element(name, SY_URI, "?", "#{SY_PREFIX}_#{name}", type, "#{SY_PREFIX}:#{name}") end %w(updateBase).each do |name| install_date_element(name, SY_URI, "?", "#{SY_PREFIX}_#{name}", 'w3cdtf', "#{SY_PREFIX}:#{name}") end end klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1) alias_method(:_sy_updatePeriod=, :sy_updatePeriod=) def sy_updatePeriod=(new_value) new_value = new_value.strip validate_sy_updatePeriod(new_value) if @do_validate self._sy_updatePeriod = new_value end EOC end private SY_UPDATEPERIOD_AVAILABLE_VALUES = %w(hourly daily weekly monthly yearly) def validate_sy_updatePeriod(value) unless SY_UPDATEPERIOD_AVAILABLE_VALUES.include?(value) raise NotAvailableValueError.new("updatePeriod", value) end end end class RDF class Channel; include SyndicationModel; end end prefix_size = SY_PREFIX.size + 1 SyndicationModel::ELEMENTS.uniq! SyndicationModel::ELEMENTS.each do |full_name| name = full_name[prefix_size..-1] BaseListener.install_get_text_element(SY_URI, name, full_name) end end
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
content | Folder | 0755 |
|
|
dublincore | Folder | 0755 |
|
|
maker | Folder | 0755 |
|
|
0.9.rb | File | 9.36 KB | 0644 |
|
1.0.rb | File | 8.46 KB | 0644 |
|
2.0.rb | File | 2.29 KB | 0644 |
|
atom.rb | File | 22.41 KB | 0644 |
|
content.rb | File | 771 B | 0644 |
|
converter.rb | File | 3.87 KB | 0644 |
|
dublincore.rb | File | 4.18 KB | 0644 |
|
image.rb | File | 4.57 KB | 0644 |
|
itunes.rb | File | 9.96 KB | 0644 |
|
maker.rb | File | 1.75 KB | 0644 |
|
parser.rb | File | 15.47 KB | 0644 |
|
rexmlparser.rb | File | 1.09 KB | 0644 |
|
rss.rb | File | 33.53 KB | 0644 |
|
slash.rb | File | 1.22 KB | 0644 |
|
syndication.rb | File | 1.75 KB | 0644 |
|
taxonomy.rb | File | 2.98 KB | 0644 |
|
trackback.rb | File | 6.56 KB | 0644 |
|
utils.rb | File | 2.61 KB | 0644 |
|
xml-stylesheet.rb | File | 2.13 KB | 0644 |
|
xml.rb | File | 1.47 KB | 0644 |
|
xmlparser.rb | File | 1.55 KB | 0644 |
|
xmlscanner.rb | File | 2.1 KB | 0644 |
|