23 lines
1.2 KiB
XML
23 lines
1.2 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<xsl:stylesheet version="1.0"
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
xmlns:g="http://www.gallio.org/"
|
|
xmlns="http://www.w3.org/1999/xhtml">
|
|
<xsl:output method="xml" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
|
|
doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN" indent="no" encoding="utf-8" />
|
|
<xsl:param name="resourceRoot" select="''" />
|
|
|
|
<xsl:variable name="cssDir"><xsl:if test="$resourceRoot != ''"><xsl:value-of select="$resourceRoot"/>/</xsl:if>css/</xsl:variable>
|
|
<xsl:variable name="jsDir"><xsl:if test="$resourceRoot != ''"><xsl:value-of select="$resourceRoot"/>/</xsl:if>js/</xsl:variable>
|
|
<xsl:variable name="imgDir"><xsl:if test="$resourceRoot != ''"><xsl:value-of select="$resourceRoot"/>/</xsl:if>img/</xsl:variable>
|
|
<xsl:variable name="attachmentBrokerUrl"></xsl:variable>
|
|
<xsl:variable name="condensed" select="0" />
|
|
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="/g:report" mode="xhtml-document" />
|
|
</xsl:template>
|
|
|
|
<!-- Include the base HTML / XHTML report template -->
|
|
<xsl:include href="Gallio-Report.html+xhtml.xsl" />
|
|
</xsl:stylesheet>
|