<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:h="http://www.utc.fr/ics/hdoc/xhtml" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0" xmlns:sc="http://www.utc.fr/ics/scenari/v3/core" xmlns:op="utc.fr:ics/opale3" xmlns:sp="http://www.utc.fr/ics/scenari/v3/primitive" > <xsl:output method="xml" indent="yes" encoding="UTF-8"/> <xsl:template match="@*|node()"> <xsl:copy> <xsl:apply-templates select="@*|node()" /> </xsl:copy> </xsl:template> <xsl:template match="sp:courseUc"> <sp:courseUc> <xsl:attribute name="sc:refUri"> <xsl:value-of select="@data-export-file" /> </xsl:attribute> </sp:courseUc> </xsl:template> </xsl:stylesheet>