diff options
| author | mo <mo.khan@gmail.com> | 2018-11-04 15:22:16 -0700 |
|---|---|---|
| committer | mo <mo.khan@gmail.com> | 2018-11-04 15:22:16 -0700 |
| commit | 5ee1f55497a4e30322a56f133f897ecde1612967 (patch) | |
| tree | bf544e0879234c3623869627d8786776cb19b8e9 /build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl | |
Diffstat (limited to 'build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl')
| -rw-r--r-- | build/tools/gallio/Reports/xsl/Gallio-Report.xhtml.xsl | 21 |
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> |
