typo
This commit is contained in:
parent
42af9013d4
commit
59d1f99225
1 changed files with 3 additions and 3 deletions
|
@ -69,7 +69,7 @@
|
||||||
select="$interpretation[@member = current()]" />
|
select="$interpretation[@member = current()]" />
|
||||||
<xsl:choose>
|
<xsl:choose>
|
||||||
<!-- Ecrire -->
|
<!-- Ecrire -->
|
||||||
<!-- TODO: Si plusieurs <line /> se suivant on pourrait les additionner -->
|
<!-- TODO: Si plusieurs <line /> se suivent on pourrait les additionner -->
|
||||||
<xsl:when test="matches($action, '^LINE \d+$')">
|
<xsl:when test="matches($action, '^LINE \d+$')">
|
||||||
<line>
|
<line>
|
||||||
<xsl:value-of select="substring-after($action, 'LINE ')" />
|
<xsl:value-of select="substring-after($action, 'LINE ')" />
|
||||||
|
@ -77,7 +77,7 @@
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
|
|
||||||
<!-- Déplacer -->
|
<!-- Déplacer -->
|
||||||
<!-- TODO: Si plusieurs <move /> se suivant on pourrait les additionner -->
|
<!-- TODO: Si plusieurs <move /> se suivent on pourrait les additionner -->
|
||||||
<xsl:when test="matches($action, '^MOVE \d+$')">
|
<xsl:when test="matches($action, '^MOVE \d+$')">
|
||||||
<move>
|
<move>
|
||||||
<xsl:value-of select="substring-after($action, 'MOVE ')" />
|
<xsl:value-of select="substring-after($action, 'MOVE ')" />
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
</xsl:when>
|
</xsl:when>
|
||||||
|
|
||||||
<!-- Tourner -->
|
<!-- Tourner -->
|
||||||
<!-- TODO: Si plusieurs <turn /> se suivant on pourrait les additionner -->
|
<!-- TODO: Si plusieurs <turn /> se suivent on pourrait les additionner -->
|
||||||
<xsl:when test="matches($action, '^TURN -?\d+$')">
|
<xsl:when test="matches($action, '^TURN -?\d+$')">
|
||||||
<turn>
|
<turn>
|
||||||
<xsl:value-of select="substring-after($action, 'TURN ')" />
|
<xsl:value-of select="substring-after($action, 'TURN ')" />
|
||||||
|
|
Reference in a new issue