<?xml version="1.0" encoding="ISO-8859-1" standalone="yes" ?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" exclude-result-prefixes="exsl" extension-element-prefixes="exsl">
<!-- Multiple pages HTML Report Style Sheet                      -->
<!-- multipage.xslt                                              -->
<!-- (c) 2007-2014 Vector Informatik GmbH, Stuttgart             -->
<!-- EXECUTE PRE ../report/multipage.bat -->

    <xsl:import href="../report/include/common.xslt"/>
    <xsl:import href="../report/include/varglobal.xslt"/>
    <xsl:import href="../report/include/css.xslt"/>
    <xsl:import href="../report/include/expandscript.xslt"/>
    <xsl:import href="../report/include/impl/extended.xslt"/>
    <xsl:import href="../report/include/impl/multipage.xslt"/>
    <xsl:include href="include/common.xslt"/>
    <xsl:include href="include/impl/common.xslt"/>
    <xsl:include href="include/impl/extended.xslt"/>
    <xsl:include href="include/impl/multipage.xslt"/>

    <xsl:strip-space elements="timestamp"/>
    
    <xsl:output method="html" indent="yes" doctype-public="-//W3C//DTD HTML 4.01 Frameset//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd"/>
    
    <xsl:variable name="RootFolder">
      <xsl:text>../</xsl:text>
    </xsl:variable>
  
    <xsl:template match="/">
      <xsl:call-template name="contentFrames"/>
      <xsl:call-template name="htmlFrames"/>
    </xsl:template>
    
    <xsl:template name="contentFrames">
      <!-- Frameset for testreport with navigation elements -->
      <html>
        <head>
          <title>
            <xsl:value-of select="/*/title"/>
          </title>
        </head>
        <frameset cols="100%">
          <frameset rows="100%">
            <frame src="{$ReportPartsSubdirUTF8}/Frame_Report.html" name="Report"/>
          </frameset>
        </frameset>
      </html>
    </xsl:template>
    
    <xsl:template name="htmlFrames">
      <exsl:document href="{$ReportPartsSubdir}/extendedNavigation.css" method="text">
        <xsl:call-template name="cssStyleDef"/>
      </exsl:document>
      
      <!-- Frame with the actual report at the right side-->
      <exsl:document href="{$ReportPartsSubdir}/Frame_Report.html" method="html" indent="yes" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <xsl:call-template name="htmlFrameReport"/>
      </exsl:document>
      
      <!-- Frame with navigation bar at the upper left side -->
      <exsl:document href="{$ReportPartsSubdir}/Frame_NavTree.html" method="html" indent="yes" doctype-public="-//W3C//DTD XHTML 1.0 Transitional//EN" doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
        <xsl:call-template name="htmlFrameNavTree"/>
      </exsl:document>
    </xsl:template>

</xsl:stylesheet>
