1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/rexml/parsers/sax2parser.rb (REXML::Parsers::SAX2Parser#parse):

Support NDATA in external entity declaration.
* test/rexml/parser/test_sax2.rb: Add tests for the above case.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42516 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
kou 2013-08-11 09:09:25 +00:00
parent 3e5f5f5ca4
commit f61f11a936
3 changed files with 36 additions and 0 deletions

View file

@ -177,6 +177,12 @@ module REXML
handle( :characters, copy )
when :entitydecl
@entities[ event[1] ] = event[2] if event.size == 3
case event[2]
when "SYSTEM"
event[4, 0] = "NDATA" if event.size == 5
when "PUBLIC"
event[5, 0] = "NDATA" if event.size == 6
end
handle( event[0], event[1..-1] )
when :processing_instruction, :comment, :attlistdecl,
:elementdecl, :cdata, :notationdecl, :xmldecl