mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
2572d5e20e
#setup_maker. * test/rss/test_setup_maker_*.rb: added tests for #setup_maker. * lib/rss/maker/base.rb(RSS::Maker::Items#max_size=): supported output item size limitation. * sample/rss/blend.rb: added sample for RSS Maker. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7391 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
167 lines
3.4 KiB
Ruby
167 lines
3.4 KiB
Ruby
require "rss/0.9"
|
|
|
|
module RSS
|
|
|
|
class Rss
|
|
|
|
class Channel
|
|
|
|
%w(generator ttl).each do |x|
|
|
install_text_element(x)
|
|
install_model(x, '?')
|
|
end
|
|
|
|
undef :ttl=
|
|
def ttl=(value)
|
|
@ttl = value.to_i
|
|
end
|
|
|
|
[
|
|
%w(category categories),
|
|
].each do |name, plural_name|
|
|
install_have_children_element(name, plural_name)
|
|
install_model(name, '*')
|
|
end
|
|
|
|
[
|
|
["image", "?"],
|
|
["language", "?"],
|
|
].each do |x, occurs|
|
|
install_model(x, occurs)
|
|
end
|
|
|
|
def other_element(convert, indent)
|
|
rv = <<-EOT
|
|
#{category_elements(convert, indent)}
|
|
#{generator_element(convert, indent)}
|
|
#{ttl_element(convert, indent)}
|
|
EOT
|
|
rv << super
|
|
end
|
|
|
|
private
|
|
alias children09 children
|
|
def children
|
|
children09 + @category.compact
|
|
end
|
|
|
|
alias _tags09 _tags
|
|
def _tags
|
|
rv = %w(generator ttl).delete_if do |x|
|
|
send(x).nil?
|
|
end.collect do |elem|
|
|
[nil, elem]
|
|
end + _tags09
|
|
|
|
@category.each do
|
|
rv << [nil, "category"]
|
|
end
|
|
|
|
rv
|
|
end
|
|
|
|
Category = Item::Category
|
|
|
|
class Item
|
|
|
|
[
|
|
["comments", "?"],
|
|
["author", "?"],
|
|
].each do |x, occurs|
|
|
install_text_element(x)
|
|
install_model(x, occurs)
|
|
end
|
|
|
|
[
|
|
["pubDate", '?'],
|
|
].each do |x, occurs|
|
|
install_date_element(x, 'rfc822')
|
|
install_model(x, occurs)
|
|
end
|
|
|
|
[
|
|
["guid", '?'],
|
|
].each do |x, occurs|
|
|
install_have_child_element(x)
|
|
install_model(x, occurs)
|
|
end
|
|
|
|
def other_element(convert, indent)
|
|
rv = [
|
|
super,
|
|
*%w(author comments pubDate guid).collect do |name|
|
|
__send__("#{name}_element", false, indent)
|
|
end
|
|
].reject do |value|
|
|
/\A\s*\z/.match(value)
|
|
end
|
|
rv.join("\n")
|
|
end
|
|
|
|
private
|
|
alias children09 children
|
|
def children
|
|
children09 + [@guid].compact
|
|
end
|
|
|
|
alias _tags09 _tags
|
|
def _tags
|
|
%w(comments author pubDate guid).delete_if do |x|
|
|
send(x).nil?
|
|
end.collect do |elem|
|
|
[nil, elem]
|
|
end + _tags09
|
|
end
|
|
|
|
alias _setup_maker_element setup_maker_element
|
|
def setup_maker_element(item)
|
|
_setup_maker_element(item)
|
|
@guid.setup_maker(item) if @guid
|
|
end
|
|
|
|
class Guid < Element
|
|
|
|
include RSS09
|
|
|
|
[
|
|
["isPermaLink", nil, false]
|
|
].each do |name, uri, required|
|
|
install_get_attribute(name, uri, required)
|
|
end
|
|
|
|
content_setup
|
|
|
|
def initialize(isPermaLink=nil, content=nil)
|
|
super()
|
|
@isPermaLink = isPermaLink
|
|
@content = content
|
|
end
|
|
|
|
private
|
|
def _attrs
|
|
[
|
|
["isPermaLink", false]
|
|
]
|
|
end
|
|
|
|
def maker_target(item)
|
|
item.guid
|
|
end
|
|
|
|
def setup_maker_attributes(guid)
|
|
guid.isPermaLink = isPermaLink
|
|
guid.content = content
|
|
end
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
RSS09::ELEMENTS.each do |x|
|
|
BaseListener.install_get_text_element(x, nil, "#{x}=")
|
|
end
|
|
|
|
end
|