Project

General

Profile

1 27167 claudio.at
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
3
	xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:dr="http://www.driver-repository.eu/namespace/dr"
4
	xmlns:dri="http://www.driver-repository.eu/namespace/dri"
5
	xmlns:oaa="http://namespace.openaire.eu/oaa" xmlns:oaf="http://namespace.openaire.eu/oaf">
6
7
	<xsl:output omit-xml-declaration="yes" indent="yes"/>
8
9
	<xsl:template match="/">
10
		<ROW>
11
			<xsl:apply-templates/>
12
		</ROW>
13
	</xsl:template>
14
15
	<xsl:template match="FIELD[@name = 'xml']">
16
		<xsl:value-of select="." disable-output-escaping="yes"/>
17
	</xsl:template>
18
19
	<xsl:template match="FIELD[@name != 'xml']">
20
		<xsl:copy-of select="."/>
21
	</xsl:template>
22
23
</xsl:stylesheet>