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> |
Partager