ndai | a5b2766 | 2005-07-09 19:41:27 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="ISO-8859-1"?> |
| 2 | <xsl:stylesheet version="1.0" |
| 3 | xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> |
| 4 | <xsl:template match="/"> |
| 5 | <html> |
| 6 | <body> |
| 7 | <h2>Component API Javadoc Coverage Summary</h2> |
| 8 | <table border="1"> |
| 9 | <tr> |
| 10 | <th><h3><b>Component name</b></h3></th> |
| 11 | <th><h3><b>Incomplete class javadoc</b></h3></th> |
| 12 | <th><h3><b>Incomplete method javadoc</b></h3></th> |
| 13 | <th><h3><b>Incomplete field javadoc</b></h3></th> |
| 14 | </tr> |
| 15 | <xsl:for-each select="component-api-javadoc-summary/component-api-javadoc"> |
| 16 | <xsl:sort select="@name"/> |
| 17 | <tr> |
| 18 | <td><a href="{@ref}"><xsl:value-of select="@name"/></a></td> |
| 19 | <td><xsl:value-of select="@class-api-count - @class-javadoc-count"/></td> |
| 20 | <td><xsl:value-of select="@method-api-count - @method-javadoc-count"/></td> |
| 21 | <td><xsl:value-of select="@field-api-count - @field-javadoc-count"/></td> |
| 22 | </tr> |
| 23 | </xsl:for-each> |
| 24 | </table> |
| 25 | </body> |
| 26 | </html> |
| 27 | </xsl:template> |
| 28 | </xsl:stylesheet> |