1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
   | <?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.1" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:key name="VERS_GCL" match="Folder" select="substring-before(VERS_GCL,'-')"/>
<xsl:template match="/">
<html>
<head>
  <meta http-equiv="Content-Language" content="fr"> </meta>
  <meta http-equiv="Content-Type" content="text/html; charset=windows-1252"></meta>
  <link rel="STYLESHEET" type="text/css" href="styles.css"> </link>
</head>
<body>
 
  <h6><u>Contenu des Versions Livrées</u> :</h6> 
 
 <br></br><br></br><br></br>
  <div class="listesmall" nowrap="">
    <xsl:for-each select="//Integration/Folder[generate-id(.)=generate-id(key('VERS_GCL', substring-before(VERS_GCL,'-'))[1])]">
 
      <xsl:sort select="VERS_GCL"/>
 
      <p class="liste_da">       
      -     
         <xsl:element name="a">                         
             <xsl:attribute name="title"><xsl:value-of select="VERS_GCL"/></xsl:attribute>
             <xsl:attribute name="target">droite</xsl:attribute>
             <xsl:attribute name="href">lst_build_alloc.htm?name=<xsl:value-of select="name"/></xsl:attribute>
             <xsl:value-of select="VERS_GCL"/><br></br><br></br>
         </xsl:element>        
         <p><h5>Date de fabrication -> <xsl:value-of select="./DATE_FAB"/></h5></p>
         <h6>_____________________________________________</h6>
 
      </p>
    </xsl:for-each>
  </div>
 
 
</body>
</html>
</xsl:template>
</xsl:stylesheet> | 
Partager