main
 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                xmlns:g="http://www.gallio.org/">
 5  <xsl:output method="html" doctype-system="http://www.w3.org/TR/html4/strict.dtd"
 6              doctype-public="-//W3C//DTD HTML 4.01//EN" indent="no" encoding="utf-8" omit-xml-declaration="yes" />
 7  <xsl:param name="resourceRoot" select="''" />
 8
 9  <xsl:variable name="cssDir"><xsl:if test="$resourceRoot != ''"><xsl:value-of select="$resourceRoot"/>/</xsl:if>css/</xsl:variable>
10  <xsl:variable name="jsDir"><xsl:if test="$resourceRoot != ''"><xsl:value-of select="$resourceRoot"/>/</xsl:if>js/</xsl:variable>
11  <xsl:variable name="imgDir"><xsl:if test="$resourceRoot != ''"><xsl:value-of select="$resourceRoot"/>/</xsl:if>img/</xsl:variable>
12  <xsl:variable name="attachmentBrokerUrl"></xsl:variable>
13  <xsl:variable name="condensed" select="1" />
14
15  <xsl:template match="/">
16    <xsl:apply-templates select="/g:report" mode="html-document" />
17  </xsl:template>
18  
19  <!-- Include the base HTML / XHTML report template -->
20  <xsl:include href="Gallio-Report.html+xhtml.xsl" />
21</xsl:stylesheet>