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

AVT retrieves whole nodeset instead of the required s

Subject: AVT retrieves whole nodeset instead of the required single node
From: Ihe Onwuka <ihe.onwuka@xxxxxxxxx>
Date: Wed, 21 Nov 2012 16:11:07 +0000
 AVT retrieves whole nodeset instead of the required  s
<stuff>
   <line>
      <period>2005</period>
      <period>2006</period>
      <period>2007</period>
      <period>2008</period>
   </line>
<line>
  <lineItem legend="ASSETS">
     <yearlyFigures>
           <figure year="1">6981</figure>
           <figure year="2">6236</figure>
           <figure year="3">5148</figure>
           <figure year="4">7517</figure>
      </yearlyFigures>
   </lineItem>
 </line>
</stuff>

I want to replace figure/@year with the year from the corresponding
period in the preceding line. So I wrote

  <xsl:template match="yearlyFigures[figure/last() =
preceding::line/period/last()]/figure">
    <figure year="{preceding::line/period[current()/@year]}">
       <xsl:apply-templates/>	
    </figure>	
  </xsl:template

and get

   <line>
      <lineItem legend="ASSETS">
         <yearlyFigures>
            <figure year="2005 2006 2007 2008">6981</figure>
            <figure year="2005 2006 2007 2008">6236</figure>
            <figure year="2005 2006 2007 2008">5148</figure>
            <figure year="2005 2006 2007 2008">7517</figure>
         </yearlyFigures>
      </lineItem>
   </line>

Ultimately I will probably use a key to chain figures to periods but
for now I'd just like to know why the above doesn't just give me the
period that I want.

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.