master
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="yes" 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
15 <xsl:template match="/">
16 <xsl:apply-templates select="/g:report" mode="xhtml-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>