2004-01-28 06:46:13 +03:00
|
|
|
require "rss/0.9"
|
|
|
|
|
|
|
|
module RSS
|
|
|
|
|
2004-10-16 08:51:15 +04:00
|
|
|
class Rss
|
2004-01-28 06:46:13 +03:00
|
|
|
|
2004-10-16 08:51:15 +04:00
|
|
|
class Channel
|
2004-01-28 06:46:13 +03:00
|
|
|
|
2005-11-25 06:43:48 +03:00
|
|
|
[
|
|
|
|
["generator"],
|
|
|
|
["ttl", :integer],
|
|
|
|
].each do |name, type|
|
2007-03-17 13:13:25 +03:00
|
|
|
install_text_element(name, "", "?", name, type)
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
2004-01-28 06:46:13 +03:00
|
|
|
|
2004-11-19 11:25:25 +03:00
|
|
|
[
|
|
|
|
%w(category categories),
|
|
|
|
].each do |name, plural_name|
|
2007-03-17 13:13:25 +03:00
|
|
|
install_have_children_element(name, "", "*", name, plural_name)
|
2004-11-19 11:25:25 +03:00
|
|
|
end
|
2007-03-17 13:13:25 +03:00
|
|
|
|
2004-10-16 08:51:15 +04:00
|
|
|
[
|
|
|
|
["image", "?"],
|
|
|
|
["language", "?"],
|
2005-04-05 11:03:43 +04:00
|
|
|
].each do |name, occurs|
|
2007-03-17 13:13:25 +03:00
|
|
|
install_model(name, "", occurs)
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
Category = Item::Category
|
|
|
|
|
|
|
|
class Item
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2004-10-16 08:51:15 +04:00
|
|
|
[
|
|
|
|
["comments", "?"],
|
|
|
|
["author", "?"],
|
2005-04-05 11:03:43 +04:00
|
|
|
].each do |name, occurs|
|
2007-03-17 13:13:25 +03:00
|
|
|
install_text_element(name, "", occurs)
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
[
|
|
|
|
["pubDate", '?'],
|
2005-04-05 11:03:43 +04:00
|
|
|
].each do |name, occurs|
|
2007-03-17 13:13:25 +03:00
|
|
|
install_date_element(name, "", occurs, name, 'rfc822')
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
2005-02-13 17:21:21 +03:00
|
|
|
alias date pubDate
|
|
|
|
alias date= pubDate=
|
2004-10-16 08:51:15 +04:00
|
|
|
|
|
|
|
[
|
|
|
|
["guid", '?'],
|
2005-04-05 11:03:43 +04:00
|
|
|
].each do |name, occurs|
|
2007-03-17 13:13:25 +03:00
|
|
|
install_have_child_element(name, "", occurs)
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2004-11-27 11:47:28 +03:00
|
|
|
alias _setup_maker_element setup_maker_element
|
|
|
|
def setup_maker_element(item)
|
|
|
|
_setup_maker_element(item)
|
|
|
|
@guid.setup_maker(item) if @guid
|
|
|
|
end
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2004-10-16 08:51:15 +04:00
|
|
|
class Guid < Element
|
2009-03-06 06:56:38 +03:00
|
|
|
|
2004-10-16 08:51:15 +04:00
|
|
|
include RSS09
|
|
|
|
|
|
|
|
[
|
2007-03-17 13:13:25 +03:00
|
|
|
["isPermaLink", "", false, :boolean]
|
2005-11-25 06:43:48 +03:00
|
|
|
].each do |name, uri, required, type|
|
|
|
|
install_get_attribute(name, uri, required, type)
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
content_setup
|
|
|
|
|
2007-03-17 13:13:25 +03:00
|
|
|
def initialize(*args)
|
|
|
|
if Utils.element_initialize_arguments?(args)
|
|
|
|
super
|
|
|
|
else
|
|
|
|
super()
|
|
|
|
self.isPermaLink = args[0]
|
|
|
|
self.content = args[1]
|
|
|
|
end
|
2005-11-25 06:43:48 +03:00
|
|
|
end
|
|
|
|
|
|
|
|
alias_method :_PermaLink?, :PermaLink?
|
|
|
|
private :_PermaLink?
|
|
|
|
def PermaLink?
|
|
|
|
perma = _PermaLink?
|
|
|
|
perma or perma.nil?
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
2004-11-27 11:47:28 +03:00
|
|
|
def maker_target(item)
|
|
|
|
item.guid
|
|
|
|
end
|
|
|
|
|
|
|
|
def setup_maker_attributes(guid)
|
|
|
|
guid.isPermaLink = isPermaLink
|
|
|
|
guid.content = content
|
|
|
|
end
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2005-04-05 11:03:43 +04:00
|
|
|
RSS09::ELEMENTS.each do |name|
|
2007-03-17 13:13:25 +03:00
|
|
|
BaseListener.install_get_text_element("", name, name)
|
2004-10-16 08:51:15 +04:00
|
|
|
end
|
2004-01-28 06:46:13 +03:00
|
|
|
|
|
|
|
end
|