Changeset e7ce829


Ignore:
Timestamp:
02/06/2005 10:47:42 PM (19 years ago)
Author:
Bruce Dubbs <bdubbs@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
52535ba5
Parents:
dcd4bfb7
Message:

Updates to stylesheeds from Manuel

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@3415 af4574ff-66df-0310-9fd7-8a98e5e911e0

Location:
stylesheets
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • stylesheets/xhtml/lfs-index.xsl

    rdcd4bfb7 re7ce829  
    77]>
    88
    9 <!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org> -->
    10 
    119<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
    1210                xmlns="http://www.w3.org/1999/xhtml"
     
    2220 
    2321  <xsl:template match="index" mode="title.markup">
    24     <xsl:value-of select="$index-title"/>
     22    <xsl:call-template name="gentext">
     23      <xsl:with-param name="key" select="$index-title"/>
     24    </xsl:call-template>
    2525        </xsl:template>
    2626 
     
    2828    <div class="titlepage">
    2929        <h1 class="index">
    30                 <xsl:value-of select="$index-title"/>
     30        <xsl:call-template name="gentext">
     31          <xsl:with-param name="key" select="$index-title"/>
     32        </xsl:call-template>
    3133                        </h1>
    3234    </div>
     
    4547             <xsl:choose>
    4648             <xsl:when test="$divtitle = 'A'">
    47                 <xsl:text>Packages</xsl:text>
     49                <xsl:call-template name="gentext">
     50                  <xsl:with-param name="key">Packages</xsl:with-param>
     51                </xsl:call-template>
    4852             </xsl:when>
    4953             <xsl:when test="$divtitle = 'B'">
    50                 <xsl:text>Programs</xsl:text>
     54                <xsl:call-template name="gentext">
     55                  <xsl:with-param name="key">Programs</xsl:with-param>
     56                </xsl:call-template>
    5157             </xsl:when>
    5258             <xsl:when test="$divtitle = 'C'">
    53                 <xsl:text>Libraries</xsl:text>
     59                <xsl:call-template name="gentext">
     60                  <xsl:with-param name="key">Libraries</xsl:with-param>
     61                </xsl:call-template>
    5462             </xsl:when>
    5563             <xsl:when test="$divtitle = 'D'">
    56                 <xsl:text>Kernel Configuration</xsl:text>
     64                <xsl:call-template name="gentext">
     65                  <xsl:with-param name="key">Kernel Configuration</xsl:with-param>
     66                </xsl:call-template>
    5767             </xsl:when>
    5868             <xsl:when test="$divtitle = 'E'">
    59                 <xsl:text>Configuration Files</xsl:text>
     69                <xsl:call-template name="gentext">
     70                  <xsl:with-param name="key">Configuration Files</xsl:with-param>
     71                </xsl:call-template>
    6072             </xsl:when>
    6173             <xsl:when test="$divtitle = 'F'">
    62                  <xsl:text>Bootscripts</xsl:text>
     74                <xsl:call-template name="gentext">
     75                  <xsl:with-param name="key">Bootscripts</xsl:with-param>
     76                </xsl:call-template>
    6377             </xsl:when>
    6478             <xsl:when test="$divtitle = 'G'">
    65                  <xsl:text>Others</xsl:text>
     79                <xsl:call-template name="gentext">
     80                  <xsl:with-param name="key">Others</xsl:with-param>
     81                </xsl:call-template>
    6682             </xsl:when>
    6783             <xsl:otherwise>
     
    171187            </xsl:call-template>
    172188          </xsl:attribute>
    173           <xsl:text>description </xsl:text>
     189          <xsl:call-template name="gentext">
     190            <xsl:with-param name="key">description</xsl:with-param>
     191          </xsl:call-template>
    174192        </a><br />
    175193      </xsl:when>
  • stylesheets/xhtml/lfs-toc.xsl

    rdcd4bfb7 re7ce829  
    11<?xml version='1.0' encoding='ISO-8859-1'?>
    2 
    3 <!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org> -->
    42
    53<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
Note: See TracChangeset for help on using the changeset viewer.