summaryrefslogtreecommitdiff
path: root/build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl
diff options
context:
space:
mode:
Diffstat (limited to 'build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl')
-rw-r--r--build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl21
1 files changed, 21 insertions, 0 deletions
diff --git a/build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl b/build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl
new file mode 100644
index 0000000..3ee90b1
--- /dev/null
+++ b/build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl
@@ -0,0 +1,21 @@
+<?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="yes" 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: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>