sitemap.xsl revision beaad6ac31022179c44d88536811e9ccd9425696
<?xml version="1.0"?>
<!--
Copyright 2002-2004 Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!DOCTYPE xsl:stylesheet [
]>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns="http://www.w3.org/1999/xhtml">
<!-- If we use document() in the context of this xsl file, the contextual -->
<!-- CWD is the xsl file containing directory. $basedir reflects the -->
<!-- manual root for that case. -->
<xsl:variable name="basedir" select="'../../'" />
<!-- ==================================================================== -->
<!-- <sitemap> -->
<!-- Process an entire document into an HTML page -->
<!-- ==================================================================== -->
<xsl:template match="/sitemap">
<html xml:lang="{$messages/@lang}" lang="{$messages/@lang}">
<xsl:call-template name="head" />&lf;
<body id="manual-page">&lf;
<xsl:call-template name="top" />&lf;
<div id="page-content">
<div id="preamble">
<h1>
<xsl:value-of select="title" />
</h1>&lf;
<xsl:call-template name="langavail" />&lf;
<xsl:apply-templates select="summary" />
</div>&lf; <!-- /#preamble -->
<xsl:if test="(not($is-chm) and count(category) > 1) or seealso">
<div id="quickview">
<xsl:if test="not($is-chm) and count(category) > 1">
<ul id="toc">&lf;
<xsl:for-each select="category">
<xsl:choose>
<xsl:when test="@id">
<li>
<xsl:text> </xsl:text>
<a href="#{@id}">
<xsl:apply-templates
select="title" mode="print" />
</a>
</li>&lf;
</xsl:when>
<xsl:otherwise>
<li>
<xsl:text> </xsl:text>
<xsl:apply-templates
select="title" mode="print" />
</li>&lf;
</xsl:otherwise>
</xsl:choose>
</xsl:for-each>
</ul>&lf;
</xsl:if>
<xsl:if test="seealso">
<h3>
[@name='seealso']" />
</h3>&lf;
<ul class="seealso">&lf;
<xsl:for-each select="seealso">
<li>
<xsl:apply-templates />
</li>&lf;
</xsl:for-each>
</ul>&lf;
</xsl:if>
</div>&lf; <!-- /#quickview -->
</xsl:if> <!-- have sidebar -->
<xsl:apply-templates select="category" />
</div>&lf; <!-- /#page-content -->
<xsl:call-template name="bottom" />&lf;
</body>
</html>
</xsl:template>
<!-- /sitemap -->
<!-- ==================================================================== -->
<!-- ==================================================================== -->
<li>
<xsl:if test="@separate='yes'">
<xsl:attribute name="class">separate</xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="@href">
<a href="{@href}">
<xsl:with-param name="uri" select="@href" />
</xsl:call-template>
<xsl:value-of select="." />
</a>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="." />
</xsl:otherwise>
</xsl:choose>
</li>&lf;
</xsl:template>
<!-- ==================================================================== -->
<!-- Process a sitemap category -->
<!-- ==================================================================== -->
<xsl:call-template name="toplink" />&lf;
<div class="section">
<!-- Category title -->
<h2>
<xsl:choose>
<xsl:when test="@id">
<a id="{@id}" name="{@id}">
<xsl:apply-templates select="title" mode="print" />
</a>
</xsl:when>
<xsl:otherwise>
<xsl:apply-templates select="title" mode="print" />
</xsl:otherwise>
</xsl:choose>
</h2>&lf;
<!-- category body -->
<ul>
<xsl:apply-templates select="page" />
</ul>
<!-- optional ... -->
<xsl:apply-templates select="modulefilelist" />&lf;
</div> <!-- /.section -->
</xsl:template>
<!-- /category -->
<!-- ==================================================================== -->
<!-- category/modulefilelist -->
<!-- insert module list into sitemap -->
<!-- ==================================================================== -->
<xsl:variable name="translist">
<xsl:text>-</xsl:text>
<xsl:for-each select="modulefile">
<xsl:variable name="current"
select="document(concat($basedir,'mod/',.))/modulesynopsis" />
<xsl:text> </xsl:text>
<xsl:text> </xsl:text>
<xsl:call-template name="module-translatename">
</xsl:call-template>
<xsl:text> -</xsl:text>
</xsl:for-each>
</xsl:variable>
<ul>
<li>
</a>
</li>&lf;
<li>
<a href="mod/mpm_common.html">
</a>
</li>&lf;
<xsl:for-each select="modulefile">
<xsl:sort select="substring-before(substring-after($translist, concat('- ',
document(concat($basedir,'mod/',.))/modulesynopsis/name, ' ')), ' -')" />
<xsl:variable name="current" select="document(concat($basedir, 'mod/', .))
/modulesynopsis" />
<xsl:variable name="name" select="substring-before(substring-after(
<li>
<xsl:text> </xsl:text>
<xsl:value-of select="$name" />
</a>
</li>&lf;
</xsl:if>
</xsl:for-each>
</ul>
<ul>
<xsl:for-each select="modulefile">
<xsl:sort select="substring-before(substring-after($translist, concat('- ',
document(concat($basedir,'mod/',.))/modulesynopsis/name, ' ')), ' -')"/>
<xsl:variable name="current" select="document(concat($basedir,'mod/',.))
/modulesynopsis" />
<li>
<xsl:text> </xsl:text>
</a>
</li>&lf;
</xsl:if>
</xsl:for-each>
</ul>
</xsl:template>
<!-- /category/modulefilelist -->
</xsl:stylesheet>