141 lines
4.1 KiB
XML
141 lines
4.1 KiB
XML
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
||
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
||
|
version="1.0">
|
||
|
|
||
|
<xsl:import href="xsl-docbook/html/chunk.xsl"/>
|
||
|
|
||
|
<xsl:include href="titlepage.xsl"/>
|
||
|
|
||
|
<!-- canonical URL support -->
|
||
|
<xsl:param name="use.id.as.filename" select="1"/>
|
||
|
|
||
|
<!-- More inline with perl style docs -->
|
||
|
<xsl:param name="funcsynopsis.style" select="ansi"/>
|
||
|
|
||
|
<!-- Label sections -->
|
||
|
<xsl:param name="section.autolabel" select="1"/>
|
||
|
|
||
|
<xsl:param name="local.l10n.xml" select="document('')"/>
|
||
|
|
||
|
<xsl:param name="toc.section.depth">2</xsl:param>
|
||
|
|
||
|
<xsl:param name="chunk.section.depth" select="1"/>
|
||
|
|
||
|
<xsl:param name="chunk.first.sections" select="1"/>
|
||
|
|
||
|
<xsl:param name="navig.showtitles">1</xsl:param>
|
||
|
|
||
|
<xsl:param name="html.cleanup" select="1"/>
|
||
|
|
||
|
<xsl:param name="refentry.generate.title" select="1"/>
|
||
|
|
||
|
<xsl:param name="refentry.generate.name" select="0"/>
|
||
|
|
||
|
<xsl:template name="anchor">
|
||
|
<xsl:param name="node" select="."/>
|
||
|
<xsl:param name="conditional" select="1"/>
|
||
|
<xsl:variable name="id">
|
||
|
<xsl:call-template name="object.id">
|
||
|
<xsl:with-param name="object" select="$node"/>
|
||
|
</xsl:call-template>
|
||
|
</xsl:variable>
|
||
|
<!-- Only write a self referring link if there is an explicit id -->
|
||
|
<xsl:if test="$node/@id">
|
||
|
<a class="linkhere" href="#{$id}">»</a> <a name="{$id}"/>
|
||
|
</xsl:if>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="question">
|
||
|
<xsl:variable name="deflabel">
|
||
|
<xsl:choose>
|
||
|
<xsl:when test="ancestor-or-self::*[@defaultlabel]">
|
||
|
<xsl:value-of select="(ancestor-or-self::*[@defaultlabel])[last()]
|
||
|
/@defaultlabel"/>
|
||
|
</xsl:when>
|
||
|
<xsl:otherwise>
|
||
|
<xsl:value-of select="qanda.defaultlabel"/>
|
||
|
</xsl:otherwise>
|
||
|
</xsl:choose>
|
||
|
</xsl:variable>
|
||
|
|
||
|
<tr class="{name(.)}">
|
||
|
<td align="left" valign="top">
|
||
|
<xsl:call-template name="anchor">
|
||
|
<xsl:with-param name="node" select=".."/>
|
||
|
<xsl:with-param name="conditional" select="0"/>
|
||
|
</xsl:call-template>
|
||
|
<!-- Why do they call this twice?
|
||
|
<xsl:call-template name="anchor">
|
||
|
<xsl:with-param name="conditional" select="0"/>
|
||
|
</xsl:call-template> -->
|
||
|
|
||
|
<b>
|
||
|
<xsl:apply-templates select="." mode="label.markup"/>
|
||
|
<xsl:text>. </xsl:text> <!-- FIXME: Hack!!! This should be in the locale! -->
|
||
|
</b>
|
||
|
</td>
|
||
|
<td align="left" valign="top">
|
||
|
<xsl:choose>
|
||
|
<xsl:when test="$deflabel = 'none' and not(label)">
|
||
|
<b><xsl:apply-templates select="*[name(.) != 'label']"/></b>
|
||
|
</xsl:when>
|
||
|
<xsl:otherwise>
|
||
|
<xsl:apply-templates select="*[name(.) != 'label']"/>
|
||
|
</xsl:otherwise>
|
||
|
</xsl:choose>
|
||
|
</td>
|
||
|
</tr>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="ulink" name="ulink">
|
||
|
<xsl:variable name="link">
|
||
|
<a>
|
||
|
<xsl:if test="@id">
|
||
|
<xsl:attribute name="name">
|
||
|
<xsl:value-of select="@id"/>
|
||
|
</xsl:attribute>
|
||
|
</xsl:if>
|
||
|
<xsl:attribute name="href"><xsl:value-of select="@url"/></xsl:attribute>
|
||
|
<xsl:if test="$ulink.target != ''">
|
||
|
<xsl:attribute name="target">
|
||
|
<xsl:value-of select="$ulink.target"/>
|
||
|
</xsl:attribute>
|
||
|
</xsl:if>
|
||
|
<xsl:choose>
|
||
|
<xsl:when test="count(child::node())=0">
|
||
|
<xsl:value-of select="@url"/>
|
||
|
</xsl:when>
|
||
|
<xsl:otherwise>
|
||
|
<xsl:apply-templates/>
|
||
|
</xsl:otherwise>
|
||
|
</xsl:choose>
|
||
|
<span class="ulink"> <img src="/img/globe.gif" alt="[o]" />»</span>
|
||
|
</a>
|
||
|
</xsl:variable>
|
||
|
<xsl:copy-of select="$link"/>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="guibutton">
|
||
|
<span class="guibutton">
|
||
|
<xsl:call-template name="inline.charseq"/>
|
||
|
</span>
|
||
|
</xsl:template>
|
||
|
|
||
|
<xsl:template match="guilabel">
|
||
|
<span class="guilabel">
|
||
|
<xsl:call-template name="inline.charseq"/>
|
||
|
</span>
|
||
|
</xsl:template>
|
||
|
|
||
|
<l:i18n xmlns:l="http://docbook.sourceforge.net/xmlns/l10n/1.0">
|
||
|
<l:l10n language="en">
|
||
|
<l:context name="xref">
|
||
|
<l:template name="chapter" text="Chapter %n: %t"/>
|
||
|
</l:context>
|
||
|
<l:context name="section-xref-numbered">
|
||
|
<l:template name="section" text="Section %n: %t"/>
|
||
|
</l:context>
|
||
|
</l:l10n>
|
||
|
</l:i18n>
|
||
|
|
||
|
</xsl:stylesheet>
|