[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [sdx-users] Bug dans le traitement des sdx:location
From: |
Malo Pichot |
Subject: |
Re: [sdx-users] Bug dans le traitement des sdx:location |
Date: |
Tue, 25 Nov 2003 10:41:24 +0000 |
User-agent: |
KMail/1.5 |
Pour info, voici le traitement de <sdx:locations> dans la version
2.1 :
<xsl:choose>
<xsl:when test="sdx:locations">
<xsl:apply-templates select="sdx:locations | sdx:location"/>
</xsl:when>
<xsl:when test="sdx:location">
<xsl:apply-templates select="sdx:location"/>
</xsl:when>
<xsl:otherwise>
<xsl:call-template name="sdx:location"/>
</xsl:otherwise>
</xsl:choose>
--
Malo