summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-23 08:44:05 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2005-11-23 08:44:05 +0000
commitf988ceb53b731f7465f8ace09c76cd69e9abef22 (patch)
tree17c03351ecc7943e1baf9c5fa43074b7b5c015af /lib
parent7ff5d02f8b7d5af37032b55e2066245914c9a6cb (diff)
* lib/rss/rss.rb: fixed a indentation bug.
* lib/rss/taxonomy.rb: fixed <taxo:topic> #to_s bug. * test/rss/test_taxonomy.rb: added a #to_s test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@9595 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/rss/rss.rb4
-rw-r--r--lib/rss/taxonomy.rb7
2 files changed, 8 insertions, 3 deletions
diff --git a/lib/rss/rss.rb b/lib/rss/rss.rb
index d2b7604488..7ccf1aefa1 100644
--- a/lib/rss/rss.rb
+++ b/lib/rss/rss.rb
@@ -725,8 +725,8 @@ EOC
private_methods.each do |meth|
if /\A([^_]+)_[^_]+_elements?\z/ =~ meth and
self.class::NSPOOL.has_key?($1)
- res = __send__(meth, need_convert)
- rv << "#{indent}#{res}" if /\A\s*\z/ !~ res
+ res = __send__(meth, need_convert, indent)
+ rv << res if /\A\s*\z/ !~ res
end
end
rv.join("\n")
diff --git a/lib/rss/taxonomy.rb b/lib/rss/taxonomy.rb
index c89de64d31..3eb5b893aa 100644
--- a/lib/rss/taxonomy.rb
+++ b/lib/rss/taxonomy.rb
@@ -163,7 +163,6 @@ module RSS
def to_s(need_convert=true, indent=calc_indent)
rv = tag(indent) do |next_indent|
[
- link_element(need_convert, next_indent),
other_element(need_convert, next_indent),
]
end
@@ -189,6 +188,12 @@ module RSS
[@taxo_link, @taxo_topics]
end
+ def _attrs
+ [
+ ["#{RDF::PREFIX}:about", true, "about"]
+ ]
+ end
+
def _tags
rv = []
rv << [TAXO_URI, "link"] unless @taxo_link.nil?