summaryrefslogtreecommitdiff
path: root/sample
diff options
context:
space:
mode:
Diffstat (limited to 'sample')
-rwxr-xr-xsample/rss/blend.rb5
-rw-r--r--sample/rss/list_description.rb4
-rw-r--r--sample/rss/rss_recent.rb4
-rw-r--r--sample/rss/tdiary_plugin/rss-recent.rb18
4 files changed, 7 insertions, 24 deletions
diff --git a/sample/rss/blend.rb b/sample/rss/blend.rb
index 2aa30d7fc9..e578f26a86 100755
--- a/sample/rss/blend.rb
+++ b/sample/rss/blend.rb
@@ -1,9 +1,6 @@
#!/usr/bin/env ruby
-require "rss/1.0"
-require "rss/2.0"
-require "rss/dublincore"
-require "rss/maker"
+require "rss"
feeds = []
verbose = false
diff --git a/sample/rss/list_description.rb b/sample/rss/list_description.rb
index ac1db099ca..bb1f9636e2 100644
--- a/sample/rss/list_description.rb
+++ b/sample/rss/list_description.rb
@@ -10,9 +10,7 @@ class String
end
end
-require "rss/1.0"
-require "rss/2.0"
-require "rss/dublincore"
+require "rss"
channels = {}
verbose = false
diff --git a/sample/rss/rss_recent.rb b/sample/rss/rss_recent.rb
index 70776c1e8a..7821df5c7b 100644
--- a/sample/rss/rss_recent.rb
+++ b/sample/rss/rss_recent.rb
@@ -10,9 +10,7 @@ class String
end
end
-require "rss/1.0"
-require "rss/2.0"
-require "rss/dublincore"
+require "rss"
items = []
verbose = false
diff --git a/sample/rss/tdiary_plugin/rss-recent.rb b/sample/rss/tdiary_plugin/rss-recent.rb
index 7e6aad55ea..867851f386 100644
--- a/sample/rss/tdiary_plugin/rss-recent.rb
+++ b/sample/rss/tdiary_plugin/rss-recent.rb
@@ -20,7 +20,7 @@ require "rss/rss"
RSS_RECENT_FIELD_SEPARATOR = "\0"
RSS_RECENT_ENTRY_SEPARATOR = "\1"
-RSS_RECENT_VERSION = "0.0.6"
+RSS_RECENT_VERSION = "0.0.7"
RSS_RECENT_HTTP_HEADER = {
"User-Agent" => "tDiary RSS recent plugin version #{RSS_RECENT_VERSION}. " <<
"Using RSS parser version is #{::RSS::VERSION}.",
@@ -49,12 +49,12 @@ def rss_recent(url, max=5, cache_time=3600)
have_entry = infos.size > 0 && max > 0
- rv << "<ul>\n" if have_entry
+ rv << "<ul class='rss-recent'>\n" if have_entry
i = 0
infos.each do |title, url, time, image|
break if i >= max
next if title.nil?
- rv << '<li>'
+ rv << "<li class='rss-recent-item'>"
rv << %Q[<span class="#{rss_recent_modified_class(time)}">]
rv << rss_recent_entry_to_html(title, url, time, image)
rv << %Q[</span>]
@@ -78,17 +78,7 @@ def rss_recent_cache_rss(url, cache_file, cache_time)
if cached_time.nil? or Time.now > cached_time + cache_time
require 'time'
- require 'open-uri'
- require 'net/http'
- require 'uri/generic'
- require 'rss/parser'
- require 'rss/1.0'
- require 'rss/2.0'
- require 'rss/dublincore'
- begin
- require 'rss/image'
- rescue LoadError
- end
+ require 'rss'
begin
uri = URI.parse(url)