Hi

On 03/18/2011 11:32 AM, gonandriy wrote:
When I try generate PDF document with mwlib.rl, I receive two
exceptions:
1) LayoutError: More than 10 pages generated without content - halting
layout.  Likely that a flowable is too large for any frame.
2) ValueError: format not resolved 0

I am quite sure that only the first exception matters. There is one object in your PDF which is too large to fit on a page. Most likely this is related to a table or a div-node.

Background to tables: tables are split across mutliple pages if they are too large to fit on a single page. But the splitting only works between table rows - therefore you might have a table row (table cell) which is too big.

Try rendering the article manually with the debug option (-W debug). The exception should give you a hint where the layout error occurs, and you can look for that element in the debug output (the parse tree is printed out - that is comparable to the DOM tree of an html page).

If you have identified to large object check if it is caused by a markup error. If not, try splitting it into multiple smaller objects.

If your wiki is publicly accessible you could also post a link to the problematic article and I could have a look. Maybe I can give you a hint whats wrong.

Regards,
Volker

--
volker haas                 brainbot technologies ag
fon +49 6131 2116394        boppstraße 64
fax +49 6131 2116392        55118 mainz
[email protected]    http://www.brainbot.com/

--
You received this message because you are subscribed to the Google Groups 
"mwlib" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/mwlib?hl=en.

Reply via email to