Project

General

Profile

Actions

Bug #3686

closed

Error in parsing musicbrainz.org with rexml

Added by vinc-mai (Vincent Carmona) over 13 years ago. Updated almost 13 years ago.

Status:
Closed
Target version:
ruby -v:
ruby 1.9.1p378 (2010-01-10 revision 26273) [i486-linux]
Backport:
[ruby-core:31693]

Description

=begin
rexml (ruby 1.9.1) fails to parse this url http://musicbrainz.org/show/puid/?puid=c6a6717f-6d88-4d0e-4c57-d6b949118072 .

require 'net/http'
require 'rexml/document'

url='http://musicbrainz.org/show/puid/?puid=c6a6717f-6d88-4d0e-4c57-d6b949118072'
res=Net::HTTP.get_response(URI.parse(url))
doc=REXML::Document.new(res.body)

/usr/lib/ruby/1.9.1/rexml/parsers/treeparser.rb:95:in rescue in parse': #<RuntimeError: Undeclared entity '&raquo;' in raw string "Skip to main content &raquo;"> (REXML::ParseException) /usr/lib/ruby/1.9.1/rexml/text.rb:165:in block in check'
/usr/lib/ruby/1.9.1/rexml/text.rb:153:in scan' /usr/lib/ruby/1.9.1/rexml/text.rb:153:in check'
/usr/lib/ruby/1.9.1/rexml/text.rb:125:in parent=' /usr/lib/ruby/1.9.1/rexml/parent.rb:19:in add'
/usr/lib/ruby/1.9.1/rexml/parsers/treeparser.rb:45:in parse' /usr/lib/ruby/1.9.1/rexml/document.rb:228:in build'
/usr/lib/ruby/1.9.1/rexml/document.rb:43:in `initialize'

$ ruby1.9.1 --version
ruby 1.9.1p378 (2010-01-10 revision 26273) [i486-linux]

ruby 1.8.7 can parse these data.
=end

Actions #1

Updated by meta (mathew murphy) over 13 years ago

=begin
FWIW, I checked and raquo is a valid entity in XHTML 1.1, the page passes validation, and it correctly states the XHTML 1.1 DTD.

The entity DTD also seems to be included in the modular framework module, a required part of XHTML as per http://www.w3.org/TR/xhtml-modularization/schema_module_defs.html#a_character_entities

i.e. the XHTML DTD includes xhtml-framework-1.mod, which includes xhtml-charent-1.mod, which includes xhtml-lat1.ent, which defines the raquo entity.
=end

Actions #2

Updated by shyouhei (Shyouhei Urabe) over 13 years ago

  • Status changed from Open to Assigned
  • Assignee set to kou (Kouhei Sutou)

=begin

=end

Actions #3

Updated by vinc-mai (Vincent Carmona) over 13 years ago

=begin
It seems that this bug was fixed. I can parse the page with ruby 1.9.2p0 (2010-08-18 revision 29036) [i686-linux] under ubuntu 10.10.
=end

Actions #4

Updated by kou (Kouhei Sutou) over 13 years ago

  • Category set to lib
  • Status changed from Assigned to Closed
  • Target version set to 2.0.0

=begin
It had been fixed in trunk.
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0