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