diff options
| author | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-26 16:47:16 +0000 |
|---|---|---|
| committer | nahi <nahi@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-03-26 16:47:16 +0000 |
| commit | 1674f6c9f0b4a4a4cb7915d04bdf20cf98eff5f1 (patch) | |
| tree | 6de750eed56e6e331a4d1ac17848c4f6fef52c9c /lib/rss | |
| parent | 8eff045b674dae10c9c81421da85eca3e5b99d0e (diff) | |
| download | ruby-1674f6c9f0b4a4a4cb7915d04bdf20cf98eff5f1.tar.gz ruby-1674f6c9f0b4a4a4cb7915d04bdf20cf98eff5f1.tar.xz ruby-1674f6c9f0b4a4a4cb7915d04bdf20cf98eff5f1.zip | |
* lib/logger.rb: trim tail space of each line. no user visible change.
* lib/rss/dublincore.rb: fixed class definition mismatch.
* sample/openssl/gen_csr.rb: fixed wrong usage text.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6030 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss')
| -rw-r--r-- | lib/rss/dublincore.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/rss/dublincore.rb b/lib/rss/dublincore.rb index dcf8e46c6..06cb73ec9 100644 --- a/lib/rss/dublincore.rb +++ b/lib/rss/dublincore.rb @@ -46,11 +46,11 @@ module RSS # For backward compatibility DublincoreModel = DublinCoreModel - class RDF - class Channel; include DublinCoreModel; end - class Image; include DublinCoreModel; end - class Item; include DublinCoreModel; end - class Textinput; include DublinCoreModel; end + class RDF < Element + class Channel < Element; include DublinCoreModel; end + class Image < Element; include DublinCoreModel; end + class Item < Element; include DublinCoreModel; end + class Textinput < Element; include DublinCoreModel; end end prefix_size = DC_PREFIX.size + 1 |
