summaryrefslogtreecommitdiff
path: root/build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl
diff options
context:
space:
mode:
authormo <mo.khan@gmail.com>2018-11-04 15:22:16 -0700
committermo <mo.khan@gmail.com>2018-11-04 15:22:16 -0700
commit5ee1f55497a4e30322a56f133f897ecde1612967 (patch)
treebf544e0879234c3623869627d8786776cb19b8e9 /build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl
initial commit.HEADmaster
Diffstat (limited to 'build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl')
-rw-r--r--build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl20
1 files changed, 20 insertions, 0 deletions
diff --git a/build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl b/build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl
new file mode 100644
index 0000000..9525979
--- /dev/null
+++ b/build/tools/gallio/Reports/xsl/Gallio-Report.html.xsl
@@ -0,0 +1,20 @@
+<?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/">
+ <xsl:output method="html" doctype-system="http://www.w3.org/TR/html4/strict.dtd"
+ doctype-public="-//W3C//DTD HTML 4.01//EN" indent="yes" encoding="utf-8" omit-xml-declaration="yes" />
+ <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="html-document" />
+ </xsl:template>
+
+ <!-- Include the base HTML / XHTML report template -->
+ <xsl:include href="Gallio-Report.html+xhtml.xsl" />
+</xsl:stylesheet>