diff options
| author | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-17 09:01:22 +0000 |
|---|---|---|
| committer | kou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-11-17 09:01:22 +0000 |
| commit | 861b53017f8a46f1941d04d919781ced0d6459ec (patch) | |
| tree | 5623af540ba5ec4725bc9abb0d7427d2223a4b32 /lib/rss | |
| parent | 8d71c2ddb4df24c78d0b72ca572a85b7aba688d6 (diff) | |
| download | ruby-861b53017f8a46f1941d04d919781ced0d6459ec.tar.gz ruby-861b53017f8a46f1941d04d919781ced0d6459ec.tar.xz ruby-861b53017f8a46f1941d04d919781ced0d6459ec.zip | |
* lib/rss/1.0.rb: added convenience method 'resources'.
* lib/rss/taxonomy.rb: ditto.
* test/rss/rss-assertions.rb: added test for 'resources'.
* test/rss/test_taxonomy.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@9556 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss')
| -rw-r--r-- | lib/rss/1.0.rb | 13 | ||||
| -rw-r--r-- | lib/rss/taxonomy.rb | 10 |
2 files changed, 20 insertions, 3 deletions
diff --git a/lib/rss/1.0.rb b/lib/rss/1.0.rb index be3ff7d41..5c7e3f5e6 100644 --- a/lib/rss/1.0.rb +++ b/lib/rss/1.0.rb @@ -438,12 +438,21 @@ module RSS end end + def resources + if @Seq + @Seq.lis.collect do |li| + li.resource + end + else + [] + end + end + private def children [@Seq] end - private def _tags rv = [] rv << [URI, 'Seq'] unless @Seq.nil? @@ -453,9 +462,7 @@ module RSS def rdf_validate(tags) _validate(tags, [["Seq", nil]]) end - end - end class Image < Element diff --git a/lib/rss/taxonomy.rb b/lib/rss/taxonomy.rb index d7a5b6d19..c89de64d3 100644 --- a/lib/rss/taxonomy.rb +++ b/lib/rss/taxonomy.rb @@ -86,6 +86,16 @@ module RSS end end + def resources + if @Bag + @Bag.lis.collect do |li| + li.resource + end + else + [] + end + end + private def children [@Bag] |
