swi_report.xsl 702 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="WINDOWS-1251" ?>
  2. <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/TR/WD-xsl">
  3. <xsl:template match="/">
  4. <table border="1">
  5. <tr bgcolor="#CCCCCC">
  6. <td align="center"><strong>Function</strong></td>
  7. <td align="center"><strong>Change</strong></td>
  8. <td align="center"><strong>Checksum</strong></td>
  9. </tr>
  10. <xsl:for-each select="swi:report/swi:module/swi:file/swi:function">
  11. <tr bgcolor="#F5F5F5">
  12. <td><xsl:value-of select="swi:name"/></td>
  13. <td align="right"><xsl:value-of select="swi:modification"/></td>
  14. <td><xsl:value-of select="swi:statistic/swi:checksum/swi:source/swi:exact"/></td>
  15. </tr>
  16. </xsl:for-each>
  17. </table>
  18. </xsl:template>
  19. </xsl:stylesheet>