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