[
Lists Home |
Date Index |
Thread Index
]
Jeff Rafter wrote:
>
> [an additional dtd form to declare an entities / a documents namespace ...]
>
> So the idea requires two changes to DTD syntax (well-formedness): ability to
> define namespaces in the DTDeclaration and in a PE declaration.
there is no need to add declaration forms. the existing declarations are
sufficient. one need only apply them.
> However
> validation based on this model significantly changes.
the validation algorithm itself does not change. dtd-based validation
still depends on name identity.
> The biggest change is
> neding to track what namespace an element or attribute was declared in.
as names are constants, the parser can do constant folding and there is
nothing to track. the namespace is - on first order - an immutable
property of the name.
(if one doesn't believe that a "parser" should do this, one can layer
that on top, but the difference is not material. this entails, however,
that validation be performed "outside of" the parser as well.)
>
> Just an idea...
>
|