matts 2003/09/08 00:05:46
Added: t/htdocs/style/xslt-basic identity.xsl Log: Identity stylesheet Revision Changes Path 1.1 xml-axkit/t/htdocs/style/xslt-basic/identity.xsl Index: identity.xsl =================================================================== <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="html"/> <xsl:template match="*|@*"> <xsl:copy> <xsl:apply-templates select="@*"/> <xsl:apply-templates/> </xsl:copy> </xsl:template> </xsl:stylesheet>