[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

libxdmcp: Changes to 'upstream-unstable'



 Wraphelp.c          |    4 
 configure.ac        |   85 +++---
 doc/.gitignore      |    2 
 doc/Makefile.am     |   63 ----
 doc/xdmcp.xml       |  698 ++++++++++++++++++++++++++--------------------------
 docbook.am          |  105 +++++++
 include/X11/Xdmcp.h |    2 
 7 files changed, 518 insertions(+), 441 deletions(-)

New commits:
commit 60aa228de59270fd1b6d838d80095ac00da53342
Author: Alan Coopersmith <alan.coopersmith@oracle.com>
Date:   Wed Mar 7 19:46:26 2012 -0800

    libXdmcp 1.1.1
    
    Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>

diff --git a/configure.ac b/configure.ac
index 30e57bb..08c046a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -22,7 +22,7 @@
 
 # Initialize Autoconf
 AC_PREREQ([2.60])
-AC_INIT([libXdmcp], [1.1.0],
+AC_INIT([libXdmcp], [1.1.1],
         [https://bugs.freedesktop.org/enter_bug.cgi?product=xorg], [libXdmcp])
 AC_CONFIG_SRCDIR([Makefile.am])
 AC_CONFIG_HEADERS([config.h])

commit a3151f53f0149cd30266474faf8384b93070b8a6
Author: Matt Dew <marcoz@osource.org>
Date:   Wed Jan 11 21:44:51 2012 -0700

    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>

diff --git a/doc/xdmcp.xml b/doc/xdmcp.xml
index 817838e..0f0ab3f 100644
--- a/doc/xdmcp.xml
+++ b/doc/xdmcp.xml
@@ -265,35 +265,36 @@ restriction will not substantially hamper the efficiency of any
 implementation.  Also, no padding of any sort will occur within the packets.
 </para>
 
-<informaltable frame="none">
-  <tgroup cols='3' align='left'>
-  <colspec colname='c1' colsep="0"/>
-  <colspec colname='c2' colsep="0"/>
-  <colspec colname='c3' colsep="0"/>
+<informaltable frame="topbot">
+  <?dbfo keep-together="always" ?>
+  <tgroup cols='3' align='left' colsep='0' rowsep='0'>
+  <colspec colname='c1' colwidth="1.0*"/>
+  <colspec colname='c2' colwidth="1.0*"/>
+  <colspec colname='c3' colwidth="2.0*"/>
   <thead>
-    <row>
+    <row rowsep='1'>
       <entry>Type Name</entry>
       <entry>Length (Bytes)</entry>
       <entry>Description</entry>
     </row>
   </thead>
   <tbody>
-    <row rowsep="0">
+    <row>
       <entry>CARD8</entry>
       <entry>1</entry>
       <entry>A single byte unsigned integer</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>CARD16</entry>
       <entry>2</entry>
       <entry>Two byte unsigned integer</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>CARD32</entry>
       <entry>4</entry>
       <entry>Four byte unsigned integer</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>ARRAY8</entry>
       <entry>n+2</entry>
       <entry>
@@ -302,7 +303,7 @@ a collection of CARD8.  The value of the CARD16
 field (n) specifies the number of CARD8 values to follow
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>ARRAY16</entry>
       <entry>2*m+1</entry>
       <entry>
@@ -310,7 +311,7 @@ This is a CARD8 (m) which specifies the
 number of CARD16 values to follow
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>ARRAY32</entry>
       <entry>4*l+1</entry>
       <entry>
@@ -318,7 +319,7 @@ This is a CARD8 (l) which specifies the
 number of CARD32 values to follow
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>ARRAYofARRAY8</entry>
       <entry>?</entry>
       <entry>
@@ -340,35 +341,36 @@ number of ARRAY8 values to follow.
 All XDMCP packets have the following information:
 </para>
 
-<informaltable frame="none">
-  <tgroup cols='3' align='left'>
-  <colspec colname='c1' colsep="0"/>
-  <colspec colname='c2' colsep="0"/>
-  <colspec colname='c3' colsep="0"/>
+<informaltable frame="topbot">
+  <?dbfo keep-together="always" ?>
+  <tgroup cols='3' align='left' colsep='0' rowsep='0'>
+  <colspec colname='c1' colwidth="1.0*" />
+  <colspec colname='c2' colwidth="1.0*" />
+  <colspec colname='c3' colwidth="2.0*" />
   <thead>
-    <row>
+    <row rowsep='1'>
       <entry>Length (Bytes)</entry>
       <entry>Field Type</entry>
       <entry>Description</entry>
     </row>
   </thead>
   <tbody>
-    <row rowsep="0">
+    <row>
       <entry>2</entry>
       <entry>CARD16</entry>
       <entry>version number</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>2</entry>
       <entry>CARD16</entry>
       <entry>opcode packet header</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>2</entry>
       <entry>CARD16</entry>
       <entry>n = length of remaining data in bytes</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry>n</entry>
       <entry>???</entry>
       <entry>packet-specific data</entry>
@@ -480,49 +482,49 @@ header in the order described without padding, and the length field is
 computed accordingly.
 </para>
 
-<informaltable frame="none">
+<informaltable frame="none" colsep='0' rowsep='0'>
   <tgroup cols='10' align='left'>
-  <colspec colname='col1' colsep="0" colwidth="1*"/>
-  <colspec colname='col2' colsep="0" colwidth="1*"/>
-  <colspec colname='col3' colsep="0" colwidth="1*"/>
-  <colspec colname='col4' colsep="0" colwidth="1*"/>
-  <colspec colname='col5' colsep="0" colwidth="1*"/>
-  <colspec colname='col6' colsep="0" colwidth="1*"/>
-  <colspec colname='col7' colsep="0" colwidth="1*"/>
-  <colspec colname='col8' colsep="0" colwidth="1*"/>
-  <colspec colname='col9' colsep="0" colwidth="1*"/>
-  <colspec colname='col10' colsep="0" colwidth="1*"/>
+  <colspec colname='col1' colwidth="1.0*"/>
+  <colspec colname='col2' colwidth="1.0*"/>
+  <colspec colname='col3' colwidth="1.0*"/>
+  <colspec colname='col4' colwidth="1.0*"/>
+  <colspec colname='col5' colwidth="1.0*"/>
+  <colspec colname='col6' colwidth="1.0*"/>
+  <colspec colname='col7' colwidth="1.0*"/>
+  <colspec colname='col8' colwidth="1.0*"/>
+  <colspec colname='col9' colwidth="1.0*"/>
+  <colspec colname='col10' colwidth="1.0*"/>
   <spanspec namest="col1" nameend="col10" spanname="col1_on" align="left"/>
   <spanspec namest="col2" nameend="col10" spanname="col2_on" align="left"/>
   <spanspec namest="col3" nameend="col10" spanname="col3_on" align="left"/>
   <spanspec namest="col4" nameend="col10" spanname="col4_on" align="left"/>
   <spanspec namest="col5" nameend="col10" spanname="col5_on" align="left"/>
   <tbody>
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on"><emphasis role="bold">Query</emphasis></entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on"><emphasis role="bold">BroadcastQuery</emphasis></entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on"><emphasis role="bold">IndirectQuery</emphasis></entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">Display -> Manager</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">Additional Fields:</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
 <emphasis>Authentication Names</emphasis>: ARRAYofARRAY8
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -533,12 +535,12 @@ manager will choose one of these and return it in the
       </entry>
     </row>
 <!-- AAAAAAAAAAAAA -->
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
-      <entry>Semantics</entry>
+      <entry spanname="col3_on">Semantics</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -588,7 +590,7 @@ Each packet type has slightly different semantics:
 </para>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -632,13 +634,13 @@ is not forwarded.
     </para>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
       <entry spanname="col4_on">Valid Responses:</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -646,18 +648,18 @@ is not forwarded.
 <function>Unwilling</function>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
       <entry spanname="col4_on">Problems/Solutions:</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">Problem:</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -666,7 +668,7 @@ is not forwarded.
 <para>Indication:</para>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -680,13 +682,13 @@ was sent, else failure to receive
 <function>Willing</function>.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
       <entry spanname="col4_on">Solution:</entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -695,14 +697,14 @@ was sent, else failure to receive
 Repeatedly send the packet while waiting for user to choose a manager.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
 Timeout/Retransmission policy:
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -714,26 +716,26 @@ should reset the timeout when user-input is detected.  In this way, the
 display will wakeup when touched by the user.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on">
 <function>ForwardQuery</function>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 <para>Primary Manager -&gt; Secondary Manager</para>
 <para>Additional Fields:</para>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
 <emphasis remap='I'>Client Address</emphasis>: ARRAY8
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -741,14 +743,14 @@ display will wakeup when touched by the user.
 Specifies the network address of the client display.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
 <emphasis remap='I'>Client Port</emphasis>: ARRAY8
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -756,14 +758,14 @@ Specifies the network address of the client display.
 Specifies an identification of the client task on the client display.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
 <emphasis remap='I'>Authentication Names</emphasis>: ARRAYofARRAY8
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -774,13 +776,13 @@ in the
 packet.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Semantics:
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -812,27 +814,27 @@ packet.
         </para>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Valid Responses:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
 <function>Willing</function>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Problems/Solutions:
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -840,13 +842,13 @@ Identical to
 <function>BroadcastQuery</function>
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Timeout/Retransmission policy:
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -855,13 +857,13 @@ retransmitted.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on">
 <function>Willing</function>
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
         <para>
@@ -873,7 +875,7 @@ Additional Fields:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -881,7 +883,7 @@ Additional Fields:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -909,7 +911,7 @@ of authentication.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -917,7 +919,7 @@ of authentication.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -927,7 +929,7 @@ The protocol specifies no interpretation of the data in this field.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -935,7 +937,7 @@ The protocol specifies no interpretation of the data in this field.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -947,14 +949,14 @@ protocol specifies no interpretation of the data in this field.
     </row>
 
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Semantics:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -972,14 +974,14 @@ connections already).
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Problems/Solutions:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -987,7 +989,7 @@ Problem:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1002,7 +1004,7 @@ Indication:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1017,7 +1019,7 @@ was sent, else failure to receive
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1026,7 +1028,7 @@ Solution:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1038,14 +1040,14 @@ The display should continue to send the query until a response is received.
 
 
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Timeout/Retransmission policy:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1054,13 +1056,13 @@ never be retransmitted.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on">
 <function>Unwilling</function>
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
         <para>
@@ -1072,7 +1074,7 @@ Additional Fields:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1084,14 +1086,14 @@ for the refusal of service.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Semantics:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1109,14 +1111,14 @@ particular displays or that handle a limited number of displays at once.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Problems/Solutions:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1124,7 +1126,7 @@ Problem:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1139,7 +1141,7 @@ Indication:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1150,7 +1152,7 @@ Display fails to receive
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1159,7 +1161,7 @@ Solution:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1171,14 +1173,14 @@ messages until a response is received.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Timeout/Retransmission policy:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1186,13 +1188,13 @@ Like all packets sent from the manager to the display, this packet should
 never be retransmitted.
       </entry>
     </row>
-    <row rowsep="0">
+    <row>
       <entry spanname="col1_on">
 <function>Request</function>
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
         <para>
@@ -1204,7 +1206,7 @@ Additional Fields:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1212,7 +1214,7 @@ Additional Fields:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1223,7 +1225,7 @@ This value will be zero for most autonomous displays.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1231,7 +1233,7 @@ This value will be zero for most autonomous displays.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1242,7 +1244,7 @@ corresponds to an X-protocol host family type.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1250,7 +1252,7 @@ corresponds to an X-protocol host family type.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1260,7 +1262,7 @@ this array indicates the network address of the display device.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1273,7 +1275,7 @@ this array indicates the network address of the display device.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1285,7 +1287,7 @@ and use to authenticate itself.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1293,7 +1295,7 @@ and use to authenticate itself.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1304,7 +1306,7 @@ authorization.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1312,7 +1314,7 @@ authorization.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1323,14 +1325,14 @@ Manufacturer Display ID Format.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Semantics:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1348,14 +1350,14 @@ packet.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Valid Responses:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1364,14 +1366,14 @@ Valid Responses:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry spanname="col2_on">
 Problems/Solutions:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry spanname="col3_on">
@@ -1379,7 +1381,7 @@ Problem:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1388,7 +1390,7 @@ Request not received by manager.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1397,7 +1399,7 @@ Indication:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1407,7 +1409,7 @@ Display timeout waiting for response.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1416,7 +1418,7 @@ Solution:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1429,7 +1431,7 @@ message.
     </row>
 
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1438,7 +1440,7 @@ Problem:
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1448,7 +1450,7 @@ Message received out of order by manager.
       </entry>
     </row>
 
-    <row rowsep="0">
+    <row>
       <entry></entry>
       <entry></entry>
       <entry></entry>
@@ -1457,7 +1459,7 @@ Indication:
       </entry>
     </row>
 
-    <row rowsep="0">


Reply to: