public
Rubygem
Fork of jmhodges/rfeedparser
Description: rFeedParser is a translation of the Universal Feed Parser from Python into Ruby. It has nearly the exact same behavior.
Homepage: http://rfeedparser.rubyforge.org
Clone URL: git://github.com/technomancy/rfeedparser.git
remove python-style license docstring; we have a LICENSE file for that
technomancy (author)
Tue May 06 15:33:47 -0700 2008
commit  f03e7e9a5d5682ade48650aec1f4c60d243af106
tree    e5ea6f62504ff44224b5c1eda61011bf9a35764c
parent  dd1dc51f69649c2a14910cfb18dd1fde4962a545
...
66
67
68
69
 
70
71
72
73
74
 
75
76
77
...
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
...
66
67
68
 
69
70
71
72
73
 
74
75
76
77
...
83
84
85
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
86
87
88
0
@@ -66,12 +66,12 @@ begin
0
   require 'rfeedparser/libxml_parser'
0
   StrictFeedParser = FeedParser::LibXml::StrictFeedParser
0
 rescue LoadError
0
- puts "Could not load libxml; trying expat"
0
+ STDERR.puts "Could not load libxml; trying expat"
0
   begin
0
     require 'rfeedparser/expat_parser'
0
     StrictFeedParser = FeedParser::Expat::StrictFeedParser
0
   rescue LoadError
0
- puts "Could not load expat either; will use loose parser."
0
+ STDERR.puts "Could not load expat either; will use loose parser."
0
   end
0
 end
0
 
0
@@ -83,29 +83,6 @@ module FeedParser
0
   
0
   VERSION = "0.9.940"
0
 
0
- License = """Copyright (c) 2002-2006, Mark Pilgrim, All rights reserved.
0
-
0
- Redistribution and use in source and binary forms, with or without modification,
0
- are permitted provided that the following conditions are met:
0
-
0
- * Redistributions of source code must retain the above copyright notice,
0
- this list of conditions and the following disclaimer.
0
- * Redistributions in binary form must reproduce the above copyright notice,
0
- this list of conditions and the following disclaimer in the documentation
0
- and/or other materials provided with the distribution.
0
-
0
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 'AS IS'
0
- AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
0
- ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
0
- LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
0
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
0
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
0
- INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
0
- CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0
- ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
0
- POSSIBILITY OF SUCH DAMAGE."""
0
-
0
   Translator_From_Python_To_Ruby = "Jeff Hodges <http://somethingsimilar.com>"
0
   Author = "Mark Pilgrim <http://diveintomark.org/>"
0
   Contributors = [ "Jason Diamond <http://injektilo.org/>",

Comments

    No one has commented yet.