PageRenderTime 43ms CodeModel.GetById 18ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Unknown | 13 lines | 11 code | 2 blank | 0 comment | 0 complexity | 414ec81864aaef931ce742b8042d2a7b 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 1.0 stylesheet -->
  3. <xsl:stylesheet
  4. xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  5. version="1.0">
  6. <xsl:template match="@*|node()">
  7. <xsl:copy>
  8. <xsl:apply-templates select="@*|node()"/>
  9. </xsl:copy>
  10. </xsl:template>
  11. </xsl:stylesheet>