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:odRootM/sp:annsettings">
|
16
|
<sp:settings>
|
17
|
<xsl:apply-templates select="@*|node()"/>
|
18
|
</sp:settings>
|
19
|
</xsl:template>
|
20
|
|
21
|
<xsl:template match="op:odRootM/sp:annsettings/sp:solution">
|
22
|
<sp:solPractUc>
|
23
|
<xsl:apply-templates select="@*|node()"/>
|
24
|
</sp:solPractUc>
|
25
|
</xsl:template>
|
26
|
|
27
|
<xsl:template match="op:odRootM/sp:annsettings/sp:solutionQuiz">
|
28
|
<sp:solQuiz>
|
29
|
<xsl:apply-templates select="@*|node()"/>
|
30
|
</sp:solQuiz>
|
31
|
<sp:solAssmntUa>
|
32
|
<xsl:apply-templates select="@*|node()"/>
|
33
|
</sp:solAssmntUa>
|
34
|
</xsl:template>
|
35
|
|
36
|
<xsl:template match="@*|node()">
|
37
|
<xsl:copy>
|
38
|
<xsl:apply-templates select="@*|node()"/>
|
39
|
</xsl:copy>
|
40
|
</xsl:template>
|
41
|
|
42
|
</xsl:stylesheet>
|