1N/A<?xml version="1.0"?>
1N/A<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"
1N/A xmlns:lxslt="http://xml.apache.org/xslt"
1N/A xmlns:redirect="org.apache.xalan.lib.Redirect"
1N/A extension-element-prefixes="redirect">
1N/A<xsl:output method="html" indent="yes"/>
1N/A<xsl:decimal-format decimal-separator="." grouping-separator="," />
1N/A<!--
1N/A Licensed to the Apache Software Foundation (ASF) under one or more
1N/A contributor license agreements. See the NOTICE file distributed with
1N/A this work for additional information regarding copyright ownership.
1N/A The ASF licenses this file to You under the Apache License, Version 2.0
1N/A (the "License"); you may not use this file except in compliance with
1N/A the License. You may obtain a copy of the License at
1N/A
1N/A http://www.apache.org/licenses/LICENSE-2.0
1N/A
1N/A Unless required by applicable law or agreed to in writing, software
1N/A distributed under the License is distributed on an "AS IS" BASIS,
1N/A WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1N/A See the License for the specific language governing permissions and
1N/A limitations under the License.
1N/A-->
1N/A
1N/A<!--
1N/A
1N/A Sample stylesheet to be used with JProbe 3.0 XML output.
1N/A
1N/A It creates a set of HTML files a la javadoc where you can browse easily
1N/A through all packages and classes.
1N/A
1N/A It is best used with JProbe Coverage Ant task that gives you the benefit
1N/A of a reference classpath so that you have the list of classes/methods
1N/A that are not used at all in a given classpath.
1N/A
1N/A @author Stephane Bailliez <a href="mailto:sbailliez@apache.org"/>
1N/A
1N/A-->
1N/A
1N/A<!-- default output directory is current directory -->
1N/A<xsl:param name="output.dir" select="'.'"/>
1N/A
1N/A<!-- ======================================================================
1N/A Root element
1N/A ======================================================================= -->
1N/A<xsl:template match="/snapshot">
1N/A <!-- create the index.html -->
1N/A <redirect:write file="{$output.dir}/index.html">
1N/A <xsl:call-template name="index.html"/>
1N/A </redirect:write>
1N/A
1N/A <!-- create the stylesheet.css -->
1N/A <redirect:write file="{$output.dir}/stylesheet.css">
1N/A <xsl:call-template name="stylesheet.css"/>
1N/A </redirect:write>
1N/A
1N/A <!-- create the overview-packages.html at the root -->
1N/A <redirect:write file="{$output.dir}/overview-summary.html">
1N/A <xsl:apply-templates select="." mode="overview.packages"/>
1N/A </redirect:write>
1N/A
1N/A <!-- create the all-packages.html at the root -->
1N/A <redirect:write file="{$output.dir}/overview-frame.html">
1N/A <xsl:apply-templates select="." mode="all.packages"/>
1N/A </redirect:write>
1N/A
1N/A <!-- create the all-classes.html at the root -->
1N/A <redirect:write file="{$output.dir}/allclasses-frame.html">
1N/A <xsl:apply-templates select="." mode="all.classes"/>
1N/A </redirect:write>
1N/A
1N/A <!-- process all packages -->
1N/A <xsl:apply-templates select="/package" mode="write"/>
1N/A</xsl:template>
1N/A
1N/A<!-- =======================================================================
1N/A Frameset definition. Entry point for the report.
1N/A 3 frames: packageListFrame, classListFrame, classFrame
1N/A ======================================================================= -->
1N/A<xsl:template name="index.html">
1N/A<html>
1N/A <head><title>Coverage Results.</title></head>
1N/A <frameset cols="20%,80%">
1N/A <frameset rows="30%,70%">
1N/A <frame src="overview-frame.html" name="packageListFrame"/>
1N/A <frame src="allclasses-frame.html" name="classListFrame"/>
1N/A </frameset>
1N/A <frame src="overview-summary.html" name="classFrame"/>
1N/A </frameset>
1N/A <noframes>
1N/A <h2>Frame Alert</h2>
1N/A <p>
1N/A This document is designed to be viewed using the frames feature. If you see this message, you are using a non-frame-capable web client.
1N/A </p>
1N/A </noframes>
1N/A</html>
1N/A</xsl:template>
1N/A
1N/A<!-- =======================================================================
1N/A Stylesheet CSS used
1N/A ======================================================================= -->
1N/A<!-- this is the stylesheet css to use for nearly everything -->
1N/A<xsl:template name="stylesheet.css">
1N/A .bannercell {
1N/A border: 0px;
1N/A padding: 0px;
1N/A }
1N/A body {
1N/A margin-left: 10;
1N/A margin-right: 10;
1N/A font:normal 80% arial,helvetica,sanserif;
1N/A background-color:#FFFFFF;
1N/A color:#000000;
1N/A }
1N/A .a td {
1N/A background: #efefef;
1N/A }
1N/A .b td {
1N/A background: #fff;
1N/A }
1N/A th, td {
1N/A text-align: left;
1N/A vertical-align: top;
1N/A }
1N/A th {
1N/A font-weight:bold;
1N/A background: #ccc;
1N/A color: black;
1N/A }
1N/A table, th, td {
1N/A font-size:100%;
1N/A border: none
1N/A }
1N/A table.log tr td, tr th {
1N/A
1N/A }
1N/A h2 {
1N/A font-weight:bold;
1N/A font-size:140%;
1N/A margin-bottom: 5;
1N/A }
1N/A h3 {
1N/A font-size:100%;
1N/A font-weight:bold;
1N/A background: #525D76;
1N/A color: white;
1N/A text-decoration: none;
1N/A padding: 5px;
1N/A margin-right: 2px;
1N/A margin-left: 2px;
1N/A margin-bottom: 0;
1N/A }
1N/A</xsl:template>
1N/A
1N/A<!-- =======================================================================
1N/A List of all classes in all packages
1N/A This will be the first page in the classListFrame
1N/A ======================================================================= -->
1N/A<xsl:template match="snapshot" mode="all.classes">
1N/A <html>
1N/A <head>
1N/A <xsl:call-template name="create.stylesheet.link"/>
1N/A </head>
1N/A <body>
1N/A <h2>Classes</h2>
1N/A <table width="100%">
1N/A <xsl:for-each select="package/class">
1N/A <xsl:sort select="@name"/>
1N/A <xsl:variable name="package.name" select="(ancestor::package)[last()]/@name"/>
1N/A <xsl:variable name="link">
1N/A <xsl:if test="not($package.name='')">
1N/A <xsl:value-of select="translate($package.name,'.','/')"/><xsl:text>/</xsl:text>
1N/A </xsl:if><xsl:value-of select="@name"/><xsl:text>.html</xsl:text>
1N/A </xsl:variable>
1N/A <tr>
1N/A <td nowrap="nowrap">
1N/A <a target="classFrame" href="{$link}"><xsl:value-of select="@name"/></a>
1N/A </td>
1N/A </tr>
1N/A </xsl:for-each>
1N/A </table>
1N/A </body>
1N/A </html>
1N/A</xsl:template>
1N/A
1N/A<!-- list of all packages -->
1N/A<xsl:template match="snapshot" mode="all.packages">
1N/A <html>
1N/A <head>
1N/A <xsl:call-template name="create.stylesheet.link"/>
1N/A </head>
1N/A <body>
1N/A <h2><a href="overview-summary.html" target="classFrame">Home</a></h2>
1N/A <h2>Packages</h2>
1N/A <table width="100%">
1N/A <xsl:for-each select="package">
1N/A <xsl:sort select="@name" order="ascending"/>
1N/A <tr>
1N/A <td nowrap="nowrap">
1N/A <a href="{translate(@name,'.','/')}/package-summary.html" target="classFrame">
1N/A <xsl:value-of select="@name"/>
1N/A </a>
1N/A </td>
1N/A </tr>
1N/A </xsl:for-each>
1N/A </table>
1N/A </body>
1N/A </html>
1N/A</xsl:template>
1N/A
1N/A<!-- overview of statistics in packages -->
1N/A<xsl:template match="snapshot" mode="overview.packages">
1N/A <html>
1N/A <head>
1N/A <xsl:call-template name="create.stylesheet.link"/>
1N/A </head>
1N/A <body onload="open('allclasses-frame.html','classListFrame')">
1N/A <xsl:call-template name="pageHeader"/>
1N/A <h3>Summary</h3>
1N/A <table class="log" cellpadding="5" cellspacing="2" width="100%">
1N/A <tr>
1N/A <!--th width="10%" nowrap="nowrap">Date</th>
1N/A <th width="10%" nowrap="nowrap">Elapsed time</th-->
1N/A <th width="10%" nowrap="nowrap">Reported Classes</th>
1N/A <th width="10%" nowrap="nowrap">Methods Hit</th>
1N/A <th width="10%" nowrap="nowrap">Lines Hit</th>
1N/A </tr>
1N/A <tr class="a">
1N/A <!--td nowrap="nowrap"><xsl:value-of select="execution_log/@program_start"/></td>
1N/A <td><xsl:value-of select="format-number(execution_log/@elapsed_time div 1000,'0.0')"/>secs</td-->
1N/A <td><xsl:value-of select="count(package/class)"/></td>
1N/A <td><xsl:value-of select="format-number(cov.data/@hit_methods div cov.data/@total_methods,'0.0%')"/></td>
1N/A <td><xsl:value-of select="format-number(cov.data/@hit_lines div cov.data/@total_lines,'0.0%')"/></td>
1N/A </tr>
1N/A </table>
1N/A <table border="0" width="100%">
1N/A <tr>
1N/A <td style="text-align: justify;">
1N/A To ensure accurate test runs on Java applications, developers need to know how much of
1N/A the code has been tested, and where to find any untested code. Coverage helps you
1N/A locate untested code, and measure precisely how much code has been exercised.
1N/A The result is a higher quality application in a shorter period of time.
1N/A <p/>
1N/A </td>
1N/A </tr>
1N/A </table>
1N/A
1N/A <h3>Packages</h3>
1N/A <table class="log" cellpadding="5" cellspacing="2" width="100%">
1N/A <xsl:apply-templates select="package[1]" mode="stats.header"/>
1N/A <!-- display packages and sort them via their coverage rate -->
1N/A <xsl:for-each select="package">
1N/A <xsl:sort data-type="number" select="cov.data/@hit_lines div cov.data/@total_lines"/>
1N/A <tr>
1N/A <xsl:call-template name="alternate-row"/>
1N/A <td><a href="{translate(@name,'.','/')}/package-summary.html"><xsl:value-of select="@name"/></a></td>
1N/A <td><xsl:value-of select="format-number(cov.data/@hit_methods div cov.data/@total_methods,'0.0%')"/></td>
1N/A <td><xsl:value-of select="format-number(cov.data/@hit_lines div cov.data/@total_lines,'0.0%')"/></td>
1N/A </tr>
1N/A </xsl:for-each>
1N/A </table>
1N/A <xsl:call-template name="pageFooter"/>
1N/A </body>
1N/A </html>
1N/A</xsl:template>
1N/A
1N/A<!--
detailed info for a package. It will output the list of classes
, the summary page, and the info for each class
-->
<xsl:template match="package" mode="write">
<xsl:variable name="package.dir">
<xsl:if test="not(@name = '')"><xsl:value-of select="translate(@name,'.','/')"/></xsl:if>
<xsl:if test="@name = ''">.</xsl:if>
</xsl:variable>
<!-- create a classes-list.html in the package directory -->
<redirect:write file="{$output.dir}/{$package.dir}/package-frame.html">
<xsl:apply-templates select="." mode="classes.list"/>
</redirect:write>
<!-- create a package-summary.html in the package directory -->
<redirect:write file="{$output.dir}/{$package.dir}/package-summary.html">
<xsl:apply-templates select="." mode="package.summary"/>
</redirect:write>
<!-- for each class, creates a @name.html -->
<xsl:for-each select="class">
<redirect:write file="{$output.dir}/{$package.dir}/{@name}.html">
<xsl:apply-templates select="." mode="class.details"/>
</redirect:write>
</xsl:for-each>
</xsl:template>
<!-- list of classes in a package -->
<xsl:template match="package" mode="classes.list">
<html>
<HEAD>
<xsl:call-template name="create.stylesheet.link">
<xsl:with-param name="package.name" select="@name"/>
</xsl:call-template>
</HEAD>
<BODY>
<table width="100%">
<tr>
<td nowrap="nowrap">
<H2><a href="package-summary.html" target="classFrame"><xsl:value-of select="@name"/></a></H2>
</td>
</tr>
</table>
<H2>Classes</H2>
<TABLE WIDTH="100%">
<xsl:for-each select="class">
<xsl:sort select="@name"/>
<tr>
<td nowrap="nowrap">
<a href="{@name}.html" target="classFrame"><xsl:value-of select="@name"/></a>
</td>
</tr>
</xsl:for-each>
</TABLE>
</BODY>
</html>
</xsl:template>
<!-- summary of a package -->
<xsl:template match="package" mode="package.summary">
<HTML>
<HEAD>
<xsl:call-template name="create.stylesheet.link">
<xsl:with-param name="package.name" select="@name"/>
</xsl:call-template>
</HEAD>
<!-- when loading this package, it will open the classes into the frame -->
<BODY onload="open('package-frame.html','classListFrame')">
<xsl:call-template name="pageHeader"/>
<h3>Package <xsl:value-of select="@name"/></h3>
<table class="log" cellpadding="5" cellspacing="2" width="100%">
<xsl:apply-templates select="." mode="stats.header"/>
<xsl:apply-templates select="." mode="stats"/>
</table>
<xsl:if test="count(class) &gt; 0">
<H3>Classes</H3>
<table class="log" cellpadding="5" cellspacing="2" width="100%">
<xsl:apply-templates select="." mode="stats.header"/>
<xsl:apply-templates select="class" mode="stats">
<xsl:sort data-type="number" select="cov.data/@hit_lines div cov.data/@total_lines"/>
</xsl:apply-templates>
</table>
</xsl:if>
<xsl:call-template name="pageFooter"/>
</BODY>
</HTML>
</xsl:template>
<!-- details of a class -->
<xsl:template match="class" mode="class.details">
<xsl:variable name="package.name" select="(ancestor::package)[last()]/@name"/>
<HTML>
<HEAD>
<xsl:call-template name="create.stylesheet.link">
<xsl:with-param name="package.name" select="$package.name"/>
</xsl:call-template>
</HEAD>
<BODY>
<xsl:call-template name="pageHeader"/>
<H3>Class <xsl:if test="not($package.name = '')"><xsl:value-of select="$package.name"/>.</xsl:if><xsl:value-of select="@name"/></H3>
<!-- class summary -->
<table class="log" cellpadding="5" cellspacing="2" width="100%">
<xsl:apply-templates select="." mode="stats.header"/>
<xsl:apply-templates select="." mode="stats"/>
</table>
<!-- details of methods -->
<H3>Methods</H3>
<table class="log" cellpadding="5" cellspacing="2" width="100%">
<xsl:apply-templates select="method[1]" mode="stats.header"/>
<xsl:apply-templates select="method" mode="stats">
<xsl:sort data-type="number" select="cov.data/@hit_lines div cov.data/@total_lines"/>
</xsl:apply-templates>
</table>
<xsl:call-template name="pageFooter"/>
</BODY>
</HTML>
</xsl:template>
<!-- Page Header -->
<xsl:template name="pageHeader">
<!-- jakarta logo -->
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td class="bannercell" rowspan="2">
<a href="http://jakarta.apache.org/">
<img src="http://jakarta.apache.org/images/jakarta-logo.gif" alt="http://jakarta.apache.org" align="left" border="0"/>
</a>
</td>
<td style="text-align:right"><h2>Source Code Coverage</h2></td>
</tr>
<tr>
<td style="text-align:right">Designed for use with <a href='http://www.sitraka.com/jprobe'>Sitraka JProbe</a> and <a href='http://jakarta.apache.org'>Ant</a>.</td>
</tr>
</table>
<hr size="1"/>
</xsl:template>
<!-- Page Footer -->
<xsl:template name="pageFooter">
</xsl:template>
<xsl:template name="table.header">
<tr>
<th width="80%">Name</th>
<th width="10%" nowrap="nowrap">Methods Hit</th>
<th width="10%" nowrap="nowrap">Lines Hit</th>
</tr>
</xsl:template>
<xsl:template match="method" mode="stats.header">
<tr>
<th width="90%">Name</th>
<th width="10%" nowrap="nowrap">Lines Hit</th>
</tr>
</xsl:template>
<xsl:template match="method" mode="stats">
<tr>
<xsl:call-template name="alternate-row"/>
<td><xsl:value-of select="@name"/></td>
<td>
<xsl:value-of select="format-number(cov.data/@hit_lines div cov.data/@total_lines,'0.0%')"/>
</td>
</tr>
</xsl:template>
<xsl:template match="package|class" mode="stats.header">
<tr>
<th width="80%">Name</th>
<th width="10%" nowrap="nowrap">Methods Hit</th>
<th width="10%" nowrap="nowrap">Lines Hit</th>
</tr>
</xsl:template>
<xsl:template match="package|class" mode="stats">
<tr>
<xsl:call-template name="alternate-row"/>
<td><xsl:value-of select="@name"/></td>
<td><xsl:value-of select="format-number(cov.data/@hit_methods div cov.data/@total_methods,'0.0%')"/></td>
<td><xsl:value-of select="format-number(cov.data/@hit_lines div cov.data/@total_lines,'0.0%')"/></td>
</tr>
</xsl:template>
<!--
transform string like a.b.c to ../../../
@param path the path to transform into a descending directory path
-->
<xsl:template name="path">
<xsl:param name="path"/>
<xsl:if test="contains($path,'.')">
<xsl:text>../</xsl:text>
<xsl:call-template name="path">
<xsl:with-param name="path"><xsl:value-of select="substring-after($path,'.')"/></xsl:with-param>
</xsl:call-template>
</xsl:if>
<xsl:if test="not(contains($path,'.')) and not($path = '')">
<xsl:text>../</xsl:text>
</xsl:if>
</xsl:template>
<!-- create the link to the stylesheet based on the package name -->
<xsl:template name="create.stylesheet.link">
<xsl:param name="package.name"/>
<LINK REL ="stylesheet" TYPE="text/css" TITLE="Style"><xsl:attribute name="href"><xsl:if test="not($package.name = 'unnamed package')"><xsl:call-template name="path"><xsl:with-param name="path" select="$package.name"/></xsl:call-template></xsl:if>stylesheet.css</xsl:attribute></LINK>
</xsl:template>
<!-- alternated row style -->
<xsl:template name="alternate-row">
<xsl:attribute name="class">
<xsl:if test="position() mod 2 = 1">a</xsl:if>
<xsl:if test="position() mod 2 = 0">b</xsl:if>
</xsl:attribute>
</xsl:template>
</xsl:stylesheet>