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/evi.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/evi.xml')
-rw-r--r-- | specs/evi.xml | 51 |
1 files changed, 27 insertions, 24 deletions
diff --git a/specs/evi.xml b/specs/evi.xml index e5cfac4..7b661f6 100644 --- a/specs/evi.xml +++ b/specs/evi.xml @@ -98,30 +98,31 @@ visuals support double-buffering. </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> <emphasis remap='I'>client_major_version</emphasis>: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> <emphasis remap='I'>client_minor_version</emphasis>: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> => </entry> </row> - <row rowsep="0"> + <row> <entry> <emphasis remap='I'>server_major_version</emphasis>: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> <emphasis remap='I'>server_minor_version</emphasis>: CARD8 </entry> @@ -152,20 +153,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> <emphasis remap='I'>visual_list</emphasis>: LISTofVISUALID </entry> </row> - <row rowsep="0"> + <row> <entry> => </entry> </row> - <row rowsep="0"> + <row> <entry> <emphasis remap='I'>per_visual_info</emphasis>: LISTofVISUALINFO </entry> @@ -179,55 +181,56 @@ where: </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> VISUALINFO: [core_visual_id: VISUALID </entry> </row> - <row rowsep="0"> + <row> <entry> screen: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> level: INT8 </entry> </row> - <row rowsep="0"> + <row> <entry> transparency_type: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> unused: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> transparency_value: CARD32 </entry> </row> - <row rowsep="0"> + <row> <entry> min_hw_colormaps: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> max_hw_colormaps: CARD8 </entry> </row> - <row rowsep="0"> + <row> <entry> num_colormap_conflicts: CARD16 </entry> </row> - <row rowsep="0"> + <row> <entry> colormap_conflicts: LISTofVISUALID] </entry> |