Re: On the interpretation of match=

2008/10/5 mozer wrote:

>>  About this example (matching a comment node), would it be an error
>> if the match expression matched both comment and element nodes?

> No I would be an error ONLY because it is matching a comment

  I am not sure to understand.  Let's say we have the follwing document:

    <root>
       <elem/>
       <!-- comment -->
       <elem/>
    </root>

  Will this step generate an error because the match pattern will
select the comment and text nodes, or will this only result in
renaming the second element? (ok, the example is pointless, but it
shows the issue):

    <p:rename match="elem/following-sibling::node()" new-name="foo"/>

  Regards,

-- 
Florent Georges
http://www.fgeorges.org/

Received on Sunday, 5 October 2008 18:13:28 UTC