mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
9be1ed43c8
* lib/rss: #to_s used #tag. * test/rss/test_to_s.rb: added. * lib/rss/maker.rb (RSS::Maker.make): changed API. It's not received modules which is used as the second argument. * lib/rss/xml-stylesheet.rb (RSS::XMLStyleSheet#alternate): changed return value type which is not String but Boolean. * lib/rss/2.0.rb (RSS::Rss::Channel#ttl): changed return value type which is not String but Integer. * lib/rss/0.9.rb (RSS::Rss::Channel): <skipDays> has <day>s and <skipHours> has <hour>s. * lib/rss/maker/0.9.rb (RSS::Maker::RSS09::Channel): ditto. * lib/rss/0.9.rb (RSS::Rss::Channel::Item): <item> has <category>s. * lib/rss/maker/2.0.rb (RSS::Maker::Rss20::Channel::Item): ditto. * lib/rss/2.0.rb (RSS::Rss::Channel): <channel> has <category>s. * lib/rss/maker/2.0.rb (RSS::Maker::RSS20::Channel): ditto. * lib/rss/trackback.rb: parent element has <trackback:about>s. * lib/rss/maker/trackback.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7319 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
213 lines
4.6 KiB
Ruby
213 lines
4.6 KiB
Ruby
require "rss/1.0"
|
|
|
|
require "rss/maker/base"
|
|
|
|
module RSS
|
|
module Maker
|
|
|
|
class RSS10 < RSSBase
|
|
|
|
def initialize
|
|
super("1.0")
|
|
end
|
|
|
|
def to_rss
|
|
rss = RDF.new(@version, @encoding, @standalone)
|
|
setup_xml_stylesheets(rss)
|
|
setup_channel(rss)
|
|
setup_image(rss)
|
|
setup_items(rss)
|
|
setup_textinput(rss)
|
|
setup_other_elements(rss)
|
|
if rss.channel
|
|
rss
|
|
else
|
|
nil
|
|
end
|
|
end
|
|
|
|
private
|
|
def setup_channel(rss)
|
|
@channel.to_rss(rss)
|
|
end
|
|
|
|
def setup_image(rss)
|
|
@image.to_rss(rss)
|
|
end
|
|
|
|
def setup_items(rss)
|
|
@items.to_rss(rss)
|
|
end
|
|
|
|
def setup_textinput(rss)
|
|
@textinput.to_rss(rss)
|
|
end
|
|
|
|
class Channel < ChannelBase
|
|
|
|
def to_rss(rss)
|
|
if @about
|
|
channel = RDF::Channel.new(@about)
|
|
set = setup_values(channel)
|
|
if set
|
|
rss.channel = channel
|
|
setup_items(rss)
|
|
setup_image(rss)
|
|
setup_textinput(rss)
|
|
setup_other_elements(rss)
|
|
end
|
|
end
|
|
end
|
|
|
|
def have_required_values?
|
|
@about and @title and @link and @description
|
|
end
|
|
|
|
private
|
|
def setup_items(rss)
|
|
items = RDF::Channel::Items.new
|
|
seq = items.Seq
|
|
@maker.items.normalize.each do |item|
|
|
seq.lis << RDF::Channel::Items::Seq::Li.new(item.link)
|
|
end
|
|
rss.channel.items = items
|
|
end
|
|
|
|
def setup_image(rss)
|
|
if @maker.image.have_required_values?
|
|
rss.channel.image = RDF::Channel::Image.new(@maker.image.url)
|
|
end
|
|
end
|
|
|
|
def setup_textinput(rss)
|
|
if @maker.textinput.have_required_values?
|
|
textinput = RDF::Channel::Textinput.new(@maker.textinput.link)
|
|
rss.channel.textinput = textinput
|
|
end
|
|
end
|
|
|
|
class SkipDays < SkipDaysBase
|
|
def to_rss(*args)
|
|
end
|
|
|
|
class Day < DayBase
|
|
end
|
|
end
|
|
|
|
class SkipHours < SkipHoursBase
|
|
def to_rss(*args)
|
|
end
|
|
|
|
class Hour < HourBase
|
|
end
|
|
end
|
|
|
|
class Cloud < CloudBase
|
|
def to_rss(*args)
|
|
end
|
|
end
|
|
|
|
class Categories < CategoriesBase
|
|
def to_rss(*args)
|
|
end
|
|
|
|
class Category < CategoryBase
|
|
end
|
|
end
|
|
end
|
|
|
|
class Image < ImageBase
|
|
def to_rss(rss)
|
|
if @url
|
|
image = RDF::Image.new(@url)
|
|
set = setup_values(image)
|
|
if set
|
|
rss.image = image
|
|
setup_other_elements(rss)
|
|
end
|
|
end
|
|
end
|
|
|
|
def have_required_values?
|
|
@url and @title and link and @maker.channel.have_required_values?
|
|
end
|
|
|
|
private
|
|
def variables
|
|
super + ["link"]
|
|
end
|
|
end
|
|
|
|
class Items < ItemsBase
|
|
def to_rss(rss)
|
|
if rss.channel
|
|
normalize.each do |item|
|
|
item.to_rss(rss)
|
|
end
|
|
setup_other_elements(rss)
|
|
end
|
|
end
|
|
|
|
class Item < ItemBase
|
|
def to_rss(rss)
|
|
if @link
|
|
item = RDF::Item.new(@link)
|
|
set = setup_values(item)
|
|
if set
|
|
rss.items << item
|
|
setup_other_elements(rss)
|
|
end
|
|
end
|
|
end
|
|
|
|
def have_required_values?
|
|
@title and @link
|
|
end
|
|
|
|
class Guid < GuidBase
|
|
def to_rss(*args)
|
|
end
|
|
end
|
|
|
|
class Enclosure < EnclosureBase
|
|
def to_rss(*args)
|
|
end
|
|
end
|
|
|
|
class Source < SourceBase
|
|
def to_rss(*args)
|
|
end
|
|
end
|
|
|
|
class Categories < CategoriesBase
|
|
def to_rss(*args)
|
|
end
|
|
|
|
class Category < CategoryBase
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
class Textinput < TextinputBase
|
|
def to_rss(rss)
|
|
if @link
|
|
textinput = RDF::Textinput.new(@link)
|
|
set = setup_values(textinput)
|
|
if set
|
|
rss.textinput = textinput
|
|
setup_other_elements(rss)
|
|
end
|
|
end
|
|
end
|
|
|
|
def have_required_values?
|
|
@title and @description and @name and @link and
|
|
@maker.channel.have_required_values?
|
|
end
|
|
end
|
|
end
|
|
|
|
add_maker(filename_to_version(__FILE__), RSS10)
|
|
end
|
|
end
|