home *** CD-ROM | disk | FTP | other *** search
- <?xml version="1.0" encoding="US-ASCII"?>
- <!--This file was created automatically by html2xhtml-->
- <!--from the HTML stylesheets. Do not edit this file.-->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:exsl="http://exslt.org/common" exclude-result-prefixes="exsl" version="1.0">
-
- <!-- ********************************************************************
- $Id: footnote.xsl,v 1.1.2.3 2002/09/04 13:55:37 jdj Exp $
- ********************************************************************
-
- This file is part of the XSL DocBook Stylesheet distribution.
- See ../README or http://nwalsh.com/docbook/xsl/ for copyright
- and other information.
-
- ******************************************************************** -->
-
- <xsl:template match="footnote">
- <xsl:variable name="name">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
- <xsl:variable name="href">
- <xsl:text>#ftn.</xsl:text>
- <xsl:call-template name="object.id"/>
- </xsl:variable>
-
- <xsl:choose>
- <xsl:when test="ancestor::tgroup">
- <sup xmlns="http://www.w3.org/1999/xhtml">
- <xsl:text>[</xsl:text>
- <a id="{$name}" href="{$href}">
- <xsl:apply-templates select="." mode="footnote.number"/>
- </a>
- <xsl:text>]</xsl:text>
- </sup>
- </xsl:when>
- <xsl:otherwise>
- <sup xmlns="http://www.w3.org/1999/xhtml">
- <xsl:text>[</xsl:text>
- <a id="{$name}" href="{$href}">
- <xsl:apply-templates select="." mode="footnote.number"/>
- </a>
- <xsl:text>]</xsl:text>
- </sup>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="footnoteref">
- <xsl:variable name="targets" select="key('id',@linkend)"/>
- <xsl:variable name="footnote" select="$targets[1]"/>
- <xsl:variable name="href">
- <xsl:text>#ftn.</xsl:text>
- <xsl:call-template name="object.id">
- <xsl:with-param name="object" select="$footnote"/>
- </xsl:call-template>
- </xsl:variable>
- <sup xmlns="http://www.w3.org/1999/xhtml">
- <xsl:text>[</xsl:text>
- <a href="{$href}">
- <xsl:apply-templates select="$footnote" mode="footnote.number"/>
- </a>
- <xsl:text>]</xsl:text>
- </sup>
- </xsl:template>
-
- <xsl:template match="footnote" mode="footnote.number">
- <xsl:choose>
- <xsl:when test="ancestor::tgroup">
- <xsl:number level="any" from="table|informaltable" format="a"/>
- </xsl:when>
- <xsl:when test="ancestor::refentry">
- <xsl:number level="any" from="refentry" format="1"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:variable name="pfoot" select="preceding::footnote"/>
- <xsl:variable name="ptfoot" select="preceding::table//footnote |preceding::informaltable//footnote"/>
- <xsl:number value="count($pfoot) - count($ptfoot) + 1" format="1"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <!-- ==================================================================== -->
-
- <xsl:template match="footnote/para[1]|footnote/simpara[1]" priority="2">
- <!-- this only works if the first thing in a footnote is a para, -->
- <!-- which is ok, because it usually is. -->
- <xsl:variable name="name">
- <xsl:text>ftn.</xsl:text>
- <xsl:call-template name="object.id">
- <xsl:with-param name="object" select="ancestor::footnote"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="href">
- <xsl:text>#</xsl:text>
- <xsl:call-template name="object.id">
- <xsl:with-param name="object" select="ancestor::footnote"/>
- </xsl:call-template>
- </xsl:variable>
- <p xmlns="http://www.w3.org/1999/xhtml">
- <sup>
- <xsl:text>[</xsl:text>
- <a id="{$name}" href="{$href}">
- <xsl:apply-templates select="ancestor::footnote" mode="footnote.number"/>
- </a>
- <xsl:text>] </xsl:text>
- </sup>
- <xsl:apply-templates/>
- </p>
- </xsl:template>
-
- <!-- ==================================================================== -->
-
- <xsl:template match="*" mode="footnote.body.number">
- <xsl:variable name="name">
- <xsl:text>ftn.</xsl:text>
- <xsl:call-template name="object.id">
- <xsl:with-param name="object" select="ancestor::footnote"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="href">
- <xsl:text>#</xsl:text>
- <xsl:call-template name="object.id">
- <xsl:with-param name="object" select="ancestor::footnote"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="footnote.mark">
- <sup xmlns="http://www.w3.org/1999/xhtml">
- <xsl:text>[</xsl:text>
- <a id="{$name}" href="{$href}">
- <xsl:apply-templates select="ancestor::footnote" mode="footnote.number"/>
- </a>
- <xsl:text>] </xsl:text>
- </sup>
- </xsl:variable>
-
- <xsl:variable name="html">
- <xsl:apply-templates select="."/>
- </xsl:variable>
-
- <xsl:choose>
- <xsl:when test="function-available('exsl:node-set')">
- <xsl:variable name="html-nodes" select="exsl:node-set($html)"/>
- <xsl:choose>
- <xsl:when test="$html-nodes//p">
- <xsl:apply-templates select="$html-nodes" mode="insert.html.p">
- <xsl:with-param name="mark" select="$footnote.mark"/>
- </xsl:apply-templates>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates select="$html-nodes" mode="insert.html.text">
- <xsl:with-param name="mark" select="$footnote.mark"/>
- </xsl:apply-templates>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:when>
- <xsl:otherwise>
- <xsl:copy-of select="$html"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <!-- ==================================================================== -->
-
- <!--
- <xsl:template name="count-element-from">
- <xsl:param name="from" select=".."/>
- <xsl:param name="to" select="."/>
- <xsl:param name="count" select="0"/>
- <xsl:param name="list" select="$from/following::*[name(.)=name($to)]
- |$from/descendant-or-self::*[name(.)=name($to)]"/>
-
- <xsl:choose>
- <xsl:when test="not($list)">
- <xsl:text>-1</xsl:text>
- </xsl:when>
- <xsl:when test="$list[1] = $to">
- <xsl:value-of select="$count + 1"/>
- </xsl:when>
- <xsl:otherwise>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- -->
-
- <!-- ==================================================================== -->
-
- <xsl:template name="process.footnotes">
- <xsl:variable name="footnotes" select=".//footnote"/>
- <xsl:variable name="table.footnotes" select=".//tgroup//footnote"/>
-
- <!-- Only bother to do this if there's at least one non-table footnote -->
- <xsl:if test="count($footnotes)>count($table.footnotes)">
- <div xmlns="http://www.w3.org/1999/xhtml" class="footnotes">
- <br/>
- <hr width="100" align="left"/>
- <xsl:apply-templates select="$footnotes" mode="process.footnote.mode"/>
- </div>
- </xsl:if>
- </xsl:template>
-
- <xsl:template name="process.chunk.footnotes">
- <!-- nop -->
- </xsl:template>
-
- <xsl:template match="footnote" name="process.footnote" mode="process.footnote.mode">
- <xsl:choose>
- <xsl:when test="local-name(*[1]) = 'para' or local-name(*[1]) = 'simpara'">
- <div xmlns="http://www.w3.org/1999/xhtml" class="{name(.)}">
- <xsl:apply-templates/>
- </div>
- </xsl:when>
-
- <xsl:when test="$html.cleanup != 0 and function-available('exsl:node-set')">
- <div xmlns="http://www.w3.org/1999/xhtml" class="{name(.)}">
- <xsl:apply-templates select="*[1]" mode="footnote.body.number"/>
- <xsl:apply-templates select="*[position() > 1]"/>
- </div>
- </xsl:when>
-
- <xsl:otherwise>
- <xsl:message>
- <xsl:text>Warning: footnote number may not be generated </xsl:text>
- <xsl:text>correctly; </xsl:text>
- <xsl:value-of select="local-name(*[1])"/>
- <xsl:text> unexpected as first child of footnote.</xsl:text>
- </xsl:message>
- <div xmlns="http://www.w3.org/1999/xhtml" class="{name(.)}">
- <xsl:apply-templates/>
- </div>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="tgroup//footnote" mode="process.footnote.mode">
- </xsl:template>
-
- <xsl:template match="footnote" mode="table.footnote.mode">
- <xsl:call-template name="process.footnote"/>
- </xsl:template>
-
- </xsl:stylesheet>
-