Hi!

Whenever I have a table where an entry doesn't
fit in a column FOP ends up with an
out-of-memory-message.

Debug mode says something like this:

...
[WARNING] table-layout=auto is not supported, using fixed!
[DEBUG] area contents overflows area
[DEBUG] area contents overflows area
[DEBUG] area contents overflows area
[DEBUG] area contents overflows area
...

...using version 0.20.4

If I make the entry in this column a single char larger or smaller,
I don't get this problem.

and this is the docbook document causing the trouble:

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE book
  PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN" 
"file:/c:/docbook/dtd/docbookx.dtd"
  [
    <!ENTITY % global.entities SYSTEM "file:/c:/docbook/include/global.xml">
    %global.entities;

    <!ENTITY % entities SYSTEM "entities.xml">
    %entities;
  ]
>
<book lang="en">
<chapter>
<table>
  <title>Werte im Finanzbericht</title>
  <tgroup cols="4">
    <tbody>
      <row>
        <entry><literal>&lt;xxxxxxxxxxxxxxxxxxx&gt;</literal></entry>
        <entry>test</entry>
        <entry>test</entry>
        <entry>test</entry>
      </row>      
    </tbody>
  </tgroup>
</table>
</chapter>
</book>


Reply via email to