xsl-list
[Top] [All Lists]

Re: Help with a Transform

2004-09-02 15:17:58
OMG, now that I see it, that is pretty obvious. I have to really learn to change my thinking on XSLT....

cking wrote:

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

<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>

<xsl:template match="/Orders">
 <xsl:copy>
  <xsl:apply-templates select="OrderReport"/>
 </xsl:copy>
</xsl:template>

<xsl:template match="OrderReport">
 <xsl:copy>
  <shippingTotal>
   <xsl:value-of select="sum(Item/*/Component[Type='Shipping']/Amount)"/>
  </shippingTotal>
 </xsl:copy>
</xsl:template>

</xsl:stylesheet>


Cheers,
Anton Triest

--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--


<Prev in Thread] Current Thread [Next in Thread>