File: identity.xsl

package info (click to toggle)
telepathy-haze 0.8.0-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 2,812 kB
  • sloc: sh: 11,524; ansic: 9,895; python: 4,812; xml: 607; makefile: 291
file content (7 lines) | stat: -rw-r--r-- 221 bytes parent folder | download | duplicates (44)
1
2
3
4
5
6
7
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
	<xsl:template match="@*|node()">
		<xsl:copy>
			<xsl:apply-templates select="@*|node()"/>
		</xsl:copy>
	</xsl:template>
</xsl:stylesheet>