/trunk/lfs/stylesheets/lfs-xsl/docbook-xsl-snapshot/fo/table.xsl |
---|
13,7 → 13,7 |
<xsl:include href="../common/table.xsl"/> |
<!-- ******************************************************************** |
$Id: table.xsl,v 1.2 2008-07-14 18:28:28 texou Exp $ |
$Id: table.xsl,v 1.3 2009-01-08 22:58:12 texou Exp $ |
******************************************************************** |
This file is part of the XSL DocBook Stylesheet distribution. |
27,7 → 27,7 |
<info> |
<title>Formatting Object Table Reference</title> |
<releaseinfo role="meta"> |
$Id: table.xsl,v 1.2 2008-07-14 18:28:28 texou Exp $ |
$Id: table.xsl,v 1.3 2009-01-08 22:58:12 texou Exp $ |
</releaseinfo> |
</info> |
<partintro xml:id="partintro"> |
248,7 → 248,7 |
xsl:use-attribute-sets="table.cell.padding"> |
<xsl:if test="$xep.extensions != 0"> |
<!-- Suggested by RenderX to workaround a bug in their implementation --> |
<xsl:attribute name="keep-together.within-column">always</xsl:attribute> |
<xsl:attribute name="keep-together.within-column">auto</xsl:attribute> |
</xsl:if> |
<xsl:if test="$rowsep > 0"> |
<xsl:call-template name="border"> |
/trunk/lfs/stylesheets/lfs-xsl/docbook-xsl-snapshot/fo/lists.xsl |
---|
4,7 → 4,7 |
version='1.0'> |
<!-- ******************************************************************** |
$Id: lists.xsl,v 1.2 2008-07-14 18:28:28 texou Exp $ |
$Id: lists.xsl,v 1.3 2009-01-08 22:58:12 texou Exp $ |
******************************************************************** |
This file is part of the XSL DocBook Stylesheet distribution. |
577,7 → 577,7 |
<xsl:variable name="id"><xsl:call-template name="object.id"/></xsl:variable> |
<fo:block id="{$id}" xsl:use-attribute-sets="list.item.spacing" |
keep-together.within-column="always" |
keep-together.within-column="auto" |
keep-with-next.within-column="always"> |
<xsl:apply-templates select="term"/> |
</fo:block> |
/trunk/lfs/stylesheets/lfs-xsl/pdf/lfs-mixed.xsl |
---|
1,8 → 1,8 |
<?xml version='1.0' encoding='ISO-8859-1'?> |
<!-- |
$LastChangedBy: manuel $ |
$Date: 2008-07-14 18:28:31 $ |
$LastChangedBy: bdubbs $ |
$Date: 2009-01-08 22:58:12 $ |
--> |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" |
99,9 → 99,32 |
<xsl:when test="$keep.together != ''"> |
<xsl:value-of select="$keep.together"/> |
</xsl:when> |
<!-- The following section has been modified by Martin Miehe. Page breaks |
should be allowed within the long script listings in the appendices. |
<xsl:otherwise>always</xsl:otherwise> |
--> |
<xsl:otherwise> |
<xsl:choose> |
<xsl:when test="ancestor::appendix">auto</xsl:when> |
<xsl:otherwise>always</xsl:otherwise> |
</xsl:choose> |
</xsl:otherwise> |
<!-- End of modification --> |
</xsl:choose> |
</xsl:attribute> |
<!-- The following lines were inserted by Martin Miehe. Scripts and rules |
in the appendices should have a smaller font-size so that at least |
80 characters fit to one line. --> |
<xsl:if test="ancestor::appendix"> <!-- name(/) != appendix" --> |
<xsl:attribute name="font-size">10pt</xsl:attribute> |
</xsl:if> |
<!-- End of insertion. --> |
<xsl:apply-imports/> |
</fo:block> |
</xsl:template> |