1
|
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
<xsl:stylesheet version="1.0" xmlns:sc="http://www.utc.fr/ics/scenari/v3/core"
|
3
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
4
|
xmlns:sp="http://www.utc.fr/ics/scenari/v3/primitive" xmlns:op="utc.fr:ics/opale3"
|
5
|
xmlns="urn:unit-c.fr:schema:academic:v1" xmlns:dc="urn:unit-c.fr:schema:dublincore:v1"
|
6
|
exclude-result-prefixes="sc sp op">
|
7
|
|
8
|
<xsl:import href="bsco:export.xsl" />
|
9
|
<xsl:import href="bsco:unit.xsl" />
|
10
|
|
11
|
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes" />
|
12
|
|
13
|
<xsl:param name="vDialog" />
|
14
|
<xsl:param name="vAgent" />
|
15
|
|
16
|
<xsl:template match="op:uM | op:ueM">
|
17
|
<xsl:apply-templates select="sp:info/op:info/sp:dc/op:dc/sp:auth" />
|
18
|
</xsl:template>
|
19
|
|
20
|
<xsl:template match="sp:auth">
|
21
|
<dc:creator>
|
22
|
<xsl:value-of select="." />
|
23
|
</dc:creator>
|
24
|
</xsl:template>
|
25
|
|
26
|
</xsl:stylesheet>
|