source: other-projects/trunk/gs3-release-maker/apache-ant-1.6.5/src/etc/testcases/taskdefs/optional/xml/test.xsl@ 14627

Last change on this file since 14627 was 14627, checked in by oranfry, 17 years ago

initial import of the gs3-release-maker

File size: 283 bytes
Line 
1<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
2<!-- Copy every node and attributes recursively -->
3 <xsl:template match="node()|@*">
4 <xsl:copy>
5 <xsl:apply-templates select="@*|node()"/>
6 </xsl:copy>
7 </xsl:template>
8</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.