Bonjour,
J'ai un petit soucis avec une transformation XSL que je ne m'explique pas : il ne veut pas m'afficher mes images... et pourtant
Voici le fichier XML
Voici le fichier XSL
Le résultat : il m'affiche bien image1.gif ainsi que le texte "image2" MAIS pas image2.gif
Bien entendu, image2 existe et est dans le même répertoire qu'image1
Cet état de fait ma laisse chèvre... pouvez-vous m'en dire plus
Par avance, je vous remercie
David
PS : Je commence le XSL -> soyez indulgent... expliquez-moi si j'ai commis une énormité
J'ai un petit soucis avec une transformation XSL que je ne m'explique pas : il ne veut pas m'afficher mes images... et pourtant
Voici le fichier XML
<root>
<section>
<object data="urlimage.gif">
altimage
</object>
</section>
</root>
Voici le fichier XSL
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" omit-xml-declaration="yes" encoding="ISO-8859-1" doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd" />
<xsl:template match="object">
image2
<img src="image2.gif" alt="altimage2" />
</xsl:template>
<xsl:template match="/">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<body>
<img src="image1.gif" alt="altimage1" />
<xsl:apply-templates select="root/section"/>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
Le résultat : il m'affiche bien image1.gif ainsi que le texte "image2" MAIS pas image2.gif
Bien entendu, image2 existe et est dans le même répertoire qu'image1
Cet état de fait ma laisse chèvre... pouvez-vous m'en dire plus
Par avance, je vous remercie
David
PS : Je commence le XSL -> soyez indulgent... expliquez-moi si j'ai commis une énormité