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

Grouping problem?

Subject: Grouping problem?
From: "Shawn O. McKenzie" <smckenzie@xxxxxxxxxxx>
Date: Mon, 11 Nov 2002 14:39:31 -0800
kenneth hollman
First, I'd like to thank Ken Hollman for all the help he has given me. He has saved this list much wasted bandwidth in answering my questions.

Here is a problem I am having that I think may be a grouping problem. Imagine I have nested lists of items within a document, something like this:

<section name="first">
  <nestlist name="level_1">
      <item name="apple"/>
      <item name="orange"/>
      <item name="truck"/>
      <item name="foo"/>
      <nestlist name="level_2">
        <item name="orange"/>
        <item name="bar"/>
        <item name="truck"/>
        <nestlist name="level_3">
          <item name="orange"/>
          <item name="foo"/>
          <item name="fnord"/>
          <item name="truck"/>
          <nestlist name="level_4">
            <item name="foobar"/>
            <item name="apple"/>
            <item name="bar"/>
       </nestlist>
     </nestlist>
   </nestlist>
 </nestlist>
</section>

I would like to be able to select the first instance of every item in the above with a specific name attribute, without having prior knowledge of what that name might be. For example, I would like to be able to create a select statement that would process item elements along these lines:

   - apple orange truck and foo in the level_1 nestlist
   - bar in the level_2 nestlist
   - fnord in level_3
   - foobar in level_4

I have very large lists like this, and need to perform operations on the first occurance of a unique name.

I have been attempting it with something like:

<xsl:for-each select="section">
  <xsl:variable name="sectname" select="$name"/>
  <xsl:for-each select="//nestlist/item">
    <xsl:variable name="name" select="@name"/>
      <xsl:for-each select="(/section//nestlist/item[@name=$name])[1]">
        <!--Do something here-->
      </xsl:for-each>
  +</xsl:for-each>
</xsl:for-each>

But, it seems, this is not valid. How would I go about this?



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.