[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Sax-devel] SAX namespace handling underspecified?
- From: David Brownell <david-b@pacbell.net>
- To: Elliotte Rusty Harold <elharo@metalab.unc.edu>, xml-dev@lists.xml.org
- Date: Thu, 23 Aug 2001 12:55:11 -0700
Aargh ...
> <!ENTITY base "http://www.example.com/namespaces/">
>...
> startEntity ("base")
> endEntity ("base")
> startEntity ("base")
> endEntity ("base")
Silly me. LexicalHandler doesn't report entity expansions within
attribute values, as of the final "extensions 1.0" release (though at
least some of the earlier drafts of LexicalHandler expected that).
> Comments? That is, "immediately" isn't quite right ... it's more like
> any startPrefixMapping call matches the next startElement, and
> endPrefixMapping matches the previous endElement.
That still seems right, though. There may be reasons to let other
event callbacks intervene, for when namespace declarations get
processed as they're parsed.
- Dave