diff options
author | Matt Dew <marcoz@osource.org> | 2012-01-16 13:18:50 -0700 |
---|---|---|
committer | Matt Dew <marcoz@osource.org> | 2012-01-16 13:18:50 -0700 |
commit | 38c6d386637eecc105f6e6b03ff10e6299bd0002 (patch) | |
tree | 1b5db980e3fbe525e653b5727dc14ac44f333c3b /specs/tog-cup.xml | |
parent | 618cea608d726c0aeb48960da7bedc2dd8b36bba (diff) |
informaltable cleanup
On certain tables, add top and bottom borders to table
header and a bottom border to the table. This matches
what those tables in the old pdfs looked like.
the <?dbfo keep-together='always'> prevents tables from
splitting across pages. Useful for tiny tables.
Converting the colwidth to a floating point,
IE, 1* -> 1.0* cleans up these build errors:
WARNING: table-layout="fixed" and column-width unspecified
=> falling back to proportional-column-width(1)
Signed-off-by: Matt Dew <marcoz@osource.org>
Diffstat (limited to 'specs/tog-cup.xml')
-rw-r--r-- | specs/tog-cup.xml | 39 |
1 files changed, 21 insertions, 18 deletions
diff --git a/specs/tog-cup.xml b/specs/tog-cup.xml index c8597a6..a35ff8c 100644 --- a/specs/tog-cup.xml +++ b/specs/tog-cup.xml @@ -109,30 +109,31 @@ available location.) </para> <informaltable frame="none"> - <tgroup cols='1' align='left'> - <colspec colname='c1' colsep="0" colwidth="1*"/> + <?dbfo keep-together="always" ?> + <tgroup cols='1' align='left' colsep='0' rowsep='0'> + <colspec colname='c1' colwidth="1.0*"/> <tbody> - <row rowsep="0"> + <row> <entry> client_major_version: CARD16 </entry> </row> - <row rowsep="0"> + <row> <entry> client_minor_version: CARD16 </entry> </row> - <row rowsep="0"> + <row> <entry> => </entry> </row> - <row rowsep="0"> + <row> <entry> server_major_version: CARD16 </entry> </row> - <row rowsep="0"> + <row> <entry> server_minor_version: CARD16 </entry> @@ -161,20 +162,21 @@ server_minor_version of zero (0). </para> <informaltable frame="none"> - <tgroup cols='1' align='left'> - <colspec colname='c1' colsep="0" colwidth="1*"/> + <?dbfo keep-together="always" ?> + <tgroup cols='1' align='left' colsep='0' rowsep='0'> + <colspec colname='c1' colwidth="1.0*"/> <tbody> - <row rowsep="0"> + <row> <entry> screen: CARD32 </entry> </row> - <row rowsep="0"> + <row> <entry> => </entry> </row> - <row rowsep="0"> + <row> <entry> entries: LISTofCOLORITEM </entry> @@ -203,25 +205,26 @@ MS-Windows applications running/displaying on the same desktop. </para> <informaltable frame="none"> - <tgroup cols='1' align='left'> - <colspec colname='c1' colsep="0" colwidth="1*"/> + <?dbfo keep-together="always" ?> + <tgroup cols='1' align='left' colsep='0' rowsep='0'> + <colspec colname='c1' colwidth="1.0*"/> <tbody> - <row rowsep="0"> + <row> <entry> cmap: COLORMAP </entry> </row> - <row rowsep="0"> + <row> <entry> items: LISTofCOLORITEM </entry> </row> - <row rowsep="0"> + <row> <entry> => </entry> </row> - <row rowsep="0"> + <row> <entry> items: LISTofCOLORITEM </entry> |