Author: janderwald Date: Sun Jan 14 23:41:01 2007 New Revision: 25458
URL: http://svn.reactos.org/svn/reactos?rev=25458&view=rev Log: - add a primitive XSL for displaying the ReactOS dependency map
Added: trunk/reactos/depmap.xsl (with props)
Added: trunk/reactos/depmap.xsl URL: http://svn.reactos.org/svn/reactos/trunk/reactos/depmap.xsl?rev=25458&vi... ============================================================================== --- trunk/reactos/depmap.xsl (added) +++ trunk/reactos/depmap.xsl Sun Jan 14 23:41:01 2007 @@ -1,0 +1,30 @@ +<?xml version="1.0" encoding="ISO-8859-1"?> +<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform%22%3E +<xsl:template match="/"> +<html> +<head> +<title>ReactOS Dependency Map</title> +</head> +<body> +<h1>ReactOS Dependency Map</h1> +<table border="1"> + <tr bgcolor="#9acd32"> + <th align="left">Module Name</th> + <th align="left">Module Location</th> + <th align="left">Other Module Usage</th> + <th align="left">Module Re-Usage</th> + </tr> + <xsl:for-each select="components/component"> + <tr> + <td><xsl:value-of select="name"/></td> + <td><xsl:value-of select="base"/></td> + <td><xsl:value-of select="lib_count"/></td> + <td><xsl:value-of select="ref_count"/></td> + </tr> + </xsl:for-each> + </table> + </body> + </html> +</xsl:template> + +</xsl:stylesheet>
Propchange: trunk/reactos/depmap.xsl ------------------------------------------------------------------------------ svn:eol-style = native