Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 
3
xmlns:dri="http://www.driver-repository.eu/namespace/dri"
4
xmlns:oaf="http://namespace.openaire.eu/oaf">
5
<xsl:output method="xml" indent="yes" encoding="UTF-8" />
6
<xsl:template match="/">
7
	<xsl:apply-templates/>
8
</xsl:template>
9

    
10
<xsl:template match="@*|node()">
11
	<xsl:copy>
12
		<xsl:apply-templates select="@*|node()"/>
13
	</xsl:copy>
14
</xsl:template>
15
</xsl:stylesheet>
(42-42/48)