RE: [xsl] Combining nodes

Subject: RE: [xsl] Combining nodes
From: "Bordeman, Chris" <Chris.Bordeman@xxxxxxxxxxxxxxxxx>
Date: Thu, 6 Nov 2008 17:08:44 -0600
Beautiful.  Thanks David.


-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Thursday, November 06, 2008 4:47 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] Combining nodes


> how can I modify this to fill

<xsl:stylesheet version="2.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";>

<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:variable name="x" as="element()">
      <Fee>
        <Code>N/A</Code>
        <Amount>N/A</Amount>
      </Fee>
</xsl:variable>

<xsl:template match="Input">
 <xsl:apply-templates select="(Fees/Fee[not(IsPublicOfficial='true')],

Products/DealStructureProduct[not(IsInsurance='true')],
                              $x,$x,$x,$x)
			      [position()&lt;4]"/>
</xsl:template>

<xsl:template match="Fee">
 <FieldValuePair name="label{position()}" value="{Code}"/>
 <FieldValuePair name="value{position()}" value="{Amount}"/>
</xsl:template>

<xsl:template match="DealStructureProduct">
 <FieldValuePair name="label{position()}" value="{Code}"/>
 <FieldValuePair name="value{position()}" value="{SellingPrice}"/>
</xsl:template>

</xsl:stylesheet>

________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs.
________________________________________________________________________

Current Thread