File: foo.xsl

package info (click to toggle)
xalan 1.10-6
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 16,992 kB
  • sloc: cpp: 149,214; xml: 6,835; sh: 3,267; makefile: 884; ansic: 370
file content (7 lines) | stat: -rw-r--r-- 270 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
<?xml version="1.0"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
  <xsl:param name="param1" select="'default value'"/>
  <xsl:template match="doc">
    <out><xsl:value-of select="$param1"/></out>
  </xsl:template>
</xsl:stylesheet>