Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
3

    
4
	<xsl:output omit-xml-declaration="yes" indent="yes"/>
5

    
6
	<xsl:template match="/">
7
		<ROW>
8
			<xsl:apply-templates/>
9
		</ROW>
10
	</xsl:template>
11

    
12
	<xsl:template match="FIELD[@name = 'xml']">
13
		<xsl:value-of select="." disable-output-escaping="yes"/>
14
	</xsl:template>
15

    
16
	<xsl:template match="FIELD[@name != 'xml']">
17
		<xsl:copy-of select="."/>
18
	</xsl:template>
19

    
20
</xsl:stylesheet>
(1-1/6)