effectivement ca marche
je ne comprendrai jamais rien à l'informatique moi...
par contre j'ai un autre problème:
fichier xml
Code :
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>
- <!-- Edited with XML Spy v4.2 -->
- <catalog>
- <cd id="3">
- <title>Empire Burlesque</title>
- <artist>Bob Dylan</artist>
- <country>USA</country>
- <company>Columbia</company>
- <price>10.90</price>
- <year>1985</year>
- </cd>
- <cd id="4">
- <title id="5">Hide your heart</title>
- <artist>Bonnie Tyler</artist>
- <country>UK</country>
- <company>CBS Records</company>
- <price>9.90</price>
- <year>1988</year>
- </cd>
- </catalog>
|
fichier xsl
Code :
- <?xml version="1.0" encoding="ISO-8859-1"?>
- <xsl:stylesheet version="1.0"
- xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:template match="/">
- <html>
- <body>
- <h2>My CD Collection</h2>
- <table border="1">
- <tr bgcolor="#9acd32">
- <th>Title</th>
- <th>Artist</th>
- </tr>
- <xsl:for-each select="catalog/cd">
- <xsl:if test="@id != 3">
- <tr>
- <td><xsl:value-of select="title"/></td>
- <xsl:choose>
- <xsl:when test="title@id = 5">
- <td bgcolor="#ff00ff">
- <xsl:value-of select="artist"/></td>
- </xsl:when>
- <xsl:otherwise>
- <td><xsl:value-of select="artist"/></td>
- </xsl:otherwise>
- </xsl:choose>
- </tr>
- </xsl:if>
- </xsl:for-each>
- </table>
- </body>
- </html>
- </xsl:template>
- </xsl:stylesheet>
|
Ligne 15: <xsl:if test="@id != 3"> OK
ligne 19: <xsl:when test="title@id = 5"> PAS OK :Error loading stylesheet: XPath parse failure: binary operator expected:.
si je mets @id tout seul, il considère l'id de <cd id="..">
je dois faire comment pour qu'il fasse le test sur l'id de <title>
merci
---------------
oui oui