123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462 |
- <?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:doc="http://nwalsh.com/xsl/documentation/1.0" xmlns="http://www.w3.org/1999/xhtml" version="1.0" exclude-result-prefixes="doc">
- <!-- ********************************************************************
- $Id$
- ********************************************************************
- This file is part of the XSL DocBook Stylesheet distribution.
- See ../README or http://docbook.sf.net/release/xsl/current/ for
- copyright and other information.
- ******************************************************************** -->
- <!-- ==================================================================== -->
- <xsl:import href="docbook.xsl"/>
- <xsl:import href="chunk-common.xsl"/>
- <xsl:template name="chunk">
- <xsl:param name="node" select="."/>
- <!-- returns 1 if $node is a chunk -->
- <xsl:variable name="id">
- <xsl:call-template name="object.id">
- <xsl:with-param name="object" select="$node"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="chunks" select="document($chunk.toc,/)"/>
- <xsl:choose>
- <xsl:when test="$chunks//tocentry[@linkend=$id]">1</xsl:when>
- <xsl:otherwise>0</xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <!-- ==================================================================== -->
- <xsl:template match="*" mode="chunk-filename">
- <!-- returns the filename of a chunk -->
- <xsl:variable name="id">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
- <xsl:variable name="chunks" select="document($chunk.toc,/)"/>
- <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/>
- <xsl:variable name="filename">
- <xsl:call-template name="pi.dbhtml_filename">
- <xsl:with-param name="node" select="$chunk"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="$chunk">
- <xsl:value-of select="$filename"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates select="parent::*" mode="chunk-filename"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <!-- ==================================================================== -->
- <xsl:template name="process-chunk">
- <xsl:variable name="id">
- <xsl:call-template name="object.id"/>
- </xsl:variable>
- <xsl:variable name="chunks" select="document($chunk.toc,/)"/>
- <xsl:variable name="chunk" select="$chunks//tocentry[@linkend=$id]"/>
- <xsl:variable name="prev-id" select="($chunk/preceding::tocentry |$chunk/ancestor::tocentry)[last()]/@linkend"/>
- <xsl:variable name="next-id" select="($chunk/following::tocentry |$chunk/child::tocentry)[1]/@linkend"/>
- <xsl:variable name="prev" select="key('id',$prev-id)"/>
- <xsl:variable name="next" select="key('id',$next-id)"/>
- <xsl:variable name="ischunk">
- <xsl:call-template name="chunk"/>
- </xsl:variable>
- <xsl:variable name="chunkfn">
- <xsl:if test="$ischunk='1'">
- <xsl:apply-templates mode="chunk-filename" select="."/>
- </xsl:if>
- </xsl:variable>
- <xsl:variable name="filename">
- <xsl:call-template name="make-relative-filename">
- <xsl:with-param name="base.dir" select="$base.dir"/>
- <xsl:with-param name="base.name" select="$chunkfn"/>
- </xsl:call-template>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="$ischunk = 0">
- <xsl:apply-imports/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="write.chunk">
- <xsl:with-param name="filename" select="$filename"/>
- <xsl:with-param name="content">
- <xsl:call-template name="chunk-element-content">
- <xsl:with-param name="prev" select="$prev"/>
- <xsl:with-param name="next" select="$next"/>
- </xsl:call-template>
- </xsl:with-param>
- <xsl:with-param name="quiet" select="$chunk.quietly"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <!-- ==================================================================== -->
- <xsl:template match="set">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="book">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="book/appendix">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="book/glossary">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="book/bibliography">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="dedication" mode="dedication">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="preface|chapter">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="part|reference">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="refentry">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="colophon">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="article">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="article/appendix">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="article/glossary">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="article/bibliography">
- <xsl:call-template name="process-chunk"/>
- </xsl:template>
- <xsl:template match="sect1|sect2|sect3|sect4|sect5|section">
- <xsl:variable name="ischunk">
- <xsl:call-template name="chunk"/>
- </xsl:variable>
- <xsl:choose>
- <xsl:when test="$ischunk != 0">
- <xsl:call-template name="process-chunk"/>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-imports/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template match="setindex |book/index |article/index">
- <!-- some implementations use completely empty index tags to indicate -->
- <!-- where an automatically generated index should be inserted. so -->
- <!-- if the index is completely empty, skip it. -->
- <xsl:if test="count(*)>0 or $generate.index != '0'">
- <xsl:call-template name="process-chunk"/>
- </xsl:if>
- </xsl:template>
- <!-- ==================================================================== -->
- <xsl:template match="/">
- <xsl:choose>
- <xsl:when test="$chunk.toc = ''">
- <xsl:message terminate="yes">
- <xsl:text>The chunk.toc file is not set.</xsl:text>
- </xsl:message>
- </xsl:when>
- <xsl:when test="$rootid != ''">
- <xsl:choose>
- <xsl:when test="count(key('id',$rootid)) = 0">
- <xsl:message terminate="yes">
- <xsl:text>ID '</xsl:text>
- <xsl:value-of select="$rootid"/>
- <xsl:text>' not found in document.</xsl:text>
- </xsl:message>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates select="key('id',$rootid)"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-templates select="/" mode="process.root"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <xsl:template match="*" mode="process.root">
- <xsl:apply-templates select="."/>
- </xsl:template>
- <xsl:template name="make.lots">
- <xsl:param name="toc.params" select="''"/>
- <xsl:param name="toc"/>
- <xsl:variable name="lots">
- <xsl:if test="contains($toc.params, 'toc')">
- <xsl:copy-of select="$toc"/>
- </xsl:if>
- <xsl:if test="contains($toc.params, 'figure')">
- <xsl:choose>
- <xsl:when test="$chunk.separate.lots != '0'">
- <xsl:call-template name="make.lot.chunk">
- <xsl:with-param name="type" select="'figure'"/>
- <xsl:with-param name="lot">
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'figure'"/>
- <xsl:with-param name="nodes" select=".//figure"/>
- </xsl:call-template>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'figure'"/>
- <xsl:with-param name="nodes" select=".//figure"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:if>
- <xsl:if test="contains($toc.params, 'table')">
- <xsl:choose>
- <xsl:when test="$chunk.separate.lots != '0'">
- <xsl:call-template name="make.lot.chunk">
- <xsl:with-param name="type" select="'table'"/>
- <xsl:with-param name="lot">
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'table'"/>
- <xsl:with-param name="nodes" select=".//table"/>
- </xsl:call-template>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'table'"/>
- <xsl:with-param name="nodes" select=".//table"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:if>
- <xsl:if test="contains($toc.params, 'example')">
- <xsl:choose>
- <xsl:when test="$chunk.separate.lots != '0'">
- <xsl:call-template name="make.lot.chunk">
- <xsl:with-param name="type" select="'example'"/>
- <xsl:with-param name="lot">
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'example'"/>
- <xsl:with-param name="nodes" select=".//example"/>
- </xsl:call-template>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'example'"/>
- <xsl:with-param name="nodes" select=".//example"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:if>
- <xsl:if test="contains($toc.params, 'equation')">
- <xsl:choose>
- <xsl:when test="$chunk.separate.lots != '0'">
- <xsl:call-template name="make.lot.chunk">
- <xsl:with-param name="type" select="'equation'"/>
- <xsl:with-param name="lot">
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'equation'"/>
- <xsl:with-param name="nodes" select=".//equation"/>
- </xsl:call-template>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'equation'"/>
- <xsl:with-param name="nodes" select=".//equation"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:if>
- <xsl:if test="contains($toc.params, 'procedure')">
- <xsl:choose>
- <xsl:when test="$chunk.separate.lots != '0'">
- <xsl:call-template name="make.lot.chunk">
- <xsl:with-param name="type" select="'procedure'"/>
- <xsl:with-param name="lot">
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'procedure'"/>
- <xsl:with-param name="nodes" select=".//procedure[title]"/>
- </xsl:call-template>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:call-template name="list.of.titles">
- <xsl:with-param name="titles" select="'procedure'"/>
- <xsl:with-param name="nodes" select=".//procedure[title]"/>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:if>
- </xsl:variable>
- <xsl:if test="string($lots) != ''">
- <xsl:choose>
- <xsl:when test="$chunk.tocs.and.lots != 0 and not(parent::*)">
- <xsl:call-template name="write.chunk">
- <xsl:with-param name="filename">
- <xsl:call-template name="make-relative-filename">
- <xsl:with-param name="base.dir" select="$base.dir"/>
- <xsl:with-param name="base.name">
- <xsl:call-template name="dbhtml-dir"/>
- <xsl:apply-templates select="." mode="recursive-chunk-filename">
- <xsl:with-param name="recursive" select="true()"/>
- </xsl:apply-templates>
- <xsl:text>-toc</xsl:text>
- <xsl:value-of select="$html.ext"/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:with-param>
- <xsl:with-param name="content">
- <xsl:call-template name="chunk-element-content">
- <xsl:with-param name="prev" select="/foo"/>
- <xsl:with-param name="next" select="/foo"/>
- <xsl:with-param name="nav.context" select="'toc'"/>
- <xsl:with-param name="content">
- <h1>
- <xsl:apply-templates select="." mode="object.title.markup"/>
- </h1>
- <xsl:copy-of select="$lots"/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:with-param>
- <xsl:with-param name="quiet" select="$chunk.quietly"/>
- </xsl:call-template>
- </xsl:when>
- <xsl:otherwise>
- <xsl:copy-of select="$lots"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:if>
- </xsl:template>
- <xsl:template name="make.lot.chunk">
- <xsl:param name="type" select="''"/>
- <xsl:param name="lot"/>
- <xsl:if test="string($lot) != ''">
- <xsl:variable name="filename">
- <xsl:call-template name="make-relative-filename">
- <xsl:with-param name="base.dir" select="$base.dir"/>
- <xsl:with-param name="base.name">
- <xsl:call-template name="dbhtml-dir"/>
- <xsl:value-of select="$type"/>
- <xsl:text>-toc</xsl:text>
- <xsl:value-of select="$html.ext"/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="href">
- <xsl:call-template name="make-relative-filename">
- <xsl:with-param name="base.name">
- <xsl:call-template name="dbhtml-dir"/>
- <xsl:value-of select="$type"/>
- <xsl:text>-toc</xsl:text>
- <xsl:value-of select="$html.ext"/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:variable>
- <xsl:call-template name="write.chunk">
- <xsl:with-param name="filename" select="$filename"/>
- <xsl:with-param name="content">
- <xsl:call-template name="chunk-element-content">
- <xsl:with-param name="prev" select="/foo"/>
- <xsl:with-param name="next" select="/foo"/>
- <xsl:with-param name="nav.context" select="'toc'"/>
- <xsl:with-param name="content">
- <xsl:copy-of select="$lot"/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:with-param>
- <xsl:with-param name="quiet" select="$chunk.quietly"/>
- </xsl:call-template>
- <!-- And output a link to this file -->
- <div>
- <xsl:attribute name="class">
- <xsl:text>ListofTitles</xsl:text>
- </xsl:attribute>
- <a href="{$href}">
- <xsl:call-template name="gentext">
- <xsl:with-param name="key">
- <xsl:choose>
- <xsl:when test="$type='table'">ListofTables</xsl:when>
- <xsl:when test="$type='figure'">ListofFigures</xsl:when>
- <xsl:when test="$type='equation'">ListofEquations</xsl:when>
- <xsl:when test="$type='example'">ListofExamples</xsl:when>
- <xsl:when test="$type='procedure'">ListofProcedures</xsl:when>
- <xsl:otherwise>ListofUnknown</xsl:otherwise>
- </xsl:choose>
- </xsl:with-param>
- </xsl:call-template>
- </a>
- </div>
- </xsl:if>
- </xsl:template>
- </xsl:stylesheet>
|