Changeset e7ce829
- Timestamp:
- 02/06/2005 10:47:42 PM (18 years ago)
- Branches:
- 10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 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, ken/inkscape-core-mods, krejzi/svn, lazarus, nosym, perl-modules, plabs/python-mods, qt5new, systemd-11177, systemd-13485, trunk, upgradedb, xry111/intltool, xry111/soup3, xry111/test-20220226
- Children:
- 52535ba5
- Parents:
- dcd4bfb7
- Location:
- stylesheets
- Files:
-
- 1 deleted
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stylesheets/xhtml/lfs-index.xsl
rdcd4bfb7 re7ce829 7 7 ]> 8 8 9 <!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org> -->10 11 9 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" 12 10 xmlns="http://www.w3.org/1999/xhtml" … … 22 20 23 21 <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> 25 25 </xsl:template> 26 26 … … 28 28 <div class="titlepage"> 29 29 <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> 31 33 </h1> 32 34 </div> … … 45 47 <xsl:choose> 46 48 <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> 48 52 </xsl:when> 49 53 <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> 51 57 </xsl:when> 52 58 <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> 54 62 </xsl:when> 55 63 <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> 57 67 </xsl:when> 58 68 <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> 60 72 </xsl:when> 61 73 <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> 63 77 </xsl:when> 64 78 <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> 66 82 </xsl:when> 67 83 <xsl:otherwise> … … 171 187 </xsl:call-template> 172 188 </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> 174 192 </a><br /> 175 193 </xsl:when> -
stylesheets/xhtml/lfs-toc.xsl
rdcd4bfb7 re7ce829 1 1 <?xml version='1.0' encoding='ISO-8859-1'?> 2 3 <!-- Version 0.9 - Manuel Canales Esparcia <macana@lfs-es.org> -->4 2 5 3 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
Note:
See TracChangeset
for help on using the changeset viewer.