diff options
author | Matt Dew <marcoz@osource.org> | 2012-01-08 20:26:06 -0700 |
---|---|---|
committer | Matt Dew <marcoz@osource.org> | 2012-01-08 21:11:53 -0700 |
commit | 157ee156d6723a166e60af7de0e8db36c53bc219 (patch) | |
tree | 23ac0908fdd68f6656a49e7727c0c3f479db8fbf /general | |
parent | dfcb585eca08c0962592dcc45354b76a00328147 (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 'general')
-rw-r--r-- | general/ReleaseNotes.xml | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/general/ReleaseNotes.xml b/general/ReleaseNotes.xml index 17cb399..14b2944 100644 --- a/general/ReleaseNotes.xml +++ b/general/ReleaseNotes.xml @@ -341,17 +341,19 @@ The next section describes what is new in the latest version </para> <para> - <informaltable id="drivertables" xreflabel="driver tables"> - <tgroup cols="3"> - <colspec align="left" colsep="1"></colspec> - <colspec align="left" colsep="1"></colspec> - <colspec align="left" colsep="1"></colspec> - <tbody> - <row> + <informaltable id="drivertables" xreflabel="driver tables" frame='topbot'> + <tgroup cols="3" colsep='0' rowsep='0'> + <colspec align="left" colwidth="1.0*"/> + <colspec align="left" colwidth="2.0*"/> + <colspec align="left" colwidth="2.0*"/> + <thead> + <row rowsep='1'> <entry>Driver Name</entry> <entry>Description</entry> <entry>Further Information</entry> </row> + </thead> + <tbody> <row> <entry><literal remap="tt">apm</literal></entry> <entry>Alliance Pro Motion</entry> @@ -611,17 +613,20 @@ The next section describes what is new in the latest version <para> - <informaltable> - <tgroup cols="3"> - <colspec align="left" colsep="1"></colspec> - <colspec align="left" colsep="1"></colspec> - <colspec align="left" colsep="1"></colspec> - <tbody> - <row> + <informaltable frame='topbot'> + <?dbfo keep-together="always" ?> + <tgroup cols="3" colsep='0' rowsep='0'> + <colspec colname='c1' align="left" colwidth="1.0*"/> + <colspec colname='c2' align="left" colwidth="1.0*"/> + <colspec colname='c3' align="left" colwidth="1.0*"/> + <thead> + <row rowsep='1'> <entry>Driver Name</entry> <entry>Description</entry> <entry>Further Information</entry> </row> + </thead> + <tbody> <row> <entry><literal remap="tt">acecad</literal></entry> <entry>Acecad Flair</entry> |