summaryrefslogtreecommitdiff
path: root/docbook-xsl-1.75.2/slides/xhtml/flat.xsl
diff options
context:
space:
mode:
authormguetlein <martin.guetlein@gmail.com>2010-12-09 16:39:22 +0100
committermguetlein <martin.guetlein@gmail.com>2010-12-09 16:39:22 +0100
commit3fd24182bee64ea2252aa494e5930c9c9924d1d2 (patch)
tree9af11d6624bfe0566f768b0a0a227d50216327dc /docbook-xsl-1.75.2/slides/xhtml/flat.xsl
parent7459525cbf5cc8ed4afcbaa3a0749828098a8f48 (diff)
add significance tests to reports, some more report modifications
Diffstat (limited to 'docbook-xsl-1.75.2/slides/xhtml/flat.xsl')
-rw-r--r--docbook-xsl-1.75.2/slides/xhtml/flat.xsl71
1 files changed, 0 insertions, 71 deletions
diff --git a/docbook-xsl-1.75.2/slides/xhtml/flat.xsl b/docbook-xsl-1.75.2/slides/xhtml/flat.xsl
deleted file mode 100644
index e0c57e9..0000000
--- a/docbook-xsl-1.75.2/slides/xhtml/flat.xsl
+++ /dev/null
@@ -1,71 +0,0 @@
-<?xml version="1.0" encoding="ASCII"?>
-<!--This file was created automatically by html2xhtml-->
-<!--from the HTML stylesheets.-->
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns="http://www.w3.org/1999/xhtml" version="1.0">
-
-<xsl:import href="slides-common.xsl"/>
-
-<xsl:template match="/">
- <html>
- <head>
- <title><xsl:value-of select="/slides/slidesinfo/title"/></title>
- </head>
- <body>
- <xsl:apply-templates/>
- </body>
- </html>
-</xsl:template>
-
-<xsl:template match="slidesinfo">
- <xsl:variable name="id">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
-
- <div id="{$id}" class="titlepage">
- <div class="titlepage-body">
- <xsl:call-template name="titlepage-body"/>
- </div>
- </div>
-</xsl:template>
-
-<xsl:template match="slides" mode="toc">
- <!-- nop -->
-</xsl:template>
-
-<xsl:template match="foil">
- <xsl:variable name="id">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
-
- <div class="{name(.)}" id="{$id}">
- <div class="foil-body">
- <xsl:call-template name="foil-body"/>
- </div>
- <xsl:call-template name="process.footnotes"/>
- </div>
-</xsl:template>
-
-<xsl:template match="foilgroup">
- <xsl:variable name="id">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
-
- <div class="{name(.)}" id="{$id}">
- <div class="foilgroup-body">
- <xsl:call-template name="foilgroup-body"/>
- </div>
- <xsl:call-template name="process.footnotes"/>
- </div>
-
- <xsl:apply-templates select="foil"/>
-</xsl:template>
-
-<xsl:template match="author" mode="titlepage.mode">
- <div class="{name(.)}">
- <h2 class="{name(.)}"><xsl:call-template name="person.name"/></h2>
- <xsl:apply-templates mode="titlepage.mode" select="./contrib"/>
- <xsl:apply-templates mode="titlepage.mode" select="./affiliation"/>
- </div>
-</xsl:template>
-
-</xsl:stylesheet>