Bonjour à tous,
Et bien tout est dans le titre, pourquoi sous IE 6 et 7 la page s'affiche sans problème et sous Firefox c'est l'anarchie ?
http://***/download.xml
http://***/download.xsl
download.xml
download.xsl
Modifié par Spark (12 Nov 2006 - 21:42)
Et bien tout est dans le titre, pourquoi sous IE 6 et 7 la page s'affiche sans problème et sous Firefox c'est l'anarchie ?
http://***/download.xml
http://***/download.xsl
download.xml
<?xml version="1.0" encoding="iso-8859-1"?>
<?xml-stylesheet type="text/xsl" href="download.xsl"?>
<download>
<pack nom="Description pack">
<description>Description "pack"</description>
<lien>http://</lien>
<stat>http://</stat>
<taille>41.548 Mo</taille>
<MD5>38EA7EFFD4322A67B5428B72E880E79</MD5>
<version>1.3.0</version>
<taillecd>-2.0</taillecd>
</pack>
<addon nom="Description addon 1">
<description>Description "addon" 1</description>
<lien>http://</lien>
<stat>http://</stat>
<taille>29.5 Mo</taille>
<MD5>2E0B73C06688285BBE0AB8B62349D5E</MD5>
<version>2.0b</version>
<taillecd>29.6</taillecd>
</addon>
<addon nom="Description addon 2">
<description>Description "addon" 2</description>
<lien>http://</lien>
<stat>http://</stat>
<taille>687ko</taille>
<MD5>7A168CD5293891B6B1C44D44B3BDE3E</MD5>
<version>1.0</version>
<taillecd>0.687</taillecd>
</addon>
</download>
download.xsl
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:fo="http://www.w3.org/1999/XSL/Format"
xmlns:axsl="http://www.w3.org/1999/XSL/TransformAlias">
<xsl:output method="xml" encoding="ISO-8859-1" indent="yes" />
<xsl:template match="/download">
<style type="text/css">
td.td_admin { background-color: #F4F7FD; border: solid 1px #3366CC; border-width: 1px 0px 0px 0px; }
td.td_admin2 { background-color: #FFFFFF; border: solid 1px #3366CC; border-width: 1px 0px 0px 0px; }
td.td_admin4 { background-color: #F4F7FD; border: solid 1px #3366CC; border-width: 1px 1px 0px 0px; }
.tableau { text-align: left; width: 99%; border: 1px solid #3366CC; border-width: 1px 1px 1px 1px;}
td.td_titre { background-image: url("images/td_titre.gif"); font-weight: bold; height: 18px !important; height: 14px;}
h2.titre, h3.titre { padding: 0; margin: 0; color:#000000; font-size:10px; }
</style>
<table class="tableau" cellspacing="1" cellpadding="3" border="0" width="100%">
<tr>
<td class="td_titre" align="center" colspan="3"><h2>Le pack</h2></td>
</tr>
<xsl:apply-templates select="./pack" />
</table>
<p></p>
<table class="tableau" cellspacing="1" cellpadding="3" border="0" width="100%">
<tr>
<td class="td_titre" align="center" colspan="3"><h2>Les Addons</h2></td>
</tr>
<xsl:apply-templates select="./addon" />
</table>
</xsl:template >
<xsl:template match="pack">
<tr>
<td class="td_admin4" rowspan="2" width="52px" height="52px"><img src="fleche.png" alt="" border="0" /></td>
<td class="td_admin"><b><xsl:value-of select="@nom"/></b> (<xsl:value-of select="./taille"/>)</td>
<td class="td_admin">Version <xsl:value-of select="./version"/></td>
<!--<td class="td_admin" align="center" width="250">A été téléchargé <script language="javascript" src="<xsl:value-of select="./stat"/>"></script> fois</td>-->
</tr>
<tr>
<td class="td_admin2"><u>Description :</u> <xsl:value-of select="./description"/></td>
<td class="td_admin2" align="center"> <xsl:element name="a" > <xsl:attribute name="href"><xsl:value-of select="./lien"/></xsl:attribute> <xsl:element name="img" > <xsl:attribute name="src">telecharger.gif</xsl:attribute><xsl:attribute name="border">0</xsl:attribute><xsl:attribute name="alt"> Télécharger</xsl:attribute><xsl:attribute name="title">Télécharger l'<xsl:value-of select="@nom"/> </xsl:attribute></xsl:element> </xsl:element></td>
</tr>
</xsl:template >
<xsl:template match="addon">
<tr>
<td class="td_admin4" rowspan="2" width="52px" height="52px"><img src="fleche.png" alt="" border="0" /></td>
<td class="td_admin"><b><xsl:value-of select="@nom"/></b> (<xsl:value-of select="./taille"/>)</td>
<td class="td_admin">Version <xsl:value-of select="./version"/></td>
<!--<td class="td_admin" align="center" width="250">A été téléchargé <script language="javascript" src="<xsl:value-of select="./stat"/>"></script> fois</td>-->
</tr>
<tr>
<td class="td_admin2"><u>Description :</u> <xsl:value-of select="./description"/></td>
<td class="td_admin2" align="center"> <xsl:element name="a" > <xsl:attribute name="href"><xsl:value-of select="./lien"/></xsl:attribute> <xsl:element name="img" > <xsl:attribute name="src">telecharger.gif</xsl:attribute><xsl:attribute name="border">0</xsl:attribute><xsl:attribute name="alt"> Télécharger</xsl:attribute><xsl:attribute name="title">Télécharger l'<xsl:value-of select="@nom"/> </xsl:attribute></xsl:element> </xsl:element></td>
</tr>
</xsl:template >
</xsl:stylesheet>
Modifié par Spark (12 Nov 2006 - 21:42)