Re: [xsl] xpath question

Subject: Re: [xsl] xpath question
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 24 Jan 2007 16:09:22 GMT
> The reason for me to figure out if <scene> is located under <list1> or
>  <list2> is because I would like to filter out data based on certain
> conditions on the <scene> tag.

that doesn't imply that you need to select them all in one xpath it's
far more common just to use templates to process iteratively.
You haven't really given enough descriptuon of your input, or any
description of your output so it's hard to offer concrete advice, but
something like

<xsl:template match="list1|list2">
  <xsl:if test="./text/para/scene[set1=$set1 and set2=$set2]">
    <xsl:apply-templates/>
</xsl:template>

which seems to do what you say you want (without answering the xpath
question in your first post in this thread).
If the list1 scene doesn't match teh condition, everything is skipped,
if it does meet the condition, eveything is processed, and teh scene for
list2 will be checked once that is processed.

David

Current Thread