summaryrefslogtreecommitdiff
path: root/tests/reports/cmdlineparams.xsl
blob: 49797c35cef72c188d18e0b32b32b585d32dcda8 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:variable name="test">no value</xsl:variable>
<xsl:param name="test2">no value</xsl:param>
<xsl:template match="/">
<root>
  test: <xsl:value-of select="$test"/>
  test2: <xsl:value-of select="$test2"/>
</root>
</xsl:template>
</xsl:stylesheet>