test_saxon_engine.xsl 724 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
  3. xmlns:xs="http://www.w3.org/2001/XMLSchema"
  4. xmlns:saxon="http://icl.com/saxon"
  5. xmlns:exslt="http://exslt.org/common"
  6. exclude-result-prefixes="xs"
  7. version="2.0">
  8. <xsl:template name="main">
  9. <xsl:variable name="fragment">value</xsl:variable>
  10. <xsl:apply-templates
  11. select="exslt:node-set($fragment)"
  12. mode="postprocess"
  13. xmlns:saxon="http://icl.com/saxon"/>
  14. </xsl:template>
  15. <xsl:template match="item" saxon:trace="yes"
  16. xmlns:saxon="http://icl.com/saxon">
  17. </xsl:template>
  18. </xsl:stylesheet>