diff options
author | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-08-18 19:48:38 +0000 |
---|---|---|
committer | Manuel Canales Esparcia <manuel@linuxfromscratch.org> | 2004-08-18 19:48:38 +0000 |
commit | 45ac9725988a15a74d811e97dee736532f6a9823 (patch) | |
tree | b647c9da059c91b470a0923462be033752c12e2a /stylesheets/pdf | |
parent | 116e06733f9959bb1e75f4514edc7ae89b1c5b68 (diff) |
Made most big the variablelist.max.termlength param for PDF output.
git-svn-id: http://svn.linuxfromscratch.org/LFS/trunk/BOOK@4047 4aa44e1e-78dd-0310-a6d2-fbcd4c07a689
Diffstat (limited to 'stylesheets/pdf')
-rw-r--r-- | stylesheets/pdf/lfs-mixed.xsl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/stylesheets/pdf/lfs-mixed.xsl b/stylesheets/pdf/lfs-mixed.xsl index 3de8ed2fc..d37d3b5c7 100644 --- a/stylesheets/pdf/lfs-mixed.xsl +++ b/stylesheets/pdf/lfs-mixed.xsl @@ -23,16 +23,17 @@ </xsl:choose> </xsl:when> <xsl:otherwise> - <xsl:value-of select="substring-before($url, '//')"/> + <xsl:value-of select="$url"/> + <!-- <xsl:value-of select="substring-before($url, '//')"/> <xsl:text>// </xsl:text> <xsl:call-template name="split-url"> <xsl:with-param name="url2" select="substring-after($url, '//')"/> - </xsl:call-template> + </xsl:call-template>--> </xsl:otherwise> </xsl:choose> </xsl:template> - <xsl:template name="split-url"> + <!--<xsl:template name="split-url"> <xsl:choose> <xsl:when test="contains($url2, '/')"> <xsl:param name="url2" select="''"/> @@ -46,7 +47,7 @@ <xsl:value-of select="$url2"/> </xsl:otherwise> </xsl:choose> - </xsl:template> + </xsl:template>--> <!-- Shade screen --> <xsl:param name="shade.verbatim" select="1"/> @@ -140,6 +141,7 @@ <!-- How is rendered by default a variablelist --> <xsl:param name="variablelist.as.blocks" select="1"/> + <xsl:param name="variablelist.max.termlength">32</xsl:param> <!-- Adding space before segmentedlist --> <xsl:template match="segmentedlist"> |