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="sp:dc[op:dc]">
|
16
|
<xsl:comment>Une structure Dublin-Core non reconnue à partir de Opale 3.5 a ete supprime. Ci-dessous les contenus textuels residuels:
|
17
|
<xsl:copy>
|
18
|
<xsl:apply-templates select="@*|node()" mode="nocomments"/>
|
19
|
</xsl:copy>
|
20
|
</xsl:comment>
|
21
|
</xsl:template>
|
22
|
|
23
|
<xsl:template match="@*|node()" mode="nocomments">
|
24
|
<xsl:copy>
|
25
|
<xsl:apply-templates select="@*|node()" mode="nocomments"/>
|
26
|
</xsl:copy>
|
27
|
</xsl:template>
|
28
|
<xsl:template match="comment()" mode="nocomments"/>
|
29
|
|
30
|
<xsl:template match="@*|node()">
|
31
|
<xsl:copy>
|
32
|
<xsl:apply-templates select="@*|node()"/>
|
33
|
</xsl:copy>
|
34
|
</xsl:template>
|
35
|
|
36
|
</xsl:stylesheet>
|