summaryrefslogtreecommitdiff
path: root/lib/rss/maker/syndication.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-03 06:43:18 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-11-03 06:43:18 +0000
commitd5b6a7b16947aaf4821d6b76c7de153866fb30c0 (patch)
tree450b783d2d0ee2af19ba3efb8324e73a5e0fc1d5 /lib/rss/maker/syndication.rb
parent0b4597eccfb5ee078e546c910f2f3cee31d3274b (diff)
* test/rss/*.rb: removed tab width configuration headers.
* test/rss/test_maker_{0.9,1.0}.rb: sort -> do_sort. * lib/rss/maker/*.rb: changed API to RSS version independence. * lib/rss/maker/base.rb (RSS::Maker::XMLStyleSheets::XMLStyleSheet): checked required (pseudo) attributes. * lib/rss/maker/base.rb (RSS::Maker::Items): sort -> do_sort. * lib/rss/rss.rb (RSS::BaseModel.install_date_element): avoided warning. * lib/rss/0.9.rb (RSS::Rss#textinput): added convenience method. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@7182 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/maker/syndication.rb')
-rw-r--r--lib/rss/maker/syndication.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/rss/maker/syndication.rb b/lib/rss/maker/syndication.rb
index ad846413ae..72d00c63ea 100644
--- a/lib/rss/maker/syndication.rb
+++ b/lib/rss/maker/syndication.rb
@@ -13,15 +13,15 @@ module RSS
klass.__send__(:attr_accessor, element)
klass.module_eval(<<-EOC, __FILE__, __LINE__)
def setup_#{element}(rss, current)
- current.#{element} = @#{element} if @#{element}
+ if #{element} and current.respond_to?(:#{element}=)
+ current.#{element} = @#{element} if @#{element}
+ end
end
-EOC
+ EOC
end
end
end
- class RSS10
- class Channel; include SyndicationModel; end
- end
+ class ChannelBase; include SyndicationModel; end
end
end