[css2xslfo-support] [FOP] workarounds for xhtml table ?
Brought to you by:
wdonne
From: Matthias W. <mwe...@pi...> - 2005-06-02 08:51:56
|
Hi, I come back to css2xslfo. I have currently the problem, that I need to = generate a PDF that=20 contains a xhtml table. my xhtml is <?xml version=3D"1.0"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=3D"http://www.w3.org/1999/xhtml"> <head> <title>Foo</title> <style type=3D"text/css"> body, h1, h2, h3, p, div, ol, li, table, thead, tbody, th, tr, td { hyphenate: false; } </style> </head> <body> =20 <table> <thead> <tr> <th>User</th> </tr> </thead> <tbody> <tr> <td> MW </td> </tr> </tbody> </table> </body> </html> I guess it is valid. But the FOP tells me: [INFO] building formatting object tree [INFO] setting up fonts [ERROR] property - "text-transform" is not implemented yet. [ERROR] property - "text-transform" is not implemented yet. [INFO] [1] [WARNING] table-layout=3Dauto is not supported, using fixed! [WARNING] current implementation of tables requires a table-column for = each column, indicating column-width [INFO] Parsing of document complete, stopping renderer and the PDF is blank, no table there :-( Does anybody know a workaround to output that table using FOP ? Thanks, Matthias |