File: foo.xsl

package info (click to toggle)
xalan 1.10-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 16,600 kB
  • ctags: 14,764
  • sloc: cpp: 152,342; xml: 6,835; sh: 3,267; makefile: 868; ansic: 370
file content (12 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0"?> 
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="node() | @*">
  <xsl:copy>
	<xsl:apply-templates select="node() | @*"/>
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>