123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312 |
- <?xml version='1.0' encoding='ISO-8859-1'?>
- <!--
- $LastChangedBy$
- $Date$
- -->
- <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
- xmlns="http://www.w3.org/1999/xhtml"
- version="1.0">
- <!-- This stylesheet contains misc templates for output formating.
- This file is for that templates that don't fit in other files
- and that not afect the chunk algorithm. -->
- <!-- Individual elements templates -->
- <!-- para:
- Added a choose to skip empty "Home page" in packages.xml.
- Added an if for HLFS features. -->
- <!-- The original template is in {docbook-xsl}/xhtml/block.xsl -->
- <xsl:template match="para">
- <xsl:choose>
- <xsl:when test="child::ulink[@url=' ']"/>
- <xsl:otherwise>
- <xsl:call-template name="paragraph">
- <xsl:with-param name="class">
- <xsl:if test="@role">
- <xsl:if test="$book-type = 'hlfs'">
- <xsl:if test="contains($hlfs-features,concat(',',@role,','))">
- <xsl:text>feature-</xsl:text>
- </xsl:if>
- </xsl:if>
- <xsl:value-of select="@role"/>
- </xsl:if>
- </xsl:with-param>
- <xsl:with-param name="content">
- <xsl:if test="position() = 1 and parent::listitem">
- <xsl:call-template name="anchor">
- <xsl:with-param name="node" select="parent::listitem"/>
- </xsl:call-template>
- </xsl:if>
- <xsl:call-template name="anchor"/>
- <xsl:apply-templates/>
- </xsl:with-param>
- </xsl:call-template>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <!-- screen:
- Changed class attribute asignament to fit our look needs.
- Removed unused line numbering support. -->
- <!-- The original template is in {docbook-xsl}/xhtml/verbatim.xsl
- It match also programlisting and synopsis. The code for that tags
- is unchanged. -->
- <xsl:template match="screen">
- <pre>
- <xsl:attribute name="class">
- <xsl:choose>
- <xsl:when test="@role and not(@role = 'nodump')">
- <xsl:if test="$book-type = 'hlfs'">
- <xsl:if test="contains($hlfs-features,concat(',',@role,','))">
- <xsl:text>feature-</xsl:text>
- </xsl:if>
- </xsl:if>
- <xsl:value-of select="@role"/>
- </xsl:when>
- <xsl:when test="child::* = userinput">userinput</xsl:when>
- <xsl:otherwise>
- <xsl:value-of select="name(.)"/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:attribute>
- <xsl:apply-templates/>
- </pre>
- </xsl:template>
- <!-- userinput:
- Using a customized output when inside screen.
- In other cases, use the original template. -->
- <!-- The original template is in {docbook-xsl}/xhtml/inline.xsl -->
- <xsl:template match="userinput">
- <xsl:choose>
- <xsl:when test="ancestor::screen">
- <kbd class="command">
- <xsl:apply-templates/>
- </kbd>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-imports/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <!-- itemizadlist:
- @compact is not allowed in XHTML 1.0 Strict DTD. Changing it
- to @class. -->
- <!-- The original template is in {docbook-xsl}/xhtml/lists.xsl -->
- <xsl:template match="itemizedlist">
- <div>
- <xsl:apply-templates select="." mode="class.attribute"/>
- <xsl:call-template name="anchor"/>
- <xsl:if test="title">
- <xsl:call-template name="formal.object.heading"/>
- </xsl:if>
- <xsl:apply-templates select="*[not(self::listitem or self::title
- or self::titleabbrev)]
- |comment()[not(preceding-sibling::listitem)]
- |processing-instruction()[not(preceding-sibling::listitem)]"/>
- <ul>
- <xsl:if test="@spacing='compact'">
- <xsl:attribute name="class">
- <xsl:value-of select="@spacing"/>
- </xsl:attribute>
- </xsl:if>
- <xsl:apply-templates select="listitem |comment()[preceding-sibling::listitem]
- |processing-instruction()[preceding-sibling::listitem]"/>
- </ul>
- </div>
- </xsl:template>
- <!-- orderedlist:
- @start, @type, and @compact sre not allowed in XHTML 1.0 Strict DTD.
- @start and @type can be replaced by CSS code.
- Changing @compact to @class. -->
- <!-- The original template is in {docbook-xsl}/xhtml/lists.xsl -->
- <xsl:template match="orderedlist">
- <div>
- <xsl:apply-templates select="." mode="class.attribute"/>
- <xsl:call-template name="anchor"/>
- <xsl:if test="title">
- <xsl:call-template name="formal.object.heading"/>
- </xsl:if>
- <xsl:apply-templates select="*[not(self::listitem or self::title
- or self::titleabbrev)]
- |comment()[not(preceding-sibling::listitem)]
- |processing-instruction()[not(preceding-sibling::listitem)]"/>
- <ol>
- <xsl:if test="@spacing='compact'">
- <xsl:attribute name="class">
- <xsl:value-of select="@spacing"/>
- </xsl:attribute>
- </xsl:if>
- <xsl:apply-templates select="listitem |comment()[preceding-sibling::listitem]
- |processing-instruction()[preceding-sibling::listitem]"/>
- </ol>
- </div>
- </xsl:template>
- <!-- seg in segementedlist:
- Added a span around seg text to can match it with CSS code. -->
- <!-- The original template is in {docbook-xsl}/xhtml/lists.xsl -->
- <xsl:template match="seg">
- <xsl:variable name="segnum" select="count(preceding-sibling::seg)+1"/>
- <xsl:variable name="seglist" select="ancestor::segmentedlist"/>
- <xsl:variable name="segtitles" select="$seglist/segtitle"/>
- <!-- Note: segtitle is only going to be the right thing in a well formed
- SegmentedList. If there are too many Segs or too few SegTitles,
- you'll get something odd...maybe an error -->
- <div class="seg">
- <strong class="segtitle">
- <xsl:apply-templates select="$segtitles[$segnum=position()]"
- mode="segtitle-in-seg"/>
- <xsl:text>: </xsl:text>
- </strong>
- <span class="segbody">
- <xsl:if test="@id">
- <a id="{@id}" name="{@id}"/>
- </xsl:if>
- <xsl:apply-templates/>
- </span>
- </div>
- </xsl:template>
- <!-- variablelist:
- If it have a role attribute, wrap the default output into a div with
- a class attribute matching that role attribute.
- Apply the original template in all cases. -->
- <!-- The original template is in {docbook-xsl}/xhtml/lists.xsl -->
- <xsl:template match="variablelist">
- <xsl:choose>
- <xsl:when test="@role">
- <div class="{@role}">
- <xsl:apply-imports/>
- </div>
- </xsl:when>
- <xsl:otherwise>
- <xsl:apply-imports/>
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
- <!-- para/simplelist:
- Self-made template. Add a line break and process the childs.
- If @type is specified, the original templates should be used,
- but not tested. -->
- <xsl:template match="para/simplelist">
- <br/>
- <xsl:apply-templates mode="condensed"/>
- </xsl:template>
- <!-- member:
- Self-made template to process it and add a line break. -->
- <xsl:template match="member" mode="condensed">
- <xsl:call-template name="anchor"/>
- <xsl:call-template name="simple.xlink">
- <xsl:with-param name="content">
- <xsl:apply-templates/>
- </xsl:with-param>
- </xsl:call-template>
- <br/>
- </xsl:template>
- <!-- Named formating templates -->
- <!-- Body attributes:
- Add to the body XHTML output tag a class attribute with the book type
- and a id attribute with the book type and version. -->
- <!-- The original template is in {docbook-xsl}/xhtml/docbook.xsl -->
- <xsl:template name="body.attributes">
- <xsl:attribute name="class">
- <xsl:value-of select="$book-type"/>
- </xsl:attribute>
- <xsl:attribute name="id">
- <xsl:value-of select="$book-type"/>
- <xsl:text>-</xsl:text>
- <xsl:value-of select="substring-after(/book/bookinfo/subtitle, ' ')"/>
- </xsl:attribute>
- </xsl:template>
- <!-- Revision History -->
- <!-- revhistory mode titlepage.mode:
- Removed hardcoded style attributes.
- Removed support for separate revhistory file. -->
- <!-- The original template is in {docbook-xsl}/xhtml/titlepage.xsl -->
- <xsl:template match="revhistory" mode="titlepage.mode">
- <xsl:variable name="numcols">
- <xsl:choose>
- <xsl:when test="//authorinitials">4</xsl:when>
- <xsl:otherwise>3</xsl:otherwise>
- </xsl:choose>
- </xsl:variable>
- <xsl:variable name="title">
- <xsl:call-template name="gentext">
- <xsl:with-param name="key">RevHistory</xsl:with-param>
- </xsl:call-template>
- </xsl:variable>
- <xsl:variable name="contents">
- <table summary="{$title}" class="{name(.)}">
- <tr>
- <th colspan="{$numcols}">
- <b>
- <xsl:value-of select="$title"/>
- </b>
- </th>
- </tr>
- <xsl:apply-templates mode="titlepage.mode">
- <xsl:with-param name="numcols" select="$numcols"/>
- </xsl:apply-templates>
- </table>
- </xsl:variable>
- <xsl:copy-of select="$contents"/>
- </xsl:template>
- <!-- revhistory/revision mode titlepage.mode:
- Removed hardcoded style attributes. -->
- <!-- The original template is in {docbook-xsl}/xhtml/titlepage.xsl -->
- <xsl:template match="revhistory/revision" mode="titlepage.mode">
- <xsl:param name="numcols" select="'3'"/>
- <xsl:variable name="revnumber" select="revnumber"/>
- <xsl:variable name="revdate" select="date"/>
- <xsl:variable name="revauthor" select="authorinitials|author"/>
- <xsl:variable name="revremark" select="revremark|revdescription"/>
- <tr>
- <td>
- <xsl:if test="$revnumber">
- <xsl:call-template name="gentext">
- <xsl:with-param name="key" select="'Revision'"/>
- </xsl:call-template>
- <xsl:call-template name="gentext.space"/>
- <xsl:apply-templates select="$revnumber[1]" mode="titlepage.mode"/>
- </xsl:if>
- </td>
- <td>
- <xsl:apply-templates select="$revdate[1]" mode="titlepage.mode"/>
- </td>
- <xsl:choose>
- <xsl:when test="$revauthor">
- <td>
- <xsl:for-each select="$revauthor">
- <xsl:apply-templates select="." mode="titlepage.mode"/>
- <xsl:if test="position() != last()">
- <xsl:text>, </xsl:text>
- </xsl:if>
- </xsl:for-each>
- </td>
- </xsl:when>
- <xsl:when test="$numcols > 3">
- <td> </td>
- </xsl:when>
- <xsl:otherwise/>
- </xsl:choose>
- <td>
- <xsl:apply-templates select="$revremark[1]" mode="titlepage.mode"/>
- </td>
- </tr>
- </xsl:template>
- </xsl:stylesheet>
|