# File lib/commands/plugin/recursive_http_fetcher.rb, line 12 def ls @urls_to_fetch.collect do |url| if url =~ /^svn:\/\/.*/ `svn ls #{url}`.split("\n").map {|entry| "/#{entry}"} rescue nil else open(url) do |stream| links("", stream.read) end rescue nil end end.flatten end