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 / F31670_testAppend.xsl < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-20  |  556 b   |  18 lines

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