XSL regroupent dans des boucles
Fermé
nagdrir
Messages postés
24
Date d'inscription
dimanche 15 juillet 2007
Statut
Membre
Dernière intervention
4 septembre 2007
-
17 août 2007 à 12:20
nagdrir Messages postés 24 Date d'inscription dimanche 15 juillet 2007 Statut Membre Dernière intervention 4 septembre 2007 - 4 sept. 2007 à 09:12
nagdrir Messages postés 24 Date d'inscription dimanche 15 juillet 2007 Statut Membre Dernière intervention 4 septembre 2007 - 4 sept. 2007 à 09:12
A voir également:
- XSL regroupent dans des boucles
- Boucles whatsapp - Guide
- Algobox, problème pour boucles - Forum Programmation
- Exercice en Algorithmique (Boucles) ✓ - Forum Algorithmes / Méthodes
- Concaténation de boucles VB - Forum VB / VBA
- Les boucles For en Batch - Forum Autoit / batch
2 réponses
nagdrir
Messages postés
24
Date d'inscription
dimanche 15 juillet 2007
Statut
Membre
Dernière intervention
4 septembre 2007
1
4 sept. 2007 à 09:11
4 sept. 2007 à 09:11
Voilà, j'ai trouvé la réponse, si ça peut aider je la mets :
<?xml version="1.0" encoding="iso-8859-1"?><!-- DWXMLSource="esh.xml" --><!DOCTYPE xsl:stylesheet [ <!ENTITY nbsp " "> <!ENTITY copy "©"> <!ENTITY reg "®"> <!ENTITY trade "™"> <!ENTITY mdash "—"> <!ENTITY ldquo "“"> <!ENTITY rdquo "”"> <!ENTITY pound "£"> <!ENTITY yen "¥"> <!ENTITY euro "€"> ]> <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="html" 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:key name="tri-par-ville" match="LEI/Resultat/sit_liste" use="ADRPROD_LIBELLE_COMMUNE"/> <xsl:template match="/"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"/> <title>Restaurants</title> </head> <style type="text/css"> <xsl:comment> .Style5 { font-family: Arial; font-size: small; font-weight: bold; } .Style6 { font-family: Arial; font-size: x-small; font-weight: bold; } .Style7 { font-family: Arial; font-size: x-small; } </xsl:comment> </style> <body> <xsl:for-each select="LEI/Resultat/sit_liste[count(. | key('tri-par-ville', ADRPROD_LIBELLE_COMMUNE)[1]) = 1]"> <xsl:sort select="ADRPROD_LIBELLE_COMMUNE"/> <br /> <span class="Style5"><xsl:value-of select="ADRPROD_LIBELLE_COMMUNE" /></span><br/> <xsl:for-each select="key('tri-par-ville',ADRPROD_LIBELLE_COMMUNE)"> <span class="Style6"><strong><xsl:value-of select="NOM" /></strong></span> <br /> <xsl:if test="ADRPROD_COMPL_ADRESSE"><span class="Style7"><xsl:value-of select="ADRPROD_COMPL_ADRESSE" /></span><br /></xsl:if> <span class="Style7"><xsl:value-of select="ADRPROD_CP" /></span> <span class="Style7"><xsl:value-of select="ADRPROD_LIBELLE_COMMUNE" /></span><br /> <xsl:if test="ADRPROD_TEL"><span class="Style7"><xsl:text>Tél. : </xsl:text><xsl:value-of select="ADRPROD_TEL" /></span><br /></xsl:if> <br /> </xsl:for-each> </xsl:for-each> </body> </html> </xsl:template> </xsl:stylesheet>
nagdrir
Messages postés
24
Date d'inscription
dimanche 15 juillet 2007
Statut
Membre
Dernière intervention
4 septembre 2007
1
4 sept. 2007 à 09:12
4 sept. 2007 à 09:12
Je mets résolu !