Bonsoir,

j'ai un fichier XSL, et quand je l'utilise pour transformer un XML en HTML via Delphi j'ai le message d'erreur suivant :

missing equals sign between attribute and attribute value
Ligne 3 <xsl: template match="/">
Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0"?> 
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/TR/WD-xsl"> 
   <xsl: template match="/"> 
      <xsl:apply-templates select="ERREURS"/> 
   </xsl:template> 
   <xsl: template match="ERREURS"> 
      <html>
         <body> 
            <xsl:apply-templates select="ERREUR"/> 
         </body> 
      </hmtl> 
   </xsl:template> 
 
   <xsl: template match="ERREUR"> 
      Code erreur: <b><xsl:value-of select="nom"/></b><br/> 
      <xsl:apply-templates select="ENREGISTREMENTS"/> 
      <xsl: template match="ENREGISTREMENTS">
         <xsl:apply-templates select="ENREGISTREMENT"/>
      </xsl:template> 
      <xsl: template match="ENREGISTREMENT"> 
         Enregistrement: <b><xsl:value-of select="nom"/></b><br/>     
      </xsl:template> 
   </xsl:template> 
</xsl:stylesheet>
Savez-vous ce qui a provoqué cette erreur dans mon fichier XSL? (je débute en XSL, et donc il y a de fortes chances que mon fichier soit completement faux)

Merci!