Open GoogleCodeExporter opened 9 years ago
This has effectively hobbled using relaxng to validate our XML files, since we
can't parse them without this - there's no way to get the content of a tag in
our SAX parser.
Original comment by paik...@gmail.com
on 27 Feb 2012 at 10:55
As a quick hack which seems to work, I added the following code to the
characters method of com.thaiopensource.relaxng.jaxp.ValidatorHtmlImpl:
if (contentHandler != null)
contentHandler.characters(ch, start, length);
Original comment by rbkca...@googlemail.com
on 28 Feb 2012 at 9:23
Original issue reported on code.google.com by
rbkca...@googlemail.com
on 23 Nov 2011 at 2:47