1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<xsl:stylesheet version="1.0"
|
3
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
4
|
xmlns:sc="http://www.utc.fr/ics/scenari/v3/core"
|
5
|
xmlns:sp="http://www.utc.fr/ics/scenari/v3/primitive"
|
6
|
xmlns:op="utc.fr:ics/opale3"
|
7
|
xmlns:xalan="http://xml.apache.org/xalan"
|
8
|
xmlns:sfm="http://www.utc.fr/ics/scenari/v3/filemeta"
|
9
|
exclude-result-prefixes="sc sp xalan op">
|
10
|
<xsl:output encoding="UTF-8" method="xml"/>
|
11
|
|
12
|
<xsl:param name="pCurrentItem"/>
|
13
|
<xsl:param name="pCurrentItemUri"/>
|
14
|
|
15
|
<xsl:template match="op:presRootM/sp:settings/sp:solution">
|
16
|
<sp:solQuiz>
|
17
|
<xsl:apply-templates select="@*|node()"/>
|
18
|
</sp:solQuiz>
|
19
|
</xsl:template>
|
20
|
|
21
|
<xsl:template match="@*|node()">
|
22
|
<xsl:copy>
|
23
|
<xsl:apply-templates select="@*|node()"/>
|
24
|
</xsl:copy>
|
25
|
</xsl:template>
|
26
|
|
27
|
</xsl:stylesheet>
|