Files
spring-net/build-support/tools/NCoverExplorer/CoverageReport.xsl
eeichinger 47762e3f0f upgraded to nunit 2.5.1 for running unit tests
integrated ncover for code coverage analysis
switched COM integration tests to explicit
2009-07-14 22:37:59 +00:00

641 lines
27 KiB
XML

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:msxsl="urn:schemas-microsoft-com:xslt">
<!-- Created for NCoverExplorer by Grant Drake (see http://www.kiwidude.com/blog/) -->
<!-- Note that all the extra logic inside this stylesheet checking for presence of -->
<!-- the @acceptable element on modules is for backwards compatibility with the -->
<!-- 1.3.3 NCoverExplorer version which did not write the element. Keeping these -->
<!-- checks ensures that older CC.Net build log renderings will still work fine. -->
<xsl:output method="html" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN"/>
<xsl:param name="applicationPath"/>
<xsl:template match="/">
<!-- Apply the NCoverExplorer template if it exists in the input data -->
<xsl:if test="//coverageReport">
<xsl:comment>Grants new template</xsl:comment>
<xsl:comment>Generated by NCoverExplorer (see http://www.kiwidude.com/blog/)</xsl:comment>
<style>
body { font: small verdana, arial, helvetica; color:#000000; }
.coverageReportTable { font-size: 9px; }
.reportHeader { padding: 5px 8px 5px 8px; font-size: 12px; border: 1px solid; margin: 0px; }
.titleText { font-weight: bold; font-size: 12px; white-space: nowrap; padding: 0px; margin: 1px; }
.subtitleText { font-size: 9px; font-weight: normal; padding: 0px; margin: 1px; white-space: nowrap; }
.projectStatistics { font-size: 10px; border-left: #649cc0 1px solid; white-space: nowrap; width: 40%; }
.heading { font-weight: bold; }
.mainTableHeaderLeft { border: #dcdcdc 1px solid; font-weight: bold; padding-left: 5px; }
.mainTableHeader { border-bottom: 1px solid; border-top: 1px solid; border-right: 1px solid; text-align: center; }
.mainTableGraphHeader { border-bottom: 1px solid; border-top: 1px solid; border-right: 1px solid; text-align: left; font-weight: bold; }
.mainTableCellItem { background: #ffffff; border-left: #dcdcdc 1px solid; border-right: #dcdcdc 1px solid; padding-left: 10px; padding-right: 10px; font-weight: bold; font-size: 10px; }
.mainTableCellData { background: #ffffff; border-right: #dcdcdc 1px solid; text-align: center; white-space: nowrap; }
.mainTableCellPercent { background: #ffffff; font-weight: bold; white-space: nowrap; text-align: right; padding-left: 10px; }
.mainTableCellGraph { background: #ffffff; border-right: #dcdcdc 1px solid; padding-right: 5px; }
.mainTableCellBottom { border-bottom: #dcdcdc 1px solid; }
.childTableHeader { border-top: 1px solid; border-bottom: 1px solid; border-left: 1px solid; border-right: 1px solid; font-weight: bold; padding-left: 10px; }
.childTableCellIndentedItem { background: #ffffff; border-left: #dcdcdc 1px solid; border-right: #dcdcdc 1px solid; padding-right: 10px; font-size: 10px; }
.exclusionTableCellItem { background: #ffffff; border-left: #dcdcdc 1px solid; border-right: #dcdcdc 1px solid; padding-left: 10px; padding-right: 10px; }
.projectTable { background: #a9d9f7; border-color: #649cc0; }
.primaryTable { background: #d7eefd; border-color: #a4dafc; }
.secondaryTable { background: #f9e9b7; border-color: #f6d376; }
.secondaryChildTable { background: #fff6df; border-color: #f5e1b1; }
.exclusionTable { background: #fadada; border-color: #f37f7f; }
.graphBarNotVisited { font-size: 2px; border:#9c9c9c 1px solid; background:#df0000; }
.graphBarSatisfactory { font-size: 2px; border:#9c9c9c 1px solid; background:#f4f24e; }
.graphBarVisited { background: #00df00; font-size: 2px; border-left:#9c9c9c 1px solid; border-top:#9c9c9c 1px solid; border-bottom:#9c9c9c 1px solid; }
.graphBarVisitedFully { background: #00df00; font-size: 2px; border:#9c9c9c 1px solid; }
</style>
<script type="text/javascript">
function toggleDiv(imgId, sectionId)
{
elms = document.getElementsByName(sectionId);
eImg = document.getElementById(imgId);
try {
if (!(elms) || elms.length==0) return;
var expand = (elms[0].style.display == "none");
if ( expand )
{
eImg.src="<xsl:value-of select="$applicationPath"/>/images/arrow_minus_small.gif";
}
else
{
eImg.src="<xsl:value-of select="$applicationPath"/>/images/arrow_plus_small.gif";
}
for each(var el in elms)
{
try {
if ( el.style )
{
//alert( el.style.display );
if ( expand )
{
el.style.display="";
}
else
{
el.style.display = "none";
}
}
}
catch(ex)
{
alert('element ' + el + ' has no style ' + ex);
}
}
}
catch(ex)
{
alert(ex);
}
}
</script>
<table class="coverageReportTable" cellpadding="2" cellspacing="0">
<tbody>
<xsl:apply-templates select="//coverageReport" />
</tbody>
</table>
<script type="text/javascript">
elms = document.getElementsByName('SectionHeader');
for each( el in elms )
{
toggleDiv( el.id, el.id + '-content');
}
</script>
</xsl:if>
<!-- Apply the legacy NCover template if it exists in the input data -->
<xsl:if test="//coverage">
<xsl:apply-templates select="//coverage[count(module) != 0]" />
</xsl:if>
</xsl:template>
<!-- Main Project Section -->
<xsl:template match="coverageReport">
<xsl:variable name="reportType" select="./@reportTitle" />
<xsl:variable name="threshold">
<xsl:choose>
<xsl:when test="$reportType = 'Module Class Function Summary'"><xsl:value-of select="./project/@acceptableFunction" /></xsl:when>
<xsl:otherwise><xsl:value-of select="./project/@acceptable" /></xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="unvisitedTitle">
<xsl:choose>
<xsl:when test="$reportType = 'Module Class Function Summary'">Unvisited Functions</xsl:when>
<xsl:otherwise>Unvisited SeqPts</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="coverageTitle">
<xsl:choose>
<xsl:when test="$reportType = 'Module Class Function Summary'">Function Coverage</xsl:when>
<xsl:otherwise>Coverage</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:variable name="scale" select="200" />
<xsl:call-template name="header" />
<xsl:call-template name="projectSummary">
<xsl:with-param name="unvisitedTitle" select="$unvisitedTitle" />
<xsl:with-param name="coverageTitle" select="$coverageTitle" />
<xsl:with-param name="reportType" select="$reportType" />
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
<xsl:call-template name="moduleSummary">
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="unvisitedTitle" select="$unvisitedTitle" />
<xsl:with-param name="coverageTitle" select="$coverageTitle" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
<xsl:if test="$reportType = 'Module Namespace Summary'">
<xsl:call-template name="moduleNamespaceSummary">
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</xsl:if>
<xsl:if test="($reportType = 'Module Class Summary') or ($reportType = 'Module Class Function Summary')">
<xsl:call-template name="classModuleSummary">
<xsl:with-param name="unvisitedTitle" select="$unvisitedTitle" />
<xsl:with-param name="coverageTitle" select="$coverageTitle" />
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</xsl:if>
<xsl:if test="count(./exclusions/exclusion) != 0">
<xsl:call-template name="exclusionsSummary" />
</xsl:if>
<xsl:call-template name="footer" />
</xsl:template>
<!-- Report Header -->
<xsl:template name="header">
<tr>
<td class="projectTable reportHeader" colspan="5">
<table width="100%">
<tbody>
<tr>
<td valign="top">
<h1 class="titleText">NCoverExplorer Coverage Report - <xsl:value-of select="./project/@name" />&#160;&#160;</h1>
<table cellpadding="1" class="subtitleText">
<tbody>
<tr>
<td class="heading">Report generated on:</td>
<td><xsl:value-of select="./@date" />&#160;at&#160;<xsl:value-of select="./@time" /></td>
</tr>
<tr>
<td class="heading">NCoverExplorer version:</td>
<td><xsl:value-of select="./@version" /></td>
</tr>
<tr>
<td class="heading">Filtering / Sorting:</td>
<td><xsl:value-of select="./project/@filteredBy" />&#160;/&#160;<xsl:value-of select="./project/@sortedBy" /></td>
</tr>
</tbody>
</table>
</td>
<td class="projectStatistics" align="right" valign="top">
<table cellpadding="1">
<tbody>
<tr>
<td rowspan="4" valign="top" nowrap="true" class="heading">Project Statistics:</td>
<td align="right" class="heading">Files:</td>
<td align="right"><xsl:value-of select="./project/@files" /></td>
<td rowspan="4">&#160;</td>
<td align="right" class="heading">NCLOC:</td>
<td align="right"><xsl:value-of select="./project/@nonCommentLines" /></td>
</tr>
<tr>
<td align="right" class="heading">Classes:</td>
<td align="right"><xsl:value-of select="./project/@classes" /></td>
<td align="right" class="heading">&#160;</td>
<td align="right">&#160;</td>
</tr>
<tr>
<td align="right" class="heading">Functions:</td>
<td align="right"><xsl:value-of select="./project/@members" /></td>
<td align="right" class="heading">Unvisited:</td>
<td align="right"><xsl:value-of select="./project/@unvisitedFunctions" /></td>
</tr>
<tr>
<td align="right" class="heading">Seq Pts:</td>
<td align="right"><xsl:value-of select="./project/@sequencePoints" /></td>
<td align="right" class="heading">Unvisited:</td>
<td align="right"><xsl:value-of select="./project/@unvisitedPoints" /></td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</xsl:template>
<!-- Project Summary -->
<xsl:template name="projectSummary">
<xsl:param name="threshold" />
<xsl:param name="scale" />
<xsl:param name="unvisitedTitle" />
<xsl:param name="coverageTitle" />
<xsl:param name="reportType" />
<tr>
<td colspan="5">&#160;</td>
</tr>
<tr>
<td class="projectTable mainTableHeaderLeft">Project</td>
<td class="projectTable mainTableHeader">Acceptable</td>
<td class="projectTable mainTableHeader"><xsl:value-of select="$unvisitedTitle" /></td>
<td class="projectTable mainTableGraphHeader" colspan="2"><xsl:value-of select="$coverageTitle" /></td>
</tr>
<xsl:call-template name="coverageDetail">
<xsl:with-param name="name">
<xsl:choose>
<xsl:when test="string-length(./project/@name) > 0"><xsl:value-of select="./project/@name" /></xsl:when>
<xsl:otherwise>&#160;</xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="unvisitedPoints">
<xsl:choose>
<xsl:when test="$reportType = 'Module Class Function Summary'"><xsl:value-of select="./project/@unvisitedFunctions" /></xsl:when>
<xsl:otherwise><xsl:value-of select="./project/@unvisitedPoints" /></xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="sequencePoints">
<xsl:choose>
<xsl:when test="$reportType = 'Module Class Function Summary'"><xsl:value-of select="./project/@members" /></xsl:when>
<xsl:otherwise><xsl:value-of select="./project/@sequencePoints" /></xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="coverage">
<xsl:choose>
<xsl:when test="$reportType = 'Module Class Function Summary'"><xsl:value-of select="./project/@functionCoverage" /></xsl:when>
<xsl:otherwise><xsl:value-of select="./project/@coverage" /></xsl:otherwise>
</xsl:choose>
</xsl:with-param>
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="showThreshold">True</xsl:with-param>
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</xsl:template>
<!-- Modules Summary -->
<xsl:template name="moduleSummary">
<xsl:param name="threshold" />
<xsl:param name="scale" />
<xsl:param name="unvisitedTitle" />
<xsl:param name="coverageTitle" />
<tr>
<td colspan="5">&#160;</td>
</tr>
<tr>
<td class="primaryTable mainTableHeaderLeft">Modules</td>
<td class="primaryTable mainTableHeader">Acceptable</td>
<td class="primaryTable mainTableHeader"><xsl:value-of select="$unvisitedTitle" /></td>
<td class="primaryTable mainTableGraphHeader" colspan="2"><xsl:value-of select="$coverageTitle" /></td>
</tr>
<xsl:for-each select="./modules/module[namespace/class]">
<xsl:call-template name="coverageDetail">
<xsl:with-param name="name" select="./@name" />
<xsl:with-param name="unvisitedPoints" select="./@unvisitedPoints" />
<xsl:with-param name="sequencePoints" select="./@sequencePoints" />
<xsl:with-param name="coverage" select="./@coverage" />
<xsl:with-param name="threshold" select="./@acceptable" />
<xsl:with-param name="showThreshold">True</xsl:with-param>
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</xsl:for-each>
</xsl:template>
<!-- Namespaces per Module Summary -->
<xsl:template name="moduleNamespaceSummary">
<xsl:param name="threshold" />
<xsl:param name="scale" />
<xsl:for-each select="./modules/module[namespace/class]">
<tr>
<td colspan="5">&#160;</td>
</tr>
<tr>
<td class="secondaryTable mainTableHeaderLeft">Module</td>
<td class="secondaryTable mainTableHeader">Acceptable</td>
<td class="secondaryTable mainTableHeader">Unvisited SeqPts</td>
<td class="secondaryTable mainTableGraphHeader" colspan="2">Coverage</td>
</tr>
<xsl:call-template name="coverageDetailSecondary">
<xsl:with-param name="name" select="./@name" />
<xsl:with-param name="unvisitedPoints" select="./@unvisitedPoints" />
<xsl:with-param name="sequencePoints" select="./@sequencePoints" />
<xsl:with-param name="coverage" select="./@coverage" />
<xsl:with-param name="threshold" select="./@acceptable" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
<tr>
<td class="secondaryChildTable childTableHeader" colspan="5">Namespaces</td>
</tr>
<xsl:for-each select="./namespace">
<xsl:call-template name="coverageIndentedDetail">
<xsl:with-param name="name" select="./@name" />
<xsl:with-param name="unvisitedPoints" select="./@unvisitedPoints" />
<xsl:with-param name="sequencePoints" select="./@sequencePoints" />
<xsl:with-param name="coverage" select="./@coverage" />
<xsl:with-param name="threshold" select="./../@acceptable" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<!-- Classes per Namespace per Module Summary -->
<xsl:template name="classModuleSummary">
<xsl:param name="threshold" />
<xsl:param name="scale" />
<xsl:param name="unvisitedTitle" />
<xsl:param name="coverageTitle" />
<xsl:for-each select="./modules/module[namespace/class]">
<tr>
<td colspan="5">&#160;</td>
</tr>
<tr>
<td class="secondaryTable mainTableHeaderLeft">Module</td>
<td class="secondaryTable mainTableHeader">Acceptable</td>
<td class="secondaryTable mainTableHeader"><xsl:value-of select="$unvisitedTitle" /></td>
<td class="secondaryTable mainTableGraphHeader" colspan="2"><xsl:value-of select="$coverageTitle" /></td>
</tr>
<xsl:call-template name="coverageDetailSecondary">
<xsl:with-param name="name" select="./@name" />
<xsl:with-param name="unvisitedPoints" select="./@unvisitedPoints" />
<xsl:with-param name="sequencePoints" select="./@sequencePoints" />
<xsl:with-param name="coverage" select="./@coverage" />
<xsl:with-param name="threshold" select="./@acceptable" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
<tr>
<td class="secondaryChildTable childTableHeader" colspan="5">Namespace / Classes</td>
</tr>
<xsl:for-each select="./namespace">
<xsl:variable name="sectionId">
<xsl:value-of select="generate-id()" />
</xsl:variable>
<xsl:call-template name="coverageIndentedDetail">
<xsl:with-param name="sectionHeader" select="$sectionId" />
<xsl:with-param name="name" select="./@name" />
<xsl:with-param name="unvisitedPoints" select="./@unvisitedPoints" />
<xsl:with-param name="sequencePoints" select="./@sequencePoints" />
<xsl:with-param name="coverage" select="./@coverage" />
<xsl:with-param name="threshold" select="../@acceptable" />
<xsl:with-param name="styleTweak">padding-left:20px;font-weight:bold</xsl:with-param>
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
<xsl:for-each select="./class">
<xsl:call-template name="coverageIndentedDetail">
<xsl:with-param name="sectionId" select="$sectionId" />
<xsl:with-param name="name" select="./@name" />
<xsl:with-param name="unvisitedPoints" select="./@unvisitedPoints" />
<xsl:with-param name="sequencePoints" select="./@sequencePoints" />
<xsl:with-param name="coverage" select="./@coverage" />
<xsl:with-param name="threshold" select="../../@acceptable" />
<xsl:with-param name="styleTweak">padding-left:30px</xsl:with-param>
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</xsl:for-each>
</xsl:for-each>
</xsl:for-each>
</xsl:template>
<!-- Coverage detail row in main grid displaying a name, statistics and graph bar -->
<xsl:template name="coverageDetail">
<xsl:param name="name" />
<xsl:param name="unvisitedPoints" />
<xsl:param name="sequencePoints" />
<xsl:param name="coverage" />
<xsl:param name="threshold" />
<xsl:param name="scale" />
<xsl:param name="showThreshold" />
<tr>
<xsl:choose>
<xsl:when test="$showThreshold='True'">
<td class="mainTableCellBottom mainTableCellItem"><xsl:value-of select="$name" /></td>
<td class="mainTableCellBottom mainTableCellData"><xsl:value-of select="concat(format-number($threshold,'#0.0'), ' %')" /></td>
</xsl:when>
<xsl:otherwise>
<td class="mainTableCellBottom mainTableCellItem" colspan="2"><xsl:value-of select="$name" /></td>
</xsl:otherwise>
</xsl:choose>
<td class="mainTableCellBottom mainTableCellData"><xsl:value-of select="$unvisitedPoints" /></td>
<td class="mainTableCellBottom mainTableCellPercent"><xsl:value-of select="concat(format-number($coverage,'#0.0'), ' %')" /></td>
<td class="mainTableCellBottom mainTableCellGraph">
<xsl:call-template name="detailPercent">
<xsl:with-param name="notVisited" select="$unvisitedPoints" />
<xsl:with-param name="total" select="$sequencePoints" />
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</td>
</tr>
</xsl:template>
<!-- Coverage detail row in secondary grid header displaying a name, statistics and graph bar -->
<xsl:template name="coverageDetailSecondary">
<xsl:param name="name" />
<xsl:param name="unvisitedPoints" />
<xsl:param name="sequencePoints" />
<xsl:param name="coverage" />
<xsl:param name="threshold" />
<xsl:param name="scale" />
<tr>
<td class="mainTableCellItem"><xsl:value-of select="$name" /></td>
<td class="mainTableCellData"><xsl:value-of select="concat(format-number($threshold,'#0.0'), ' %')" /></td>
<td class="mainTableCellData"><xsl:value-of select="$unvisitedPoints" /></td>
<td class="mainTableCellPercent"><xsl:value-of select="concat(format-number($coverage,'#0.0'), ' %')" /></td>
<td class="mainTableCellGraph">
<xsl:call-template name="detailPercent">
<xsl:with-param name="notVisited" select="$unvisitedPoints" />
<xsl:with-param name="total" select="$sequencePoints" />
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</td>
</tr>
</xsl:template>
<!-- Coverage detail row with indented item name and shrunk graph bar -->
<xsl:template name="coverageIndentedDetail">
<xsl:param name="name" />
<xsl:param name="unvisitedPoints" />
<xsl:param name="sequencePoints" />
<xsl:param name="coverage" />
<xsl:param name="threshold" />
<xsl:param name="styleTweak">padding-left:20px</xsl:param>
<xsl:param name="scale" />
<xsl:param name="sectionId" />
<xsl:param name="sectionHeader" />
<tr>
<xsl:if test="not($sectionHeader)">
<xsl:attribute name="name">
<xsl:value-of select="$sectionId" />
<xsl:text>-content</xsl:text>
</xsl:attribute>
<xsl:attribute name="style"><xsl:text></xsl:text></xsl:attribute>
</xsl:if>
<td class="mainTableCellBottom childTableCellIndentedItem" colspan="2"><xsl:attribute name="style"><xsl:value-of select="$styleTweak"/></xsl:attribute>
<xsl:if test="$sectionHeader">
<img src="{$applicationPath}/images/arrow_minus_small.gif" >
<xsl:attribute name="onclick">toggleDiv(this.id,this.id+'-content')</xsl:attribute>
<xsl:attribute name="id">
<xsl:value-of select="$sectionHeader" />
</xsl:attribute>
<xsl:attribute name="name">
<xsl:text>SectionHeader</xsl:text>
</xsl:attribute>
</img>&#0160;
</xsl:if>
<xsl:value-of select="$name" />
</td>
<td class="mainTableCellBottom mainTableCellData"><xsl:value-of select="$unvisitedPoints" /></td>
<td class="mainTableCellBottom mainTableCellPercent"><xsl:value-of select="concat(format-number($coverage,'#0.0'), ' %')" /></td>
<td class="mainTableCellBottom mainTableCellGraph">
<xsl:call-template name="detailPercent">
<xsl:with-param name="notVisited" select="$unvisitedPoints" />
<xsl:with-param name="total" select="$sequencePoints" />
<xsl:with-param name="threshold" select="$threshold" />
<xsl:with-param name="scale" select="$scale" />
</xsl:call-template>
</td>
</tr>
</xsl:template>
<!-- Exclusions Summary -->
<xsl:template name="exclusionsSummary">
<tr>
<td colspan="5">&#160;</td>
</tr>
<tr>
<td class="exclusionTable mainTableHeaderLeft" colspan="3">Excluded From Coverage Results</td>
<td class="exclusionTable mainTableGraphHeader" colspan="2">All Code Within</td>
</tr>
<xsl:for-each select="./exclusions/exclusion">
<tr>
<td class="mainTableCellBottom exclusionTableCellItem" colspan="3"><xsl:value-of select="@name" /></td>
<td class="mainTableCellBottom mainTableCellGraph" colspan="2"><xsl:value-of select="@category" /></td>
</tr>
</xsl:for-each>
</xsl:template>
<!-- Footer -->
<xsl:template name="footer">
<tr>
<td colspan="5">&#160;</td>
</tr>
</xsl:template>
<!-- Draw % Green/Red/Yellow Bar -->
<xsl:template name="detailPercent">
<xsl:param name="notVisited" />
<xsl:param name="total" />
<xsl:param name="threshold" />
<xsl:param name="scale" />
<xsl:variable name="visited" select="$total - $notVisited" />
<xsl:variable name="coverage" select="$visited div $total * 100"/>
<table cellpadding="0" cellspacing="0">
<tbody>
<tr>
<xsl:if test="$notVisited = 0">
<td class="graphBarVisitedFully" height="14">
<xsl:attribute name="width">
<xsl:value-of select="$scale" />
</xsl:attribute>.</td>
</xsl:if>
<xsl:if test="($visited != 0) and ($notVisited != 0)">
<td class="graphBarVisited" height="14">
<xsl:attribute name="width">
<xsl:value-of select="format-number($coverage div 100 * $scale, '0') - 1" />
</xsl:attribute>.</td>
</xsl:if>
<xsl:if test="$notVisited != 0">
<td height="14">
<xsl:attribute name="class">
<xsl:if test="$coverage &gt;= $threshold">graphBarSatisfactory</xsl:if>
<xsl:if test="$coverage &lt; $threshold">graphBarNotVisited</xsl:if>
</xsl:attribute>
<xsl:attribute name="width">
<xsl:value-of select="format-number($notVisited div $total * $scale, '0')" />
</xsl:attribute>.</td>
</xsl:if>
</tr>
</tbody>
</table>
</xsl:template>
<!-- Legacy NCover coverage section support -->
<xsl:template match="coverage">
<table class="section-table" cellpadding="2" cellspacing="0" border="0" width="98%">
<tr>
<td class="sectionheader" colspan="2">
<!-- Test Coverage Summary -->
NCover - Test Coverage:
<xsl:value-of select=
"round((count(//coverage/module/method/seqpnt[@visitcount > 0]) div count(//coverage/module/method/seqpnt)) * 100)"/>%
</td>
</tr>
<tr>
<td>
<div style="color: maroon; font-size: 10pt; font-weight: bold;">
Untested Code:
</div>
</td>
</tr>
<tr>
<td>
<xsl:apply-templates select="module"/>
</td>
</tr>
</table>
</xsl:template>
<xsl:template match="module">
<br />
<xsl:apply-templates select="method[./seqpnt[@visitcount = 0]]"/>
</xsl:template>
<xsl:template match="method">
<div style="color: maroon; font-size: 10pt; font-weight: bold;">
<xsl:value-of select="@class"/>.<xsl:value-of select="@name"/>
</div>
<table border="1" cellpadding="3" cellspacing="0" bordercolor="black" width="100%">
<xsl:apply-templates select="seqpnt[@visitcount = 0]"/>
</table>
<p/>
</xsl:template>
<xsl:template match="seqpnt">
<tr>
<xsl:if test="@line != 16707566">
<td bgcolor="#FFCCCC" width="15%">
Line: <xsl:value-of select="@line"/>
</td>
<td bgcolor="#FFFFEE">
<xsl:choose>
<!-- if this build is off the default CCNet working directory, shorten the path to show only the bits in version control. -->
<xsl:when test="contains(@document, '\WorkingDirectory\')">
<xsl:value-of select="substring-after(@document, '\WorkingDirectory\')"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="@document"/>
</xsl:otherwise>
</xsl:choose>
</td>
</xsl:if>
</tr>
</xsl:template>
</xsl:stylesheet>