[DEBUTANT]xml separateur liste
Bonjour,
En regardant mon code ci-joint, pouvez vous me dire comment faire pour espacer chaque technic par un retour à la ligne. Merci
Code:
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
| <?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="product_catalog.xslt"?>
<products>
<product>
<name>A</name>
<company>AA</company>
<type>software</type>
<technics>
<technic>ABC</technic>
<technic>DEF</technic>
<technic>GDH</technic>
</technics>
<price>$100</price>
</product>
<product>
<name>B</name>
<company>BB</company>
<type>software</type>
<technics>
<technic>ABC</technic>
</technics>
<price>$150</price>
</product>
<product>
<name>C</name>
<company>CC</company>
<type>hardware</type>
<technics>
<technic>DEF</technic>
<technic>MNO</technic>
</technics>
<price>$1000</price>
</product>
</products> |
Code:
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
| <?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<head>
<title>Products</title>
<link rel="stylesheet" type="text/css" href="Products_xslt.css"/>
</head>
<body>
<xsl:for-each select="products">
<table>
<tr>
<th>name</th>
<th>Company</th>
<th>type</th>
<th>technics</th>
<th>Price</th>
</tr>
<xsl:for-each select="product">
<tr>
<td>
<xsl:for-each select="name">
<xsl:apply-templates />
</xsl:for-each>
</td>
<td>
<xsl:for-each select="company">
<xsl:apply-templates />
</xsl:for-each>
</td>
<td>
<xsl:for-each select="type">
<xsl:apply-templates />
</xsl:for-each>
</td>
<td>
<xsl:for-each select="technics">
<xsl:apply-templates />
</xsl:for-each>
</td>
<td>
<xsl:for-each select="price">
<xsl:apply-templates />
</xsl:for-each>
</td>
</tr>
</xsl:for-each>
</table>
</xsl:for-each>
</body>
</html>
</xsl:template>
</xsl:stylesheet> |