home *** CD-ROM | disk | FTP | other *** search
/ Programmer Plus 2007 / Programmer-Plus-2007.iso / Programming / XML Utilities / Professional Programmer XSL IDE / Xselerator25.msi / Data.Cab / F32810_testProduct2.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2001-10-23  |  401 b   |  16 lines

  1. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  2.    <xsl:import href="product.xsl"/>
  3.  
  4.      <xsl:output  encoding="UTF-8" omit-xml-declaration="yes"/>
  5.  
  6.     <xsl:template match="/">
  7.  
  8.       <xsl:call-template name="product">
  9.         <xsl:with-param name="pList" select="/sales/sale[1]/*"/>
  10.       </xsl:call-template>
  11.     </xsl:template>
  12.  
  13.  
  14. </xsl:stylesheet>
  15.  
  16.