diff options
| author | William Harrington <kb0iic@berzerkula.org> | 2014-11-27 16:29:31 -0600 | 
|---|---|---|
| committer | William Harrington <kb0iic@berzerkula.org> | 2014-11-27 16:29:31 -0600 | 
| commit | 7df987a652b93d55dd8eca363706d3bacc469b55 (patch) | |
| tree | 17f84ce0fee76a3a0476b714eae09486ab2470e6 /stylesheets/lfs-xsl/xhtml/.svn/text-base/lfs-mixed.xsl.svn-base | |
Diffstat (limited to 'stylesheets/lfs-xsl/xhtml/.svn/text-base/lfs-mixed.xsl.svn-base')
| -rw-r--r-- | stylesheets/lfs-xsl/xhtml/.svn/text-base/lfs-mixed.xsl.svn-base | 312 | 
1 files changed, 312 insertions, 0 deletions
diff --git a/stylesheets/lfs-xsl/xhtml/.svn/text-base/lfs-mixed.xsl.svn-base b/stylesheets/lfs-xsl/xhtml/.svn/text-base/lfs-mixed.xsl.svn-base new file mode 100644 index 0000000..c7b9dcf --- /dev/null +++ b/stylesheets/lfs-xsl/xhtml/.svn/text-base/lfs-mixed.xsl.svn-base @@ -0,0 +1,312 @@ +<?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 atribute 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>  | 
