home *** CD-ROM | disk | FTP | other *** search
/ Freelog 100 / FreelogNo100-NovembreDecembre2010.iso / Graphisme / Jshot / jshotinstall_1.3beta.exe / com / izforge / izpack / adaptator / styleSheet.xsl < prev    next >
Text File  |  2009-02-11  |  519b  |  18 lines

  1. <xsl:stylesheet xmlns:xsl='http://www.w3.org/1999/XSL/Transform' version='1.0'>
  2.     <xsl:template match="*">
  3.         <xsl:copy>
  4.             <xsl:copy-of select="@*"/>
  5.             <xsl:apply-templates/>
  6.         </xsl:copy>
  7.     </xsl:template>
  8.     <xsl:template match="xfragment">
  9.         <xsl:apply-templates/>
  10.     </xsl:template>
  11.     <xsl:template match="/xfragment">
  12.         <xsl:copy>
  13.             <xsl:copy-of select="@*"/>
  14.             <xsl:apply-templates/>
  15.         </xsl:copy>
  16.     </xsl:template>
  17. </xsl:stylesheet>
  18.