[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: PIs within a DTD
- From: David Brownell <david-b@pacbell.net>
- To: Rob Lugt <roblugt@elcel.com>, xml-dev@lists.xml.org
- Date: Fri, 20 Jul 2001 08:58:20 -0700
> Simple question: is a SAX processor entitled/required to report processing
> instructions from within a DTD (internal or external subset)?
Yes. The XML spec requires processing instructions be reported to apps,
and doesn't make the strange distinction that DOM does about ones that
are in the DTD vs elsewhere. (Which seems to be inherited by infoset.)
> The ContentHandler::processingInstruction() documentation makes no mention
> of where PIs may be found. Contrast this to LexicalHandler::comment() which
> explicitly states that comments from a DTD will be properly nested inside
> start/endDTD events.
ContentHandler is an evolved DocumentHandler, and predates {start,end}DTD()
from the LexicalHandler.
- Dave