Bug #5956
closedrexml - パース時のnamespaceチェックでのエラーについて
Description
添付のプログラムを実行すると以下のエラーとなります。
(実行環境:CentOS6)
The 'xml' prefix must not be bound to any other namespace (http://www.w3.org/TR/REC-xml-names/#ns-decl)
Line: 7
Position: 477
XMLデータ内の以下の記述に対して、
xmlns:xml="http://www.w3.org/XML/1998/namespace"
「属性"xmlns:xml"のnamespaceが"http://www.w3.org/XML/1998/namespace"でなければエラーとする」というチェックを
/rexml/parsers/baseparser.rb line:386付近
で実行しているようですが、以下は誤りではないでしょうか。
[baseparser.rbのline:386付近を抜粋]
...略
attrs.each { |a,b,c,d,e|
if b == "xmlns"
if c == "xml"
if d != "http://www.w3.org/XML/1998/namespace"
msg = "The 'xml' prefix must not be bound to any other namespace "+
"(http://www.w3.org/TR/REC-xml-names/#ns-decl)"
raise REXML::ParseException.new( msg, @source, self )
end
...略
if d != "http://www.w3.org/XML/1998/namespace"
本来"d"ではなく"e"と比較すべきではないでしょうか。
Files
Updated by kou (Kouhei Sutou) almost 13 years ago
- Status changed from Open to Assigned
- Assignee set to kou (Kouhei Sutou)
Updated by kou (Kouhei Sutou) almost 13 years ago
- Status changed from Assigned to Closed
- % Done changed from 0 to 100
r34419 で修正しました!
再現コードがあってとても助かりました!
ありがとうございます!
Updated by m-hiramatsu (Miho Hiramatsu) almost 13 years ago
了解です。
最新のスナップショットで問題が発生しないことを確認しました。
すぐの対応ありがとうございました。