Hello Nancy,
nancy_b wrote: > > For some reason, FOP complains about my tables: > WARNING: table-layout="fixed" and column-width unspecified => falling back > to proportional-column-width(1) > Jul 24, 2007 1:47:14 PM org.apache.fop.fo.flow.TableColumn bind > WARNING: table-layout="fixed" and column-width unspecified => falling back > to proportional-column-width(1) > Jul 24, 2007 1:47:14 PM org.apache.fop.fo.flow.TableColumn bind > > Any guess how I can fix it? > > the problem comes from processing entities like '<colspec colwidth="1*"/>' by .../fo/docbook.xsl in the context of 'table-layout="fixed"'. The attribute value '="1*"' is essential, it is the only critical one. I currently use revision 1.73.1-56.1 of the stylesheets and revision 0.95 of fop. The fo-file reads '<fo:table-column column-number="x"/>' but fop expects '<fo:table-column column-number="x" proportional-column-width(1)"/>'. 'x' is an integer which is unessential in this context. I do not care whether fop has wrong expectations or whether the docbook-stylesheets produce broken code. Anyway, the workaround in to change the input into '<colspec colwidth="1.0*"/>'. -- View this message in context: http://www.nabble.com/table-layout-warning-message-tp11761254p23077150.html Sent from the FOP - Users mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
