1
|
<xsl:stylesheet version="1.0"
|
2
|
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"
|
5
|
xmlns:op="utc.fr:ics/opale3"
|
6
|
exclude-result-prefixes="sc sp op">
|
7
|
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes" omit-xml-declaration="yes"/>
|
8
|
<xsl:param name="vDialog"/>
|
9
|
<xsl:param name="vAgent"/>
|
10
|
|
11
|
<xsl:template match="*">
|
12
|
<xsl:value-of select="getUrl(currentModel(), 'indexPage')"/>
|
13
|
</xsl:template>
|
14
|
|
15
|
|
16
|
</xsl:stylesheet>
|