Re: [xml-dev] Invalid attribute names

From
Richard Tobin <>
To
Date
2004-01-01T17:16:37Z
ID
<>
Thread
Re: [xml-dev] Invalid attribute names
>%rxp -N < test.xml
>Warning: Attribute name :b has empty prefix
>in unnamed entity at line 1 char 6 of <stdin>
>Warning: Attribute name :b has unbound prefix
>in unnamed entity at line 1 char 12 of <stdin>
><a :b="c"/>
>%echo $?
>0
>
>(result code 0 means the document is well-formed)

The latest version of RXP reports:

Error: Attribute name :b has empty prefix
 in unnamed entity at line 1 char 6 of <stdin>

and returns status 1.

This corresponds to the namespaces erratum defining the term
"namespace well-formedness".  The original version of the spec did
not specify a kind of error that should be reported.

-- Richard