bonjour ! j'ai un soucis lorsque je genere avec msxsk test.xml test.xsl -o test.html !
Le fichier ne contient que les en-tete des colonnes qui sont bien formées et tout mais les données qui doivent etre les lignes du tableau, ne sont pas la !
S'agit il d'un pb de mon fichier xsl ? :
Code :
- <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
- <xsl:output method="html" encoding="iso-8859-1" indent="no"/>
- <xsl:template match="/">
- <html>
- <body>
- <table border="1" cellspacing="0" cellspadding = "13">
- <TR bgcolor="#FFF100">
- <td>ID</td>
- <td>CIVILITE</td>
- <td>NOM</td>
- <td>PRENOM</td>
- <td>STATUT</td>
- <td>ADRESSE</td>
- <td>COMPLEMENT</td>
- <td>CODE POSTAL</td>
- <td>VILLE</td>
- <td>FIXE</td>
- <td>MOBILE</td>
- <td>FAX</td>
- <td>E-MAIL</td>
- <td>SITE WEB</td>
- </TR>
- Gestionnaires !
- <xsl:for-each select="Table/ROW">
- <h1><xsl:value-of select="ID"/></h1>
- <h2><xsl:value-of select="CIVILITE"/></h2>
- <h3><xsl:value-of select="NOM"/></h3>
- <h4><xsl:value-of select="PRENOM"/></h4>
- <h5><xsl:value-of select="ADRESSE1"/></h5>
- <h6><xsl:value-of select="ADRESSE2"/></h6>
- <h7><xsl:value-of select="CODE_POSTAL"/></h7>
- <h8><xsl:value-of select="VILLE"/></h8>
- <h9><xsl:value-of select="TEL_FIX"/></h9>
- <h10><xsl:value-of select="TEL_MOBIL"/></h10>
- <h11><xsl:value-of select="FAX"/></h11>
- <h12><xsl:value-of select="E_MAIL"/></h12>
- <h13><xsl:value-of select="SITE_WEB"/></h13>
- </xsl:for-each>
- </table>
- </body>
- </html>
- </xsl:template>
- </xsl:stylesheet>
|
mon fichier xml :
Code :
- <?xml version="1.0" encoding="ISO-8859-1" standalone="no"?>
- <?xml-stylesheet type="text/xsl" href="test.xsl"?>
- <!DOCTYPE TABLE SYSTEM "Test.dtd">
- <Table>
- <Row>
- <ID>46</ID>
- <CIVILITE>Mr et Mme</CIVILITE>
- <NOM>YOU</NOM>
- <PRENOM>Soizic et Jean-François</PRENOM>
- <STATUT>NULL</STATUT>
- <ADRESSE1>aaaaa</ADRESSE1>
- <ADRESSE2>NULL</ADRESSE2>
- <CODE_POSTAL>aaaa</CODE_POSTAL>
- <VILLE>LES EPESSES</VILLE>
- <TEL_FIXE>0202020202</TEL_FIXE>
- <TEL_MOBIL>NULL</TEL_MOBIL>
- <FAX>0202020202</FAX>
- <E_MAIL>xxxxx@xxxxx</E_MAIL>
- <SITE_WEB></SITE_WEB>
- </Row>
- <Row>
- <ID>24</ID>
- <CIVILITE>Mr et Mme</CIVILITE>
- <NOM>BOUDEAU</NOM>
- <PRENOM>Serge et Nelly</PRENOM>
- <STATUT>NULL</STATUT>
- <ADRESSE1>bbbbb</ADRESSE1>
- <ADRESSE2>NULL</ADRESSE2>
- <CODE_POSTAL>bb</CODE_POSTAL>
- <VILLE>SAINTE CECILE</VILLE>
- <TEL_FIXE>0303030303</TEL_FIXE>
- <TEL_MOBIL>0603030303</TEL_MOBIL>
- <FAX>0303030303</FAX>
- <E_MAIL>NULL</E_MAIL>
- <SITE_WEB>NULL</SITE_WEB>
- </Row>
- <Row>
- <ID>25</ID>
- <CIVILITE>Mr et Mme</CIVILITE>
- <NOM>NAULEAU</NOM>
- <PRENOM>Claude et Geneviève</PRENOM>
- <STATUT>NULL</STATUT>
- <ADRESSE1>ccccccccc</ADRESSE1>
- <ADRESSE2>NULL</ADRESSE2>
- <CODE_POSTAL>cc</CODE_POSTAL>
- <VILLE>cccc</VILLE>
- <TEL_FIXE>0404040404</TEL_FIXE>
- <TEL_MOBIL>NULL</TEL_MOBIL>
- <FAX>NULL</FAX>
- <E_MAIL>NULL</E_MAIL>
- <SITE_WEB>NULL</SITE_WEB>
- </Row>
- </Table>
|
Message édité par albertos le 21-06-2006 à 10:49:06