common.xsl revision fa06e622879c651bb357c38ed660f07d91c52ae6
2N/A<?xml version="1.0"?>
2N/A
2N/A<!--
2N/A Copyright 2002-2004 The Apache Software Foundation
2N/A
2N/A Licensed under the Apache License, Version 2.0 (the "License");
2N/A you may not use this file except in compliance with the License.
2N/A You may obtain a copy of the License at
2N/A
2N/A http://www.apache.org/licenses/LICENSE-2.0
2N/A
2N/A Unless required by applicable law or agreed to in writing, software
2N/A distributed under the License is distributed on an "AS IS" BASIS,
2N/A WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
2N/A See the License for the specific language governing permissions and
2N/A limitations under the License.
2N/A-->
2N/A
2N/A<!DOCTYPE xsl:stylesheet [
2N/A <!ENTITY nbsp SYSTEM "util/nbsp.xml">
1622N/A <!ENTITY lf SYSTEM "util/lf.xml">
2N/A]>
2N/A<xsl:stylesheet version="1.0"
32N/A xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
32N/A xmlns="http://www.w3.org/1999/xhtml">
313N/A
313N/A<!-- -->
313N/A<!-- Please, don't hard-code output strings! Use the language -->
313N/A<!-- files and the translation "stuff"... -->
313N/A<!-- -->
313N/A
313N/A<!-- Injected variables: -->
313N/A<!-- $is-chm - (boolean) target is for CHM generation or not -->
313N/A<!-- $is-zip - (boolean) target is for ZIP generation or not -->
313N/A<!-- $message - (node-set) localized common text snippets -->
313N/A<!-- $doclang - (string) document language -->
313N/A<!-- $output-encoding - (string) MIME charset name of the output -->
313N/A<!-- encoding -->
313N/A
313N/A<!-- Constants used for case translation -->
313N/A<xsl:variable name="lowercase" select="'abcdefghijklmnopqrstuvwxyz'" />
127N/A<xsl:variable name="uppercase" select="'ABCDEFGHIJKLMNOPQRSTUVWXYZ'" />
127N/A
1622N/A<!-- space separated list of blockelements defined in common.dtd -->
1622N/A<!-- used for inline content catching in <example>s -->
1622N/A<xsl:variable name="blockelements">
127N/A p example note table ul ol dl pre img blockquote
538N/A</xsl:variable>
538N/A
538N/A<!-- relative path to /manual/ -->
538N/A<xsl:variable name="metafile" select="document(/*/@metafile)/metafile" />
538N/A<xsl:variable name="path" select="$metafile/relpath" />
538N/A
538N/A<!-- load outsourced page types -->
538N/A<xsl:include href="moduleindex.xsl" />
327N/A<xsl:include href="directiveindex.xsl" />
327N/A<xsl:include href="manualpage.xsl" />
327N/A<xsl:include href="synopsis.xsl" />
327N/A<xsl:include href="sitemap.xsl" />
327N/A<xsl:include href="indexpage.xsl" />
327N/A<xsl:include href="quickreference.xsl" />
327N/A<xsl:include href="faq.xsl" />
327N/A
327N/A<!-- load utility snippets -->
327N/A<xsl:include href="util/modtrans.xsl" />
327N/A
327N/A<!-- make sure, we set relative anchors only, if we're actually -->
177N/A<!-- transforming a modulefile (see <directive> template) -->
177N/A<xsl:variable name="in-modulesynopsis" select="boolean(/modulesynopsis)" />
2N/A
145N/A<!-- when referencing to a directory, we may need to complete the path -->
883N/A<!-- with the index file (for offline applications like *.chm files) -->
26N/A<xsl:variable name="index-file">
38N/A <xsl:if test="$is-chm or $is-zip">index.html</xsl:if>
38N/A</xsl:variable>
1622N/A
26N/A<!-- it may be desired to open external targets in a new window -->
477N/A<xsl:variable name="ext-target" select="boolean($is-chm)" />
538N/A
38N/A<!-- #################################################################### -->
2N/A<!-- Utility templates for constructing pages -->
6N/A<!-- #################################################################### -->
2N/A
727N/A<!-- ==================================================================== -->
2N/A<!-- HTML head -->
34N/A<!-- ==================================================================== -->
34N/A<xsl:template name="head">
94N/A<head>
94N/A <!-- the meta element is necessary for offline handling like CHM -->
156N/A <xsl:choose>
156N/A <xsl:when test="$is-chm or $is-zip">
34N/A <meta http-equiv="Content-Type"
59N/A content="text/html; charset={$output-encoding}" />
1273N/A </xsl:when>
1273N/A <xsl:otherwise>
1622N/A <xsl:comment>
72N/A &lf;
72N/A <xsl:text> </xsl:text>
59N/A <xsl:text>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</xsl:text>
2N/A &lf;
85N/A <xsl:text> </xsl:text>
61N/A <xsl:text>This file is generated from xml source: DO NOT EDIT</xsl:text>
61N/A &lf;
220N/A <xsl:text> </xsl:text>
61N/A <xsl:text>XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX</xsl:text>
61N/A &lf;
1762N/A <xsl:text> </xsl:text>
172N/A </xsl:comment>
61N/A </xsl:otherwise>
61N/A </xsl:choose>&lf;
220N/A
220N/A <title>
61N/A <xsl:choose>
172N/A <xsl:when test="name">
454N/A <xsl:value-of select="name"/>
61N/A </xsl:when>
172N/A
61N/A <xsl:otherwise>
152N/A <xsl:value-of select="title"/>
74N/A </xsl:otherwise>
61N/A </xsl:choose>
220N/A
85N/A <xsl:text> </xsl:text>
172N/A <xsl:value-of select="normalize-space($message[@id='apachetitle'])"/>
61N/A </title>&lf;
172N/A
61N/A <!-- chm files get a slightly different stylesheet -->
1762N/A <xsl:choose>
172N/A <xsl:when test="$is-chm">
61N/A <link type="text/css" rel="stylesheet" media="all"
61N/A href="{$path}/style/css/manual-chm.css" />
220N/A </xsl:when>
61N/A <!-- zip packages do also -->
454N/A <xsl:when test="$is-zip">
61N/A <link title="Main stylesheet" type="text/css" media="all"
172N/A rel="stylesheet"
61N/A href="{$path}/style/css/manual-zip.css" />&lf;
172N/A <link title="No Sidebar - Default font size" type="text/css" media="all"
61N/A rel="alternate stylesheet"
152N/A href="{$path}/style/css/manual-zip-100pc.css"/>
152N/A </xsl:when>
220N/A <xsl:otherwise>
61N/A <link title="Main stylesheet" type="text/css" media="all"
61N/A rel="stylesheet"
43N/A href="{$path}/style/css/manual.css" />&lf;
220N/A <link title="No Sidebar - Default font size" type="text/css" media="all"
43N/A rel="alternate stylesheet"
120N/A href="{$path}/style/css/manual-loose-100pc.css"/>
64N/A </xsl:otherwise>
64N/A </xsl:choose>&lf;
64N/A
43N/A <link type="text/css" media="print"
43N/A rel="stylesheet"
120N/A href="{$path}/style/css/manual-print.css"/>
64N/A
64N/A <!-- chm files do not need a favicon -->
64N/A <xsl:if test="not($is-chm or $is-zip)">&lf;
220N/A <link rel="shortcut icon" href="{$path}/images/favicon.ico" />
64N/A </xsl:if>
64N/A</head>
486N/A</xsl:template>
486N/A<!-- /head -->
64N/A
64N/A
64N/A<!-- ==================================================================== -->
64N/A<!-- page top -->
64N/A<!-- ==================================================================== -->
64N/A<xsl:template name="top">
64N/A<div id="page-header">&lf;
43N/A <xsl:call-template name="super-menu" />&lf;
16N/A
16N/A <p class="apache">
16N/A <xsl:value-of select="normalize-space($message
34N/A [@id='apachehttpserver'])"/>
34N/A </p>&lf;
16N/A
6N/A <img src="{$path}/images/feather.gif" alt="" />
12N/A</div>&lf; <!-- /page-header -->
1622N/A
12N/A<div class="up">
12N/A <a href="./{$index-file}">
12N/A <xsl:if test="parentdocument">
12N/A <xsl:attribute name="href">
12N/A <xsl:value-of select="parentdocument/@href"/>
12N/A </xsl:attribute>
12N/A
12N/A <xsl:call-template name="helper.uri.fix">
12N/A <xsl:with-param name="uri" select="parentdocument/@href" />
369N/A </xsl:call-template>
369N/A </xsl:if>
369N/A
61N/A <img src="{$path}/images/left.gif" alt="&lt;-" title="&lt;-" />
61N/A </a>
61N/A</div>&lf;
61N/A
61N/A<div id="path">&lf;
12N/A <a href="http://www.apache.org/">
181N/A <xsl:if test="$ext-target">
181N/A <xsl:attribute name="target">_blank</xsl:attribute>
12N/A </xsl:if>
61N/A <xsl:value-of select="$message[@id='apache']" />
61N/A </a>
12N/A
279N/A <xsl:text> &gt; </xsl:text>
279N/A
181N/A <a href="http://httpd.apache.org/">
181N/A <xsl:if test="$ext-target">
181N/A <xsl:attribute name="target">_blank</xsl:attribute>
2N/A </xsl:if>
99N/A <xsl:value-of select="$message[@id='http-server']" />
99N/A </a>
99N/A
181N/A <xsl:text> &gt; </xsl:text>
181N/A
181N/A <a href="http://httpd.apache.org/docs-project/">
181N/A <xsl:if test="$ext-target">
181N/A <xsl:attribute name="target">_blank</xsl:attribute>
99N/A </xsl:if>
40N/A <xsl:value-of select="$message[@id='documentation']" />
844N/A </a>
40N/A
40N/A <xsl:if test="not(/indexpage)">
43N/A <xsl:text> &gt; </xsl:text>
40N/A
814N/A <a href="{$path}/{$index-file}">
814N/A <xsl:value-of select="$message[@id='version']"/>
814N/A </a>
814N/A </xsl:if>
814N/A
814N/A <xsl:if test="/modulesynopsis or /directiveindex or /quickreference">
814N/A <xsl:text> &gt; </xsl:text>
814N/A
814N/A <a href="./{$index-file}">
127N/A <xsl:value-of select="$message[@id='modules']"/>
2N/A </a>
99N/A </xsl:if>
206N/A
2N/A <xsl:if test="parentdocument/text()">
814N/A <xsl:text> &gt; </xsl:text>
99N/A
206N/A <a href="{parentdocument/@href}">
2N/A <xsl:call-template name="helper.uri.fix">
151N/A <xsl:with-param name="uri" select="parentdocument/@href"/>
206N/A </xsl:call-template>
2N/A <xsl:value-of select="parentdocument"/>
151N/A </a>
206N/A </xsl:if>
2N/A</div> <!-- /path -->
2N/A</xsl:template>
61N/A<!-- /top -->
61N/A
61N/A
61N/A<!-- ==================================================================== -->
61N/A<!-- out of date -->
16N/A<!-- ==================================================================== -->
16N/A<xsl:template name="outofdate">
727N/A<xsl:if test="$metafile/variants/variant[.=$doclang]/@outdated = 'yes'">
727N/A &lf;
727N/A <div class="outofdate">
727N/A <xsl:value-of select="$message[@id='outofdate']"/>
727N/A </div>
727N/A</xsl:if>
727N/A</xsl:template>
727N/A
814N/A
814N/A<!-- ==================================================================== -->
814N/A<!-- page bottom -->
814N/A<!-- ==================================================================== -->
814N/A<xsl:template name="bottom">
814N/A<xsl:call-template name="langavail">
814N/A <xsl:with-param name="position" select="'bottom'" />
814N/A</xsl:call-template>
814N/A
814N/A<div id="footer">&lf;
814N/A <p class="apache">
814N/A <xsl:text>Copyright 1999-2004 The Apache Software </xsl:text>
814N/A <xsl:text>Foundation.</xsl:text><br />
814N/A <xsl:value-of select="$message[@id='licensed']"/>
814N/A <xsl:text> </xsl:text>
2140N/A
2140N/A <a href="http://www.apache.org/licenses/LICENSE-2.0">
2127N/A <xsl:if test="$ext-target">
2127N/A <xsl:attribute name="target">_blank</xsl:attribute>
2127N/A </xsl:if>
814N/A <xsl:text>Apache License, Version 2.0</xsl:text>
2140N/A </a>
2140N/A <xsl:text>.</xsl:text>
2140N/A </p>&lf;
2140N/A
2140N/A <xsl:call-template name="super-menu"/>
2140N/A
2140N/A</div> <!-- /footer -->
148N/A</xsl:template>
148N/A<!-- /bottom -->
148N/A
148N/A
2N/A<!-- ==================================================================== -->
47N/A<!-- build an "available languages" section -->
2N/A<!-- ==================================================================== -->
727N/A<xsl:template name="langavail">
727N/A<xsl:param name="position" select="'top'" />
727N/A
1192N/A<xsl:if test="not($is-chm or $is-zip)">
1192N/A<div class="{$position}lang">&lf;
148N/A <p>
2N/A <span>
146N/A <xsl:value-of select="$message[@id='langavail']" />
146N/A <xsl:text>: </xsl:text>
146N/A </span>
146N/A
727N/A <xsl:for-each select="$metafile/variants/variant">
146N/A <xsl:sort select="." />
1653N/A
1653N/A <a href="{$path}/{.}{$metafile/path}{$metafile/basename}.html">
1653N/A <xsl:if test="$metafile/basename = 'index'">
116N/A <xsl:attribute name="href">
260N/A <xsl:value-of
260N/A select="concat($path, '/', ., $metafile/path)" />
277N/A </xsl:attribute>
260N/A </xsl:if>
260N/A <xsl:if test="$doclang != .">
260N/A <xsl:attribute name="hreflang">
260N/A <xsl:value-of select="." />
260N/A </xsl:attribute>
1767N/A <xsl:attribute name="rel">alternate</xsl:attribute>
260N/A </xsl:if>
260N/A <xsl:attribute name="title">
127N/A <xsl:value-of select="document(concat('/lang/', .,
1622N/A '.xml'))
1767N/A /language/messages/message
260N/A [@id='nativename']" />
260N/A </xsl:attribute>
260N/A
260N/A &nbsp;
1622N/A <xsl:value-of select="." />
1622N/A &nbsp;
260N/A </a>
260N/A <xsl:if test="position() != last()">
260N/A <xsl:text> |&#xA;</xsl:text>
260N/A </xsl:if>
1713N/A </xsl:for-each>
1713N/A </p>&lf;
1713N/A</div> <!-- /.{$position}lang -->
1713N/A</xsl:if>
1713N/A
1713N/A<xsl:if test="$position = 'top'">
1713N/A <xsl:call-template name="outofdate" />
1713N/A</xsl:if>
1713N/A
260N/A</xsl:template>
2N/A<!-- /langavail -->
2N/A
82N/A
99N/A<!-- ==================================================================== -->
99N/A<!-- Process a documentation section -->
302N/A<!-- ==================================================================== -->
2N/A<xsl:template match="section">
105N/A<xsl:call-template name="toplink" />&lf;
2N/A<div class="section">&lf;
70N/A
2N/A <!-- Section heading -->
160N/A <h2>
160N/A <xsl:choose>
160N/A <xsl:when test="@id">
160N/A <a id="{@id}" name="{@id}">
165N/A <xsl:apply-templates select="title" mode="print" />
2N/A </a>
2N/A </xsl:when>
2N/A
7N/A <xsl:otherwise>
142N/A <xsl:apply-templates select="title" mode="print" />
43N/A </xsl:otherwise>
43N/A </xsl:choose>
16N/A </h2>
43N/A
138N/A <!-- Section body -->
224N/A <xsl:apply-templates />
224N/A</div> <!-- /.section -->
61N/A</xsl:template>
61N/A<!-- /section -->
61N/A
61N/A
206N/A<!-- ==================================================================== -->
206N/A<!-- handle subsections (lower level headings) -->
1192N/A<!-- ==================================================================== -->
206N/A<xsl:template match="section/section">
206N/A<!-- Section heading -->
61N/A<h3>
99N/A <xsl:choose>
99N/A <xsl:when test="@id">
99N/A <a id="{@id}" name="{@id}">
99N/A <xsl:apply-templates select="title" mode="print" />
99N/A </a>
99N/A </xsl:when>
99N/A
99N/A <xsl:otherwise>
99N/A <xsl:apply-templates select="title" mode="print" />
61N/A </xsl:otherwise>
99N/A </xsl:choose>
99N/A</h3>
1622N/A
1622N/A<!-- Section body -->
99N/A<xsl:apply-templates />
61N/A</xsl:template>
99N/A<!-- /section/section -->
99N/A
99N/A
99N/A<!-- ==================================================================== -->
61N/A<!-- handle subsubsections (h4) -->
61N/A<!-- ==================================================================== -->
61N/A<xsl:template match="section/section/section">
61N/A<!-- Section heading -->
99N/A<h4>
99N/A <xsl:choose>
99N/A <xsl:when test="@id">
99N/A <a id="{@id}" name="{@id}">
200N/A <xsl:apply-templates select="title" mode="print" />
200N/A </a>
200N/A </xsl:when>
99N/A
99N/A <xsl:otherwise>
99N/A <xsl:apply-templates select="title" mode="print" />
99N/A </xsl:otherwise>
99N/A </xsl:choose>
99N/A</h4>
99N/A
99N/A<!-- Section body -->
99N/A<xsl:apply-templates/>
99N/A
99N/A</xsl:template>
99N/A<!-- /section/section/section -->
99N/A
839N/A
839N/A<!-- ==================================================================== -->
839N/A<!-- section nesting > h4 is not supported for now -->
839N/A<!-- ==================================================================== -->
839N/A<xsl:template match="section/section/section/section">
102N/A<xsl:message terminate="yes">
108N/A <xsl:text>FATAL: exceeding maximum section nesting level.</xsl:text>
102N/A &lf;&lf;
61N/A <xsl:text>Perhaps you should consider to split your document into</xsl:text>
99N/A &lf;
99N/A <xsl:text>several ones...</xsl:text>
99N/A &lf;
99N/A</xsl:message>
99N/A</xsl:template>
99N/A<!-- /section/section/section/section -->
99N/A
99N/A
99N/A<!-- ==================================================================== -->
99N/A<!-- (sub)section titles -->
99N/A<!-- ==================================================================== -->
99N/A<xsl:template match="section/title" mode="print">
99N/A<xsl:apply-templates/>
99N/A</xsl:template>
99N/A<xsl:template match="section/title" />
200N/A<!-- /section/title -->
200N/A
200N/A
200N/A<!-- ==================================================================== -->
200N/A<!-- generate section index -->
200N/A<!-- ==================================================================== -->
200N/A<xsl:template match="section" mode="index">
200N/A<li>
200N/A <img src="{$path}/images/down.gif" alt="" />
200N/A <xsl:text> </xsl:text>
99N/A <xsl:choose>
99N/A <xsl:when test="@id">
99N/A <a href="#{@id}">
99N/A <xsl:apply-templates select="title" mode="print" />
99N/A </a>
102N/A </xsl:when>
102N/A <xsl:otherwise>
102N/A <xsl:apply-templates select="title" mode="print" />
102N/A </xsl:otherwise>
102N/A </xsl:choose>
99N/A</li>&lf;
99N/A</xsl:template>
99N/A<!-- /section index -->
61N/A
61N/A
61N/A<!-- ==================================================================== -->
61N/A<!-- docs super menu -->
99N/A<!-- ==================================================================== -->
99N/A<xsl:template name="super-menu">
102N/A<p class="menu">
99N/A <a href="{$path}/mod/{$index-file}">
99N/A <xsl:value-of select="$message[@id='modules']" />
99N/A </a>
99N/A
459N/A <xsl:text> | </xsl:text>
459N/A
459N/A <a href="{$path}/mod/directives.html">
459N/A <xsl:value-of select="$message[@id='directives']" />
459N/A </a>
459N/A
459N/A <xsl:text> | </xsl:text>
99N/A
102N/A <a href="{$path}/faq/{$index-file}">
99N/A <xsl:value-of select="$message[@id='faq']" />
459N/A </a>
459N/A
459N/A <xsl:text> | </xsl:text>
459N/A
109N/A <a href="{$path}/glossary.html">
109N/A <xsl:value-of select="$message[@id='glossary']" />
109N/A </a>
109N/A
109N/A <xsl:text> | </xsl:text>
109N/A
109N/A <a href="{$path}/sitemap.html">
109N/A <xsl:value-of select="$message[@id='sitemap']" />
109N/A </a>
109N/A</p>
109N/A</xsl:template>
109N/A<!-- /super-menu -->
99N/A
99N/A
99N/A<!-- ==================================================================== -->
99N/A<!-- <example> -->
200N/A<!-- iterate over *all* nodes; bare text and other inline stuff is -->
200N/A<!-- wrapped into <p><code>, block level elements (defined in -->
200N/A<!-- $blockelements) are applied "as is" -->
200N/A<!-- ==================================================================== -->
99N/A<xsl:variable name="blocks"
99N/A select="concat(' ', normalize-space($blockelements), ' ')" />
99N/A
99N/A<xsl:template match="example">
99N/A<div class="example">
99N/A <xsl:apply-templates select="title" mode="print" />
109N/A
109N/A <xsl:for-each select="/node()">
61N/A <xsl:variable name="is-block-node"
99N/A select="boolean(contains($blocks,
99N/A concat(' ', local-name(), ' ')))"/>
99N/A <!-- bb = (number of) blocks nodes before (the current) -->
99N/A <xsl:variable name="bb"
99N/A select="count(preceding-sibling::*[
99N/A contains($blocks,
99N/A concat(' ', local-name(), ' '))])" />
99N/A
99N/A <xsl:if test="$is-block-node or position()=last()">
99N/A <xsl:variable name="content">
99N/A <!-- phew. short explanation, what happens here: -->
61N/A <!-- We want to get the inline stuff between the last -->
99N/A <!-- block node and the current node. -->
99N/A <!-- So filter all previous nodes for the condition -->
99N/A <!-- that the number of block nodes of all of *their* -->
99N/A <!-- previous nodes is >= $bb. Hope that helps ;-) -->
99N/A <xsl:apply-templates
99N/A select="preceding-sibling::node()[
99N/A count(preceding-sibling::*[
99N/A contains($blocks,
99N/A concat(' ', local-name(), ' '))])
99N/A &gt;= $bb]" />
99N/A
459N/A <xsl:apply-templates
99N/A select="self::node()[not($is-block-node)]" />
99N/A </xsl:variable>
99N/A
99N/A <!-- apply bare text only, if it's not only \s or empty -->
99N/A <xsl:if test="not(normalize-space($content) = '')">
99N/A <p><code>
99N/A <!-- same as $content above. xsl:copy-of seems to make -->
61N/A <!-- thread problems with xalan-j ... -->
99N/A <xsl:apply-templates
206N/A select="preceding-sibling::node()[
206N/A count(preceding-sibling::*[
206N/A contains($blocks,
206N/A concat(' ', local-name(),
206N/A ' '))])
206N/A &gt;= $bb]" />
206N/A
206N/A <xsl:apply-templates
206N/A select="self::node()[not($is-block-node)]" />
206N/A </code></p>
206N/A </xsl:if>
206N/A
206N/A <xsl:apply-templates select="self::node()[$is-block-node]" />
206N/A </xsl:if>
206N/A </xsl:for-each>
206N/A <!-- /node() -->
206N/A</div> <!-- /.example -->
206N/A</xsl:template>
206N/A<!-- /example -->
206N/A
206N/A
206N/A<!-- ==================================================================== -->
206N/A<!-- example/title -->
206N/A<!-- ==================================================================== -->
206N/A<xsl:template match="example/title" mode="print">
206N/A<h3>
219N/A <xsl:apply-templates/>
219N/A</h3>
219N/A</xsl:template>
99N/A<xsl:template match="example/title" />
99N/A<!-- /example/title -->
99N/A
99N/A
99N/A<!-- ==================================================================== -->
99N/A<!-- indentations -->
206N/A<!-- ==================================================================== -->
206N/A<xsl:template match="indent">
206N/A<span class="indent">
99N/A <xsl:apply-templates/>
99N/A</span>
99N/A</xsl:template>
99N/A<!-- /indent -->
99N/A
99N/A
99N/A<!-- ==================================================================== -->
99N/A<!-- <note> -->
99N/A<!-- ==================================================================== -->
99N/A<xsl:template match="note">
99N/A<div class="note">
99N/A <xsl:if test="@type='warning'">
806N/A <xsl:attribute name="class">warning</xsl:attribute>
806N/A </xsl:if>
806N/A
99N/A <xsl:apply-templates/>
99N/A</div>
99N/A</xsl:template>
170N/A<!-- /note -->
170N/A
170N/A
99N/A<!-- ==================================================================== -->
99N/A<!-- <note><title> -->
61N/A<!-- ==================================================================== -->
99N/A<xsl:template match="note/title">
99N/A<h3>
99N/A <xsl:apply-templates/>
99N/A</h3>
99N/A</xsl:template>
99N/A<!-- /note/title -->
99N/A
99N/A
176N/A<!-- ==================================================================== -->
176N/A<!-- <directive> -->
99N/A<!-- Inserts link to another directive, which might be in another module. -->
99N/A<!-- References are converted into lower case. -->
99N/A<!-- ==================================================================== -->
61N/A<xsl:template match="directive" name="directive">
99N/A<code class="directive">
99N/A <xsl:choose>
99N/A <xsl:when test="@module">
99N/A <xsl:variable name="lowerdirective"
99N/A select="translate(., $uppercase, $lowercase)" />
99N/A
99N/A <xsl:choose>
99N/A <xsl:when test="$in-modulesynopsis and @module = /modulesynopsis/name">
61N/A <a href="#{$lowerdirective}">
99N/A <xsl:if test="@type='section'">&lt;</xsl:if>
806N/A <xsl:value-of select="."/>
99N/A <xsl:if test="@type='section'">&gt;</xsl:if>
99N/A </a>
99N/A </xsl:when>
99N/A <xsl:otherwise>
176N/A <a href="{$path}/mod/{@module}.html#{$lowerdirective}">
170N/A <xsl:if test="@type='section'">&lt;</xsl:if>
64N/A <xsl:value-of select="."/>
62N/A <xsl:if test="@type='section'">&gt;</xsl:if>
64N/A </a>
64N/A </xsl:otherwise>
82N/A </xsl:choose>
64N/A </xsl:when>
82N/A
64N/A <xsl:otherwise>
64N/A <xsl:if test="@type='section'">&lt;</xsl:if>
62N/A <xsl:value-of select="."/>
62N/A <xsl:if test="@type='section'">&gt;</xsl:if>
62N/A </xsl:otherwise>
62N/A </xsl:choose>
181N/A</code>
206N/A</xsl:template>
814N/A<!-- /directive -->
206N/A
181N/A
181N/A<!-- ==================================================================== -->
181N/A<!-- <module> -->
181N/A<!-- Inserts a link to refereed module -->
1273N/A<!-- ==================================================================== -->
1273N/A<xsl:template match="module" name="module">
1273N/A<code class="module">
1273N/A <a href="{$path}/mod/{.}.html">
1273N/A <xsl:value-of select="."/>
1273N/A </a>
1273N/A</code>
1273N/A</xsl:template>
<!-- /module -->
<!-- ==================================================================== -->
<!-- <related> -->
<!-- ==================================================================== -->
<xsl:template match="related">
<table class="related">
<tr>
<th>
<xsl:value-of select="$message[@id='relatedmodules']" />
</th>
<th>
<xsl:value-of select="$message[@id='relateddirectives']" />
</th>
</tr>
<tr>
<td>
<xsl:if test="count(modulelist/*) &gt; 0">
<ul>
<xsl:apply-templates select="modulelist" />
</ul>
</xsl:if>
</td>
<td>
<xsl:if test="count(directivelist/*) &gt; 0">
<ul>
<xsl:apply-templates select="directivelist"/>
</ul>
</xsl:if>
</td>
</tr>
</table>
</xsl:template>
<!-- /related -->
<!-- ==================================================================== -->
<!-- related/modulelist -->
<!-- ==================================================================== -->
<xsl:template match="related/modulelist">
<xsl:for-each select="module">
<li>
<xsl:call-template name="module"/>
</li>
</xsl:for-each>
</xsl:template>
<!-- /related/modulelist -->
<!-- ==================================================================== -->
<!-- related/directivelist -->
<!-- ==================================================================== -->
<xsl:template match="related/directivelist">
<xsl:for-each select="directive">
<li>
<xsl:call-template name="directive"/>
</li>
</xsl:for-each>
</xsl:template>
<!-- /related/directivelist -->
<!-- ==================================================================== -->
<!-- <table> -->
<!-- ==================================================================== -->
<xsl:template match="table">
<table>
<!-- existing border attribute will result in <table class="bordered"> -->
<xsl:if test="@border">
<xsl:attribute name="class">bordered</xsl:attribute>
</xsl:if>
<!-- style="zebra": alternating colors per row, i.e. every second row -->
<!-- gets a class="odd". Header lines (no <td>) get a -->
<!-- class="header". These lines will be excluded from -->
<!-- the "odd" line count. That way header lines act -->
<!-- interjectional, which creates a better visual and -->
<!-- psychological effect. -->
<xsl:choose>
<xsl:when test="@style = 'zebra'">
<xsl:for-each select="tr">
<tr>
<xsl:choose>
<xsl:when test="count(td) = 0">
<xsl:attribute name="class">header</xsl:attribute>
</xsl:when>
<xsl:when
test="position() mod 2 =
(count(preceding-sibling::tr[count(td) = 0]) mod 2)">
<xsl:attribute name="class">odd</xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:apply-templates />
</tr>&lf;
</xsl:for-each>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates />
</xsl:otherwise>
</xsl:choose>
</table>
</xsl:template>
<!-- /table -->
<!-- ==================================================================== -->
<!-- <ol> -->
<!-- ==================================================================== -->
<xsl:template match="ol">
<ol>
<!-- A. B. C. D. (list-style-type="upper-alpha") -->
<xsl:choose>
<xsl:when test="@type = 'A'">
<xsl:attribute name="class">up-A</xsl:attribute>
</xsl:when>
<xsl:when test="@type = 'a'">
<xsl:attribute name="class">lo-A</xsl:attribute>
</xsl:when>
</xsl:choose>
<xsl:apply-templates/>
</ol>
</xsl:template>
<!-- /ol -->
<!-- ==================================================================== -->
<!-- diverse elements -->
<!-- Passes through content -->
<!-- ==================================================================== -->
<xsl:template match="summary|description|usage|syntax|default">
<xsl:apply-templates/>
</xsl:template>
<!-- /diverse -->
<!-- ==================================================================== -->
<!-- <a> -->
<!-- ==================================================================== -->
<xsl:template match="a">
<xsl:choose>
<xsl:when test="not(@href)">
<xsl:copy>
<xsl:apply-templates select="@*|*|text()"/>
</xsl:copy>
</xsl:when>
<xsl:otherwise>
<a href="@href">
<xsl:apply-templates select="@*"/>
<xsl:call-template name="helper.uri.fix">
<xsl:with-param name="uri" select="@href"/>
</xsl:call-template>
<xsl:apply-templates select="*|text()"/>
</a>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- /a -->
<!-- ==================================================================== -->
<!-- toplink -->
<!-- ==================================================================== -->
<xsl:template name="toplink">
<div class="top">
<a href="#page-header"><img src="{$path}/images/up.gif" alt="top" /></a>
</div>
</xsl:template>
<!-- /toplink -->
<!-- ==================================================================== -->
<!-- <transnote> -->
<!-- translator's notes are displayed in a different color -->
<!-- ==================================================================== -->
<xsl:template match="transnote">
<span class="transnote">
<xsl:text>(</xsl:text>
<em>
<xsl:value-of select="$message[@id='transnote']" />
</em>
<xsl:text> </xsl:text>
<xsl:apply-templates />
<xsl:text>)</xsl:text>
</span>
</xsl:template>
<!-- /transnote -->
<!-- ==================================================================== -->
<!-- Filter &#160; in text() nodes. -->
<!-- In some environments this character won't be transformed correctly, -->
<!-- so we just write it explicitely as "&nbsp;" into the output. -->
<!-- ==================================================================== -->
<xsl:template match="text()" name="filter.nbsp">
<xsl:param name="text" select="." />
<xsl:choose>
<xsl:when test="contains($text, '&#160;')">
<xsl:value-of select="substring-before($text, '&#160;')" />
&nbsp;
<xsl:call-template name="filter.nbsp">
<xsl:with-param name="text" select="substring-after($text, '&#160;')" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- /filter.nbsp -->
<!-- ==================================================================== -->
<!-- Process everything else by just passing it through -->
<!-- ==================================================================== -->
<xsl:template match="*">
<xsl:message terminate="yes">
<xsl:text>Unknown element: </xsl:text>
<xsl:value-of select="local-name()" />&lf;
<xsl:text>Is the document valid (try `build validate-xml`)?</xsl:text>
</xsl:message>
</xsl:template>
<xsl:template match="@*">
<xsl:copy>
<xsl:apply-templates select="*|@*|text()" />
</xsl:copy>
</xsl:template>
<xsl:template match="br"><br /></xsl:template>
<xsl:template match="tr"><tr><xsl:apply-templates select="*|@*|text()" /></tr></xsl:template>
<xsl:template match="th"><th><xsl:apply-templates select="*|@*|text()" /></th></xsl:template>
<xsl:template match="td"><td><xsl:apply-templates select="*|@*|text()" /></td></xsl:template>
<xsl:template match="p"><p><xsl:apply-templates select="*|@*|text()" /></p></xsl:template>
<xsl:template match="ul"><ul><xsl:apply-templates select="*|@*|text()" /></ul></xsl:template>
<xsl:template match="li"><li><xsl:apply-templates select="*|@*|text()" /></li></xsl:template>
<xsl:template match="dl"><dl><xsl:apply-templates select="*|@*|text()" /></dl></xsl:template>
<xsl:template match="dt"><dt><xsl:apply-templates select="*|@*|text()" /></dt></xsl:template>
<xsl:template match="dd"><dd><xsl:apply-templates select="*|@*|text()" /></dd></xsl:template>
<xsl:template match="em"><em><xsl:apply-templates select="*|@*|text()" /></em></xsl:template>
<xsl:template match="strong"><strong><xsl:apply-templates select="*|@*|text()" /></strong></xsl:template>
<xsl:template match="pre"><pre><xsl:apply-templates select="*|@*|text()" /></pre></xsl:template>
<xsl:template match="code"><code><xsl:apply-templates select="*|@*|text()" /></code></xsl:template>
<xsl:template match="var"><var><xsl:apply-templates select="*|@*|text()" /></var></xsl:template>
<xsl:template match="dfn"><dfn><xsl:apply-templates select="*|@*|text()" /></dfn></xsl:template>
<xsl:template match="blockquote"><blockquote><xsl:apply-templates select="*|@*|text()" /></blockquote></xsl:template>
<xsl:template match="q"><q><xsl:apply-templates select="*|@*|text()" /></q></xsl:template>
<xsl:template match="cite"><cite><xsl:apply-templates select="*|@*|text()" /></cite></xsl:template>
<xsl:template match="img"><img><xsl:apply-templates select="*|@*|text()" /></img></xsl:template>
<!-- /pass through -->
<!-- ==================================================================== -->
<!-- create a letter bar -->
<!-- ==================================================================== -->
<xsl:template name="letter-bar">
<xsl:param name="letters" />
<xsl:param name="first" />
<xsl:if test="not($first)">
<xsl:text> | </xsl:text>
</xsl:if>
<a href="#{substring($letters,1,1)}">
&nbsp;
<xsl:value-of select="substring($letters, 1, 1)" />
&nbsp;
</a>
<xsl:if test="string-length($letters) &gt; 1">
<xsl:call-template name="letter-bar">
<xsl:with-param name="letters" select="substring($letters, 2)" />
<xsl:with-param name="first" select="false()" />
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- /letter-bar -->
<!-- ==================================================================== -->
<!-- template(s) for collecting all start letters of directives -->
<!-- ==================================================================== -->
<xsl:template name="directive-startletters">
<xsl:param name="directives" />
<xsl:call-template name="_squeeze-letters">
<xsl:with-param name="lastletter" select="''" />
<xsl:with-param name="letters">
<xsl:for-each select="$directives">
<xsl:sort select="name"/>
<xsl:value-of
select="translate(substring(normalize-space(name), 1, 1),
$lowercase, $uppercase)" />
</xsl:for-each>
</xsl:with-param>
</xsl:call-template>
</xsl:template>
<!-- /directive-startletters -->
<!-- ==================================================================== -->
<!-- squeeze subsequent letters in a string -->
<!-- ==================================================================== -->
<xsl:template name="_squeeze-letters">
<xsl:param name="letters"/>
<xsl:param name="lastletter"/>
<xsl:variable name="current" select="substring($letters, 1, 1)" />
<xsl:if test="not($lastletter = $current)">
<xsl:value-of select="$current" />
</xsl:if>
<xsl:if test="string-length($letters) &gt; 1">
<xsl:call-template name="_squeeze-letters">
<xsl:with-param name="letters" select="substring($letters, 2)" />
<xsl:with-param name="lastletter" select="$current"/>
</xsl:call-template>
</xsl:if>
</xsl:template>
<!-- /_squeeze-letters -->
<!-- ==================================================================== -->
<!-- fix href and target attribute of an element. -->
<!-- ==================================================================== -->
<xsl:template name="helper.uri.fix">
<xsl:param name="uri"/>
<xsl:choose>
<!-- lame is_absolute_uri test -->
<xsl:when test=" contains($uri, ':')
and string-length(substring-before($uri, ':')) &lt; 7">
<xsl:if test="$ext-target">
<xsl:attribute name="target">_blank</xsl:attribute>
</xsl:if>
</xsl:when>
<xsl:otherwise>
<xsl:variable name="fragment">
<xsl:if test="contains($uri, '#')">
<xsl:value-of select="concat('#', substring-after($uri, '#'))"/>
</xsl:if>
</xsl:variable>
<xsl:variable name="absuri">
<xsl:choose>
<xsl:when test="contains($uri, '#')">
<xsl:value-of select="concat('#', substring-before($uri, '#'))"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$uri"/>
</xsl:otherwise>
</xsl:choose>
</xsl:variable>
<xsl:if test="substring($absuri, string-length($uri), 1) = '/'">
<xsl:attribute name="href">
<xsl:value-of select="concat($absuri, $index-file, $fragment)"/>
</xsl:attribute>
</xsl:if>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
<!-- /helper.uri.fix -->
<!-- ==================================================================== -->
<!-- Ignore table hints used for latex -->
<!-- ==================================================================== -->
<xsl:template match="columnspec">
</xsl:template>
<xsl:template match="column">
</xsl:template>
</xsl:stylesheet>