Files
circular_buffer/doc/copy.xslt
2008-07-23 20:40:46 +00:00

21 lines
627 B
HTML

<?xml version="1.0" encoding="iso-8859-1"?>
<!--
Helper XSL transformation making plain copy of an XML tree.
Copyright (c) 2003-2008 Jan Gaspar
Use, modification, and distribution is subject to the Boost Software
License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
http://www.boost.org/LICENSE_1_0.txt)
-->
<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>