[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: xpath question

Subject: Re: xpath question
From: David Carlisle <davidc@xxxxxxxxx>
Date: Wed, 24 Jan 2007 16:09:22 GMT
Re:  xpath question
> 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

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2011 All Rights Reserved.