Commit 24597146 by Chris Burdess Committed by Tom Tromey

SAXEventSink.java: Ignore XML entities in start/ end entity callbacks.

2005-05-25  Chris Burdess  <dog@gnu.org>

	* gnu/xml/dom/ls/SAXEventSink.java: Ignore XML entities in start/
	end entity callbacks.

From-SVN: r100163
parent 9f938de1
2005-05-25 Chris Burdess <dog@gnu.org>
* gnu/xml/dom/ls/SAXEventSink.java: Ignore XML entities in start/
end entity callbacks.
2005-05-24 Gary Benson <gbenson@redhat.com>
PR libgcj/21736:
......
......@@ -366,6 +366,14 @@ class SAXEventSink
ctx = doctype;
return;
}
if ("lt".equals(name) ||
"gt".equals(name) ||
"amp".equals(name) ||
"apos".equals(name) ||
"quot".equals(name))
{
return;
}
// Get entity
NamedNodeMap entities = doctype.getEntities();
Entity entity = (Entity) entities.getNamedItem(name);
......@@ -385,6 +393,15 @@ class SAXEventSink
// Ignore DTD and parameter entities
return;
}
if ("lt".equals(name) ||
"gt".equals(name) ||
"amp".equals(name) ||
"apos".equals(name) ||
"quot".equals(name))
{
return;
}
// Get entity
Entity entity = popEntity();
// TODO resolve external entities to ensure that entity has content
if (expandEntityReferences)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment