[CONSRV]
[reactos.git] / vreport.xsl
1 <?xml version="1.0" encoding="ISO-8859-1"?>
2 <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
3 <xsl:template match="/">
4 <html>
5 <head>
6 <title>ReactOS Component Version Report</title>
7 </head>
8 <body>
9 <h1>ReactOS Component Version Report</h1>
10 <table border="1">
11 <tr bgcolor="#9acd32">
12 <th align="left">Module Name</th>
13 <th align="left">Module Location</th>
14 <th align="left">Version</th>
15 <th align="left">Date</th>
16 <th align="left">Owner</th>
17 </tr>
18 <xsl:for-each select="components/component">
19 <tr>
20 <td><xsl:value-of select="name"/></td>
21 <td><xsl:value-of select="base"/></td>
22 <td><xsl:value-of select="version"/></td>
23 <td><xsl:value-of select="date"/></td>
24 <td><xsl:value-of select="owner"/></td>
25 </tr>
26 </xsl:for-each>
27 </table>
28 </body>
29 </html>
30 </xsl:template>
31
32 </xsl:stylesheet>