PageRenderTime 56ms CodeModel.GetById 20ms RepoModel.GetById 0ms app.codeStats 1ms

/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. <!-- this is an XSLT 2.0 template, you got it because the XSLT processor
  3. that you have selected is an XSLT 2.0 processor
  4. -->
  5. <xsl:stylesheet
  6. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  7. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  8. version="2.0">
  9. <xsl:template match="element()">
  10. <xsl:copy>
  11. <xsl:apply-templates select="@*,node()"/>
  12. </xsl:copy>
  13. </xsl:template>
  14. <xsl:template match="attribute()|text()|comment()|processing-instruction()">
  15. <xsl:copy/>
  16. </xsl:template>
  17. </xsl:stylesheet>