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

RE: Selecting a node set

Subject: RE: Selecting a node set
From: Tony Click <Tony.Click@xxxxxxxxx>
Date: Fri, 27 Jul 2001 11:17:09 -0400
selecting the node set
I was hoping to avoid any variable reference, namely because I cannot
imagine what variable I would pass into it.  The resultant node set is
entirely conditional on the contents of the node immediatly following it (or
I can get essentially the same results using the preceding node)

You didn't say what additional information was needed, but I can tell you
the following:

The structure is as follows:

<stream>
	<endTime>
		<interval value="123" channelId="ch1"
channelDetailId="chd2">
		...
		<interval>
	</endTime>
	...
	<endTime>
	...
	</endTime>
</stream>

There are N endTime elements per stream
There are N intervals per endTime
Within an endTime, channelDetailId should uniquely identify an interval

Essentially I want the set of all endTimes whose following sibling endTime
does not have the same number of intervals with channelDetailIds matching
the current endTime's set of intervals.

The xpath: "endTime[interval/@channelDetailId !=
following-sibling::endTime[1]/interval/@channelDetailId ]" does not give the
proper results - it yields all but the very last endTime



-----Original Message----- 

The information you're giving us is insufficient. In general I think the
answer
should be that you cannot have a single XPath expression for the above
without also
including in it some variable references.

In any specific case the answer may be different.

For example, if it is the case that a "channelDetailId" attribute value
uniquely
identifies an "interval" element, then the following XPath expression will
yield the
desired result:

endTime[interval/@channelDetailId 
     !=  
       following-sibling::endTime[1]/interval/@channelDetailId
       ]


This will be even simpler if we knew that an "endTime" has only one
"interval"

Cheers,
Dimitre Novatchev.


__________________________________________________
Do You Yahoo!?
Get personalized email addresses from Yahoo! Mail
http://personal.mail.yahoo.com/

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


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-2013 All Rights Reserved.