Project

General

Profile

1 27167 claudio.at
<?xml version="1.0" encoding="UTF-8"?>
2 39543 claudio.at
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
3 48139 alessia.ba
>
4 27167 claudio.at
5
	<xsl:output omit-xml-declaration="yes" indent="yes"/>
6
7
	<xsl:template match="/">
8
		<ROW>
9
			<xsl:apply-templates/>
10
		</ROW>
11
	</xsl:template>
12
13
	<xsl:template match="FIELD[@name = 'xml']">
14
		<xsl:value-of select="." disable-output-escaping="yes"/>
15
	</xsl:template>
16
17
	<xsl:template match="FIELD[@name != 'xml']">
18
		<xsl:copy-of select="."/>
19
	</xsl:template>
20
21 39543 claudio.at
</xsl:stylesheet>