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 / F32030_testDoubleall.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-20  |  450 b   |  17 lines

  1. <xsl:stylesheet version="1.0" 
  2. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. >
  4.    <xsl:import href="doubleall.xsl"/>
  5.  
  6.    <!-- This transformation must be applied to:
  7.         numList.xml 
  8.     -->
  9.    
  10.    <xsl:output omit-xml-declaration="yes"/>
  11.    
  12.    <xsl:template match="/">
  13.      <xsl:call-template name="doubleall">
  14.        <xsl:with-param name="pList" select="/*/*"/>
  15.      </xsl:call-template>
  16.    </xsl:template>
  17. </xsl:stylesheet>