summaryrefslogtreecommitdiff
path: root/lib/rss/rexmlparser.rb
diff options
context:
space:
mode:
authorkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-17 00:51:31 +0000
committerkou <kou@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-06-17 00:51:31 +0000
commit88dd1e4c993e661b0d52c40d0eff567b00bf6ffd (patch)
treee8298605f2f0e29f2ec2befeda793b46194e4ddd /lib/rss/rexmlparser.rb
parente85f8c782958c0a3e6ea296401a08d5fe9f8e550 (diff)
* lib/rss, test/rss: backported from trunk. (2005-11-16 - now)
* lib/rss/parser.rb: added entity handling type predicate. * lib/rss/rexmlparser.rb: ditto. * lib/rss/xmlparser.rb: ditto. * lib/rss/xmlscanner.rb: ditto. * lib/rss/xmlscanner.rb: more robust entity handling. * test/rss/test_parser.rb: added an entity handling test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@10295 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rss/rexmlparser.rb')
-rw-r--r--lib/rss/rexmlparser.rb17
1 files changed, 12 insertions, 5 deletions
diff --git a/lib/rss/rexmlparser.rb b/lib/rss/rexmlparser.rb
index 73e352a731..4dabf59199 100644
--- a/lib/rss/rexmlparser.rb
+++ b/lib/rss/rexmlparser.rb
@@ -10,12 +10,13 @@ module RSS
class REXMLParser < BaseParser
- private
-
- def listener
- REXMLListener
+ class << self
+ def listener
+ REXMLListener
+ end
end
-
+
+ private
def _parse
begin
REXML::Document.parse_stream(@rss, @listener)
@@ -35,6 +36,12 @@ module RSS
include REXML::StreamListener
include ListenerMixin
+ class << self
+ def raise_for_undefined_entity?
+ false
+ end
+ end
+
def xmldecl(version, encoding, standalone)
super(version, encoding, standalone == "yes")
# Encoding is converted to UTF-8 when REXML parse XML.