mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rss/rss.rb, test/rss/test_version.rb: 0.2.1 -> 0.2.2.
* lib/rss/maker/itunes.rb: fixed new_itunes_category. * lib/rss/maker/taxonomy.rb: new_taxo_topic -> new_topic because of consistency. * test/rss/test_maker_itunes.rb, test/rss/test_itunes.rb: removed needless UTF-8 characters. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14081 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
f3e3ce4c82
commit
4fab2c7526
7 changed files with 22 additions and 9 deletions
11
ChangeLog
11
ChangeLog
|
@ -1,3 +1,14 @@
|
||||||
|
Sun Dec 2 15:42:16 2007 Kouhei Sutou <kou@cozmixng.org>
|
||||||
|
|
||||||
|
* lib/rss/rss.rb, test/rss/test_version.rb: 0.2.1 -> 0.2.2.
|
||||||
|
|
||||||
|
* lib/rss/maker/itunes.rb: fixed new_itunes_category.
|
||||||
|
* lib/rss/maker/taxonomy.rb: new_taxo_topic -> new_topic because
|
||||||
|
of consistency.
|
||||||
|
|
||||||
|
* test/rss/test_maker_itunes.rb, test/rss/test_itunes.rb: removed
|
||||||
|
needless UTF-8 characters.
|
||||||
|
|
||||||
Sun Dec 2 15:18:37 2007 Koichi Sasada <ko1@atdot.net>
|
Sun Dec 2 15:18:37 2007 Koichi Sasada <ko1@atdot.net>
|
||||||
|
|
||||||
* insnhelper.ci (vm_callee_setup_arg): fix error message.
|
* insnhelper.ci (vm_callee_setup_arg): fix error message.
|
||||||
|
|
|
@ -27,7 +27,7 @@ module RSS
|
||||||
full_plural_name = "#{RSS::ITUNES_PREFIX}_#{plural_name}"
|
full_plural_name = "#{RSS::ITUNES_PREFIX}_#{plural_name}"
|
||||||
klass_name = "ITunes#{Utils.to_class_name(name)}"
|
klass_name = "ITunes#{Utils.to_class_name(name)}"
|
||||||
plural_klass_name = "ITunes#{Utils.to_class_name(plural_name)}"
|
plural_klass_name = "ITunes#{Utils.to_class_name(plural_name)}"
|
||||||
def_elements_class_accessor(klass, full_name, full_plural_name,
|
def_elements_class_accessor(klass, name, full_name, full_plural_name,
|
||||||
klass_name, plural_klass_name,
|
klass_name, plural_klass_name,
|
||||||
recommended_attribute_name)
|
recommended_attribute_name)
|
||||||
end
|
end
|
||||||
|
@ -55,7 +55,7 @@ module RSS
|
||||||
klass.def_csv_element(full_name)
|
klass.def_csv_element(full_name)
|
||||||
end
|
end
|
||||||
|
|
||||||
def def_elements_class_accessor(klass, full_name, full_plural_name,
|
def def_elements_class_accessor(klass, name, full_name, full_plural_name,
|
||||||
klass_name, plural_klass_name,
|
klass_name, plural_klass_name,
|
||||||
recommended_attribute_name=nil)
|
recommended_attribute_name=nil)
|
||||||
if recommended_attribute_name
|
if recommended_attribute_name
|
||||||
|
@ -66,7 +66,7 @@ module RSS
|
||||||
end
|
end
|
||||||
klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
|
klass.module_eval(<<-EOC, __FILE__, __LINE__ + 1)
|
||||||
def new_#{full_name}(text=nil)
|
def new_#{full_name}(text=nil)
|
||||||
#{full_name} = @#{full_plural_name}.new_#{full_name}
|
#{full_name} = @#{full_plural_name}.new_#{name}
|
||||||
#{full_name}.text = text
|
#{full_name}.text = text
|
||||||
if block_given?
|
if block_given?
|
||||||
yield #{full_name}
|
yield #{full_name}
|
||||||
|
|
|
@ -66,7 +66,8 @@ EOC
|
||||||
end
|
end
|
||||||
|
|
||||||
class TaxonomyTopicsBase < Base
|
class TaxonomyTopicsBase < Base
|
||||||
def_array_element("taxo_topic", nil, "TaxonomyTopic")
|
def_array_element("topic", nil, "TaxonomyTopic")
|
||||||
|
alias_method(:new_taxo_topic, :new_topic) # For backward compatibility
|
||||||
|
|
||||||
class TaxonomyTopicBase < Base
|
class TaxonomyTopicBase < Base
|
||||||
include DublinCoreModel
|
include DublinCoreModel
|
||||||
|
|
|
@ -365,8 +365,9 @@ module RSS
|
||||||
def start_else_element(local, prefix, attrs, ns)
|
def start_else_element(local, prefix, attrs, ns)
|
||||||
class_name = self.class.class_name(_ns(ns, prefix), local)
|
class_name = self.class.class_name(_ns(ns, prefix), local)
|
||||||
current_class = @last_element.class
|
current_class = @last_element.class
|
||||||
if current_class.const_defined?(class_name, false) or
|
if class_name and
|
||||||
current_class.constants.include?(class_name.to_sym)
|
(current_class.const_defined?(class_name, false) or
|
||||||
|
current_class.constants.include?(class_name.to_sym))
|
||||||
next_class = current_class.const_get(class_name)
|
next_class = current_class.const_get(class_name)
|
||||||
start_have_something_element(local, prefix, attrs, ns, next_class)
|
start_have_something_element(local, prefix, attrs, ns, next_class)
|
||||||
else
|
else
|
||||||
|
|
|
@ -53,7 +53,7 @@ require "rss/xml-stylesheet"
|
||||||
|
|
||||||
module RSS
|
module RSS
|
||||||
|
|
||||||
VERSION = "0.2.1"
|
VERSION = "0.2.2"
|
||||||
|
|
||||||
URI = "http://purl.org/rss/1.0/"
|
URI = "http://purl.org/rss/1.0/"
|
||||||
|
|
||||||
|
|
|
@ -338,7 +338,7 @@ module RSS
|
||||||
"of your answers here.",
|
"of your answers here.",
|
||||||
readers, &rss20_maker)
|
readers, &rss20_maker)
|
||||||
_assert_itunes_summary("This week we talk about surviving in a " +
|
_assert_itunes_summary("This week we talk about surviving in a " +
|
||||||
"Red state if you’re a Blue person. Or " +
|
"Red state if you're a Blue person. Or " +
|
||||||
"vice versa.",
|
"vice versa.",
|
||||||
readers, &rss20_maker)
|
readers, &rss20_maker)
|
||||||
end
|
end
|
||||||
|
|
|
@ -3,7 +3,7 @@ require "rss-testcase"
|
||||||
module RSS
|
module RSS
|
||||||
class TestVersion < TestCase
|
class TestVersion < TestCase
|
||||||
def test_version
|
def test_version
|
||||||
assert_equal("0.2.1", ::RSS::VERSION)
|
assert_equal("0.2.2", ::RSS::VERSION)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue