93160b5fcc
Tue Jan 20 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-6 - Fix last margin-left fix (bug #113456). - Reduce instances of itemized/ordered lists having misalignments. Sun Jan 18 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-5 - And another (bug #113456). Thu Jan 15 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-4 - Fixed another instance of bug #113456 in lists layout. Wed Jan 14 2004 Tim Waugh <twaugh@redhat.com> 1.64.1-3 - Hard-code the margin-left work around to expect passivetex (bug #113456). Wed Dec 24 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-2 - Another manpage fix. Fri Dec 19 2003 Tim Waugh <twaugh@redhat.com> 1.64.1-1 - 1.64.1. Thu Dec 18 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-2 - Another manpage fix. Tue Dec 16 2003 Tim Waugh <twaugh@redhat.com> 1.64.0-1 - 1.64.0. Fri Dec 12 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-3 - Use the fr.xml from 1.62.1 (bug #111989). Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-2 - Manpages fixes. Thu Dec 11 2003 Tim Waugh <twaugh@redhat.com> 1.62.4-1 - 1.62.4. - No longer need hyphens patch. - Avoid expressions in margin-left attributes, since passivetex does not understand them.
74 lines
2.7 KiB
Diff
74 lines
2.7 KiB
Diff
--- docbook-xsl-1.64.1/fo/pagesetup.xsl.marginleft 2003-12-17 00:57:36.000000000 +0000
|
|
+++ docbook-xsl-1.64.1/fo/pagesetup.xsl 2004-01-18 16:29:32.000000000 +0000
|
|
@@ -34,29 +34,11 @@
|
|
margin-left="{$page.margin.outer} - {$title.margin.left}"
|
|
-->
|
|
<xsl:param name="margin.left.outer">
|
|
- <xsl:choose>
|
|
- <xsl:when test="$passivetex.extensions != 0">
|
|
- <xsl:value-of select="$page.margin.outer"/>
|
|
- </xsl:when>
|
|
- <xsl:otherwise>
|
|
- <xsl:value-of select="$page.margin.outer"/>
|
|
- <xsl:text> - </xsl:text>
|
|
- <xsl:value-of select="$title.margin.left"/>
|
|
- </xsl:otherwise>
|
|
- </xsl:choose>
|
|
+ <xsl:value-of select="$page.margin.outer"/>
|
|
</xsl:param>
|
|
|
|
<xsl:param name="margin.left.inner">
|
|
- <xsl:choose>
|
|
- <xsl:when test="$passivetex.extensions != 0">
|
|
- <xsl:value-of select="$page.margin.inner"/>
|
|
- </xsl:when>
|
|
- <xsl:otherwise>
|
|
- <xsl:value-of select="$page.margin.inner"/>
|
|
- <xsl:text> - </xsl:text>
|
|
- <xsl:value-of select="$title.margin.left"/>
|
|
- </xsl:otherwise>
|
|
- </xsl:choose>
|
|
+ <xsl:value-of select="$page.margin.inner"/>
|
|
</xsl:param>
|
|
|
|
<xsl:template name="setup.pagemasters">
|
|
--- docbook-xsl-1.64.1/fo/lists.xsl.marginleft 2003-12-04 20:13:46.000000000 +0000
|
|
+++ docbook-xsl-1.64.1/fo/lists.xsl 2004-01-18 16:31:51.000000000 +0000
|
|
@@ -303,7 +303,7 @@
|
|
</xsl:when>
|
|
<xsl:when test="@termlength">
|
|
<xsl:variable name="termlength.is.number">
|
|
- <xsl:value-of select="@termlength + 0"/>
|
|
+ <xsl:value-of select="@termlength"/>
|
|
</xsl:variable>
|
|
<xsl:choose>
|
|
<xsl:when test="$termlength.is.number = 'NaN'">
|
|
@@ -312,7 +312,7 @@
|
|
</xsl:when>
|
|
<xsl:otherwise>
|
|
<xsl:value-of select="@termlength"/>
|
|
- <xsl:text>em * 0.60</xsl:text>
|
|
+ <xsl:text>em</xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:when>
|
|
@@ -321,7 +321,7 @@
|
|
<xsl:with-param name="terms" select="varlistentry/term"/>
|
|
<xsl:with-param name="maxlength" select="$variablelist.max.termlength"/>
|
|
</xsl:call-template>
|
|
- <xsl:text>em * 0.60</xsl:text>
|
|
+ <xsl:text>em</xsl:text>
|
|
</xsl:otherwise>
|
|
</xsl:choose>
|
|
</xsl:variable>
|
|
@@ -348,8 +348,7 @@
|
|
|processing-instruction()[not(preceding-sibling::varlistentry)]"/>
|
|
|
|
<fo:list-block id="{$id}"
|
|
- provisional-distance-between-starts=
|
|
- "{$termlength}+{$label-separation}"
|
|
+ provisional-distance-between-starts="{$termlength}"
|
|
provisional-label-separation="{$label-separation}"
|
|
xsl:use-attribute-sets="list.block.spacing">
|
|
<xsl:apply-templates mode="vl.as.list"
|