[MSV1_0]
[reactos.git] / reactos / depmap.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 Dependency Map</title>
7 </head>
8 <body>
9 <h1>ReactOS Dependency Map</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">Other Module Usage</th>
15 <th align="left">Module Re-Usage</th>
16 </tr>
17 <xsl:for-each select="components/component">
18 <tr>
19 <td><xsl:value-of select="name"/></td>
20 <td><xsl:value-of select="base"/></td>
21 <td><xsl:value-of select="lib_count"/></td>
22 <td><xsl:value-of select="ref_count"/></td>
23 </tr>
24 </xsl:for-each>
25 </table>
26 </body>
27 </html>
28 </xsl:template>
29
30 </xsl:stylesheet>