After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 608072 - Tables no longer customizable
Tables no longer customizable
Status: RESOLVED FIXED
Product: doxygen
Classification: Other
Component: general
1.6.2
Other Windows
: Normal normal
: ---
Assigned To: Dimitri van Heesch
Dimitri van Heesch
Depends on:
Blocks:
 
 
Reported: 2010-01-25 20:56 UTC by Luis Vega
Modified: 2010-02-21 12:57 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description Luis Vega 2010-01-25 20:56:51 UTC
Doxygen 1.6.2 ignores most of the customization html tags used to format a table.

Here is a list of primary issues I have found so far:
- Ignores any customization to headers including but not limited to:
   * Background colors
   * Horizontal and vertical alignment
   * Border formatting
   * Font formatting
- Ignores border="0" option on the table

The option for table size appears to works, but pretty much most of the other options don't. The main problem is when using headers, the output completely ignores any customization.

Example, the following should generate a borderless table with no background colors and 10 pix spacing between cells.  Headers should only be displayed in bold font (no custom colors):

/**
 @page EXAMPLE  Table Error Example

<center><table width="90%" border="0" cellspacing="10">
   <tr align="center">
       <th> Header 1 </th>
       <th> Header 2 </th>
       <th> Header 3 </th>
   </tr>
   <tr align="center">
       <td> 1-A </td>
       <td> 2-A </td>
       <td> 3-A </td>
   </tr>
   <tr align="center">
       <td> 1-B </td>
       <td> 2-B </td>
       <td> 3-B </td>
   </tr>
</table></center>

Doxygen 1.5.9 and earlier will generate the table as specified. Doxygen 1.6.2 will generate the table formatted with a navy-blue background, white foreground (headers) and the borders will always display. 

*/
Comment 1 Dimitri van Heesch 2010-01-25 21:16:48 UTC
Confirmed. Should be fixed in the next subversion update.
Comment 2 Dimitri van Heesch 2010-02-21 12:57:39 UTC
This bug was previously marked ASSIGNED, which means it should be fixed in
doxygen version 1.6.3. Please verify if this is indeed the case. Reopen the
bug if you think it is not fixed and please include any additional information 
that you think can be relevant.