home *** CD-ROM | disk | FTP | other *** search
/ Internet Magazine 2003 October / INTERNET108.ISO / mac / SOFTWARE / MAC / BUILDING / OXYGEN / oxygenxmleditorx.sit / oxygen / samples / xhtml / copy.xsl next >
Encoding:
Extensible Markup Language  |  2003-06-12  |  644 b   |  18 lines

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  3.     <xsl:output indent="yes" method="xml"/>
  4.     <!-- Match document -->
  5.     <xsl:template match="/">
  6.         <xsl:apply-templates mode="copy" select="."/>
  7.     </xsl:template>
  8.     <!-- Deep copy template -->
  9.     <xsl:template match="*|text()|@*" mode="copy">
  10.         <xsl:copy>
  11.             <xsl:apply-templates mode="copy" select="@*"/>
  12.             <xsl:apply-templates mode="copy"/>
  13.         </xsl:copy>
  14.     </xsl:template>
  15.     <!-- Handle default matching -->
  16.     <xsl:template match="*"/>
  17. </xsl:stylesheet>
  18.