mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* lib/rss/rss.rb: moved copyright description to lib/rss.rb.
* lib/rss.rb: added for convenience. * sample/rss/re_read.rb: added #to_s sample. * sample/rss/blend.rb: use 'require "rss"' instead of 'require "rss/*"'. * sample/rss/list_description.rb: ditto. * sample/rss/rss_recent.rb: ditto. * sample/rss/tdiary-plugin/rss-recent.rb: ditto. * sample/rss/tdiary-plugin/rss-recent.rb: 0.0.6 -> 0.0.7. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@8820 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
be7999fd3d
commit
b2270e5535
8 changed files with 103 additions and 31 deletions
16
ChangeLog
16
ChangeLog
|
@ -1,3 +1,19 @@
|
|||
Fri Jul 22 15:02:39 2005 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* lib/rss/rss.rb: moved copyright description to lib/rss.rb.
|
||||
|
||||
* lib/rss.rb: added for convenience.
|
||||
|
||||
* sample/rss/re_read.rb: added #to_s sample.
|
||||
|
||||
* sample/rss/blend.rb: use 'require "rss"' instead of
|
||||
'require "rss/*"'.
|
||||
* sample/rss/list_description.rb: ditto.
|
||||
* sample/rss/rss_recent.rb: ditto.
|
||||
* sample/rss/tdiary-plugin/rss-recent.rb: ditto.
|
||||
|
||||
* sample/rss/tdiary-plugin/rss-recent.rb: 0.0.6 -> 0.0.7.
|
||||
|
||||
Fri Jul 22 14:37:43 2005 Kouhei Sutou <kou@cozmixng.org>
|
||||
|
||||
* lib/rss/parser.rb (RSS::Parser#initialize): accept HTTP/FTP
|
||||
|
|
16
lib/rss.rb
Normal file
16
lib/rss.rb
Normal file
|
@ -0,0 +1,16 @@
|
|||
# Copyright (c) 2003-2005 Kouhei Sutou. You can redistribute it and/or
|
||||
# modify it under the same terms as Ruby.
|
||||
#
|
||||
# Author:: Kouhei Sutou <kou@cozmixng.org>
|
||||
# Tutorial:: http://www.cozmixng.org/~rwiki/?cmd=view;name=RSS+Parser%3A%3ATutorial.en
|
||||
|
||||
require 'rss/1.0'
|
||||
require 'rss/2.0'
|
||||
require 'rss/content'
|
||||
require 'rss/dublincore'
|
||||
require 'rss/image'
|
||||
require 'rss/syndication'
|
||||
#require 'rss/taxonomy'
|
||||
require 'rss/trackback'
|
||||
|
||||
require "rss/maker"
|
|
@ -1,10 +1,3 @@
|
|||
# Copyright (c) 2003-2004 Kouhei Sutou. You can redistribute it and/or
|
||||
# modify it under the same terms as Ruby.
|
||||
#
|
||||
# Author:: Kouhei Sutou <kou@cozmixng.org>
|
||||
# Tutorial:: http://www.cozmixng.org/~rwiki/?cmd=view;name=RSS+Parser%3A%3ATutorial.en
|
||||
|
||||
|
||||
require "time"
|
||||
|
||||
class Time
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -10,9 +10,7 @@ class String
|
|||
end
|
||||
end
|
||||
|
||||
require "rss/1.0"
|
||||
require "rss/2.0"
|
||||
require "rss/dublincore"
|
||||
require "rss"
|
||||
|
||||
channels = {}
|
||||
verbose = false
|
||||
|
|
64
sample/rss/re_read.rb
Executable file
64
sample/rss/re_read.rb
Executable file
|
@ -0,0 +1,64 @@
|
|||
#!/usr/bin/env ruby
|
||||
|
||||
require "rss"
|
||||
|
||||
def error(exception)
|
||||
mark = "=" * 20
|
||||
mark = "#{mark} error #{mark}"
|
||||
puts mark
|
||||
puts exception.class
|
||||
puts exception.message
|
||||
puts exception.backtrace
|
||||
puts mark
|
||||
end
|
||||
|
||||
verbose = false
|
||||
before_time = Time.now
|
||||
|
||||
ARGV.each do |fname|
|
||||
if fname == '-v'
|
||||
verbose = true
|
||||
next
|
||||
end
|
||||
source = nil
|
||||
File.open(fname) do |f|
|
||||
source = f.read
|
||||
end
|
||||
|
||||
rss = nil
|
||||
read = false
|
||||
begin
|
||||
rss = RSS::Parser.parse(source)
|
||||
puts "Re-read valid RSS: #{fname}"
|
||||
RSS::Parser.parse(rss.to_s)
|
||||
read = true
|
||||
rescue RSS::InvalidRSSError
|
||||
error($!) if verbose
|
||||
## do non validate parse for invalid RSS 1.0
|
||||
begin
|
||||
rss = RSS::Parser.parse(source, false)
|
||||
rescue RSS::Error
|
||||
## invalid RSS.
|
||||
error($!) if verbose
|
||||
end
|
||||
rescue RSS::Error
|
||||
error($!) if verbose
|
||||
end
|
||||
|
||||
if rss.nil?
|
||||
puts "Invalid RSS: #{fname}"
|
||||
elsif !read
|
||||
puts "Re-read invalid RSS: #{fname}"
|
||||
begin
|
||||
RSS::Parser.parse(rss.to_s)
|
||||
rescue RSS::Error
|
||||
puts " Error occurred: #{fname}"
|
||||
error($!) if verbose
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
processing_time = Time.now - before_time
|
||||
|
||||
puts "Used XML parser: #{RSS::Parser.default_parser}"
|
||||
puts "Processing time: #{processing_time}s"
|
|
@ -10,9 +10,7 @@ class String
|
|||
end
|
||||
end
|
||||
|
||||
require "rss/1.0"
|
||||
require "rss/2.0"
|
||||
require "rss/dublincore"
|
||||
require "rss"
|
||||
|
||||
items = []
|
||||
verbose = false
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue