onepage.xslt 1.25 KB
<?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<!-- HTML Report Generation Style Sheet                -->
<!-- onepage.xslt                                      -->
<!-- Transformation style sheet to generate a one      -->
<!-- page HTML report from CAnoe's XML report file.    -->
<!-- (c) 2006-2010 Vector Informatik GmbH, Stuttgart   -->

  <!-- Imported files -->
  <xsl:include href="include/varglobal.xslt"/>
  <xsl:include href="include/css.xslt"/>
  <xsl:include href="include/common.xslt"/>
  <xsl:include href="include/expandscript.xslt"/>
  <xsl:include href="include/impl/onepage.xslt"/>
  <xsl:include href="include/impl/common.xslt"/>
  
  <xsl:output method="html" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"/>
  
  <xsl:template match="/">
    <html>
      <head>
        <title>
          <xsl:value-of select="testmodule/title"/>
        </title>
        <xsl:call-template name="cssStyleDef"/>
        <xsl:call-template name="expand-script"/>
      </head>
      <body>
        <xsl:call-template name="report-body"/>
      </body>
    </html>
  </xsl:template>
    
</xsl:stylesheet>