From 450ab5c9615481acd9cfd5ac1cb24810460bd382 Mon Sep 17 00:00:00 2001 From: Giuseppe Bilotta Date: Tue, 11 Jan 2011 15:17:02 +0100 Subject: rss: obviously, the precending patch wasn't enough Proper support for a 'modified' element actually requires its model to be defined and added to the RSS Atom namespace. --- data/rbot/plugins/rss.rb | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) (limited to 'data/rbot/plugins/rss.rb') diff --git a/data/rbot/plugins/rss.rb b/data/rbot/plugins/rss.rb index 03e54140..6b163619 100644 --- a/data/rbot/plugins/rss.rb +++ b/data/rbot/plugins/rss.rb @@ -151,6 +151,28 @@ module ::RSS SlashModel::ELEMENTS.collect! {|name| "#{SLASH_PREFIX}_#{name}"} end + if self.const_defined? :Atom + # There are improper Atom feeds around that use the non-standard + # 'modified' element instead of the correct 'updated' one. Let's + # support it too. + module Atom + class Feed + class Modified < RSS::Element + include CommonModel + include DateConstruct + end + __send__("install_have_child_element", + "modified", URI, nil, "modified", :content) + + class Entry + Modified = Feed::Modified + __send__("install_have_child_element", + "modified", URI, nil, "modified", :content) + end + end + end + end + class Element class << self def def_bang(name, chain) -- cgit v1.2.3