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

    
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
</xsl:stylesheet>
(1-1/6)