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" indent="no" encoding="utf-8" omit-xml-declaration="yes" />
6 <xsl:param name="resourceRoot" select="''" />
7
8 <xsl:variable name="cssDir">/gallio/css/</xsl:variable>
9 <xsl:variable name="jsDir">/gallio/js/</xsl:variable>
10 <xsl:variable name="imgDir">/gallio/img/</xsl:variable>
11 <xsl:variable name="attachmentBrokerUrl">GallioAttachment.aspx?</xsl:variable>
12 <xsl:variable name="condensed" select="1" />
13
14 <xsl:template match="/">
15 <xsl:apply-templates select="//g:report" mode="html-fragment" />
16 </xsl:template>
17
18 <!-- Include the base HTML / XHTML report template -->
19 <xsl:include href="Gallio-Report.html+xhtml.xsl" />
20</xsl:stylesheet>