SAX2 NS processing (was Re: Namespace question)
David Megginson
david at megginson.com
Fri Jan 7 14:01:34 GMT 2000
"Simon St.Laurent" <simonstl at simonstl.com> writes:
> Will SAX2 namespace processing take this 'real-world' approach (which I
> totally support), or are there going to be options for this?
>
> It sounded earlier like you expect namespace processing to be the domain of
> the parser, not the application, so it seems like a live issue.
Basically, the difference in pseudo code is this:
for each att in atts do
if att.uri == "http://www.foo.com/ns/" || att.uri == ""
if att.local == "foo"
doFoo(att.value)
else if att.local == "bar"
doBar(att.value)
end
end
end
vs. this:
for each att in atts do
if att.uri == "http://www.foo.com/ns/"
if att.local == "foo"
doFoo(att.value)
else if att.local == "bar"
doBar(att.value)
end
end
end
In other words, there's not a very significant difference between the
two. The main problem is that the spec is just so much harder to read
and understand that it had to be.
All the best,
David
--
David Megginson david at megginson.com
http://www.megginson.com/
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev at ic.ac.uk
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ and on CD-ROM/ISBN 981-02-3594-1
To unsubscribe, mailto:majordomo at ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo at ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa at ic.ac.uk)
More information about the Xml-dev
mailing list