OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

docbook-apps message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [Elist Home]


Subject: DOCBOOK-APPS: Top border lacking on repeated table headers with xep


XEP (2.x at least) for some reason doesn't put a border declared in fo:table on running headers. So even tho you have frame="all" on your docbook table and rowseps="1" elsewhere, you still end up with this in your output:

+------------------+-----------+
|     Col 1 head   | Col 2 head+
+------------------+-----------+
|                  |    blah   +
|                  |    blah   +
|                  |    blah   +
|                  |    blah   +
|                  |    blah   +
|   first group    |    blah   +
|                  |    blah   +
|                  |    blah   +
+------------------+-----------+

================PAGE BREAK==============


|     Col 1 head   | Col 2 head+
+------------------+-----------+
|                  |    blah   +
|                  |    blah   +
|                  |    blah   +
+------------------+-----------+
|                  |   yadda   +
|   second group   |   yadda   +
|                  |   yadda   +
+------------------+-----------+

Putting borders on the top and bottom of the cells seems to fix it. Why do rowseps currently only result in bottom borders?

*** table.xsl.~1.28.~	Thu Feb  6 01:52:17 2003
--- table.xsl	Thu Feb  6 01:56:21 2003
***************
*** 91,96 ****
--- 91,99 ----
        <xsl:call-template name="border">
          <xsl:with-param name="side" select="'bottom'"/>
        </xsl:call-template>
+ 		<xsl:call-template name="border">
+ 		  <xsl:with-param name="side" select="'top'"/>
+ 		</xsl:call-template>
      </xsl:if>
  
      <xsl:if test="$colsep &gt; 0 and $colnum &lt; ancestor::tgroup/@cols">
***************
*** 497,502 ****
--- 500,508 ----
            <xsl:call-template name="border">
              <xsl:with-param name="side" select="'bottom'"/>
            </xsl:call-template>
+ 		<xsl:call-template name="border">
+ 		  <xsl:with-param name="side" select="'top'"/>
+ 		</xsl:call-template>
          </xsl:if>
  
          <xsl:if test="$colsep &gt; 0 and $col &lt; ancestor::tgroup/@cols">

David


[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [Elist Home]


Powered by eList eXpress LLC