[
Lists Home |
Date Index |
Thread Index
]
- From: David Megginson <david@megginson.com>
- To: xml-dev <xml-dev@ic.ac.uk>
- Date: 07 Jan 2000 09:00:41 -0500
"Simon St.Laurent" <simonstl@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@megginson.com
http://www.megginson.com/
xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@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@ic.ac.uk the following message;
unsubscribe xml-dev
To subscribe to the digests, mailto:majordomo@ic.ac.uk the following message;
subscribe xml-dev-digest
List coordinator, Henry Rzepa (mailto:rzepa@ic.ac.uk)
|