Files
circular_buffer/doc/copy.xslt
Jan Gaspar 3f5559e18a Several small bug fixes.
[SVN r2594]
2005-04-28 16:09:36 +00:00

11 lines
341 B
HTML

<?xml version="1.0" encoding="iso-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/ | node() | @* | comment() | processing-instruction()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>