PageRenderTime 29ms CodeModel.GetById 21ms app.highlight 5ms RepoModel.GetById 1ms app.codeStats 0ms

/bundles/plugins-trunk/XML/templates/xslt-2.0.vm

#
Unknown | 21 lines | 17 code | 4 blank | 0 comment | 0 complexity | adca5b3e159090bf2d202ef36f8709f6 MD5 | raw file
Possible License(s): BSD-3-Clause, AGPL-1.0, Apache-2.0, LGPL-2.0, LGPL-3.0, GPL-2.0, CC-BY-SA-3.0, LGPL-2.1, GPL-3.0, MPL-2.0-no-copyleft-exception, IPL-1.0
 1<?xml version="1.0" ?>
 2
 3<!-- this is an XSLT 2.0 template, you got it because the XSLT processor
 4	 that you have selected is an XSLT 2.0 processor
 5  -->
 6<xsl:stylesheet 
 7	xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 8	xmlns:xs="http://www.w3.org/2001/XMLSchema"
 9    version="2.0">
10
11	<xsl:template match="element()">
12	  <xsl:copy>
13		<xsl:apply-templates select="@*,node()"/>
14	   </xsl:copy>
15	</xsl:template>
16	
17	<xsl:template match="attribute()|text()|comment()|processing-instruction()">
18	  <xsl:copy/>
19	</xsl:template>
20
21</xsl:stylesheet>