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] | [List Home]


Subject: Re: [docbook-apps] Table frame partly disappears for cells with morerows=1


Hi Jon,
It is indeed a bug in the stylesheet. The rowsep is supposed to be ignored for the last row in a table because the table border generates that bottom border. The logic has to take into account @morerows when determining the last row. But it did not do that correctly when the row was in thead. I'll see if I can figure out how to fix it and let you know.

--
Bob Stayton
Sagehill Enterprises
bobs@sagehill.net


On 11/23/2013 3:34 AM, Jon Leech wrote:
<refentry xmlns="http://docbook.org/ns/docbook";  version="5.0" xml:id="abs">
     <refmeta>
         <refentrytitle>abs</refentrytitle>
     </refmeta>
     <refsect1>
         <informaltable>
             <tgroup cols="3">
                 <colspec/>
                 <colspec/>
                 <colspec/>
                 <thead>
                     <row>
                         <entry morerows="1"> head,cell(morerows=1) </entry>
                         <entry>head,cell</entry>
                         <entry morerows="1"> head,cell(morerows=1)</entry>
                     </row>
                     <row>
                         <!-- First & third columns filled by "morerows" above -->
                         <entry>head,cell</entry>
                     </row>
                 </thead>
                 <tbody>
                     <row>
                         <entry morerows="1">cell(morerows=1)</entry>
                         <entry morerows="1">cell(morerows=1)</entry>
                         <entry>cell</entry>
                     </row>
                     <row>
                         <!-- First two columns filled by "morerows" above -->
                         <entry>cell</entry>
                     </row>
                     <row>
                         <entry>cell</entry>
                         <entry>cell</entry>
                         <entry>cell</entry>
                     </row>
                 </tbody>
             </tgroup>
         </informaltable>
     </refsect1>
</refentry>



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