Blame SOURCES/docbook-xsl-marginleft.patch

54d5d1
diff -urNp docbook-xsl-1.78.0-orig/fo/lists.xsl docbook-xsl-1.78.0/fo/lists.xsl
54d5d1
--- docbook-xsl-1.78.0-orig/fo/lists.xsl	2012-12-20 11:45:07.870679175 +0100
54d5d1
+++ docbook-xsl-1.78.0/fo/lists.xsl	2012-12-20 11:55:31.440307881 +0100
54d5d1
@@ -376,7 +376,7 @@
54d5d1
       </xsl:when>
54d5d1
       <xsl:when test="@termlength">
54d5d1
         <xsl:variable name="termlength.is.number">
54d5d1
-          <xsl:value-of select="@termlength + 0"/>
54d5d1
+          <xsl:value-of select="@termlength"/>
54d5d1
         </xsl:variable>
54d5d1
         <xsl:choose>
54d5d1
           <xsl:when test="string($termlength.is.number) = 'NaN'">
54d5d1
@@ -385,7 +385,7 @@
54d5d1
           </xsl:when>
54d5d1
           <xsl:otherwise>
54d5d1
             <xsl:value-of select="@termlength"/>
54d5d1
-            <xsl:text>em * 0.60</xsl:text>
54d5d1
+            <xsl:text>em</xsl:text>
54d5d1
           </xsl:otherwise>
54d5d1
         </xsl:choose>
54d5d1
       </xsl:when>
54d5d1
@@ -394,7 +394,7 @@
54d5d1
           <xsl:with-param name="terms" select="varlistentry/term"/>
54d5d1
           <xsl:with-param name="maxlength" select="$variablelist.max.termlength"/>
54d5d1
         </xsl:call-template>
54d5d1
-        <xsl:text>em * 0.60</xsl:text>
54d5d1
+        <xsl:text>em</xsl:text>
54d5d1
       </xsl:otherwise>
54d5d1
     </xsl:choose>
54d5d1
   </xsl:variable>
54d5d1
@@ -409,8 +409,6 @@
54d5d1
   <xsl:variable name="label-separation">1em</xsl:variable>
54d5d1
   <xsl:variable name="distance-between-starts">
54d5d1
     <xsl:value-of select="$termlength"/>
54d5d1
-    <xsl:text>+</xsl:text>
54d5d1
-    <xsl:value-of select="$label-separation"/>
54d5d1
   </xsl:variable>
54d5d1
 
54d5d1
   <xsl:if test="title">
54d5d1
diff -ruNp docbook-xsl-1.74.0.orig/fo/param.xsl docbook-xsl-1.74.0/fo/param.xsl
54d5d1
--- docbook-xsl-1.74.0.orig/fo/param.xsl	2008-06-02 01:06:18.000000000 +0200
54d5d1
+++ docbook-xsl-1.74.0/fo/param.xsl	2008-08-06 13:32:46.000000000 +0200
54d5d1
@@ -133,8 +133,8 @@
54d5d1
 <xsl:attribute-set name="component.title.properties">
54d5d1
   <xsl:attribute name="keep-with-next.within-column">always</xsl:attribute>
54d5d1
   <xsl:attribute name="space-before.optimum"><xsl:value-of select="concat($body.font.master, 'pt')"/></xsl:attribute>
54d5d1
-  <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master, 'pt * 0.8')"/></xsl:attribute>
54d5d1
-  <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master, 'pt * 1.2')"/></xsl:attribute>
54d5d1
+  <xsl:attribute name="space-before.minimum"><xsl:value-of select="concat($body.font.master*0.8, 'pt')"/></xsl:attribute>
54d5d1
+  <xsl:attribute name="space-before.maximum"><xsl:value-of select="concat($body.font.master*1.2, 'pt')"/></xsl:attribute>
54d5d1
   <xsl:attribute name="hyphenate">false</xsl:attribute>
54d5d1
   <xsl:attribute name="text-align">
54d5d1
     <xsl:choose>