This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Duplicates



> Can anyone tell me what is meant here by the word 'duplicates'? When is a
> node considered a duplicate of another node? 

when it is the same node.

If you have something like

select="xxx | *[@yyy]"

then that selects all element children that either have name xxx or
have an attribute named yyy.

If there is an <xxx yyy="123"/> then it only appears _once_ in the node
list even though it will be selected by both xxx and *[@yyy]
the | operator merges the lists selected.

David


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]