Creating multiple pdf files.

2007-04-03 Thread Johan Johansson
Hi! Is it possible to create multiple pdf files? I want to have one pdf file every time it starts over on page 1 fo:page-sequence master-reference={$faktura} force-page-count=even initial-page-number=1 So for every faktura or samlingsfaktura i want to have one pdf, cause they can contain

RE: Creating multiple pdf files.

2007-04-03 Thread Pascal Sancho
Hi Johan, IMHO, you have 2 alternatives: 1/ a preprocess stage that splits your XML, before the XSLT transformation. That can be made using DOM + XPATH expression. 2/ a post-process stage that splits your PDF. There is a lot of tools to do that (googlelize split pdf). Pascal

RE: basic-link doesn't cover all text inside

2007-04-03 Thread Pascal Sancho
Hi Thomas, That sounds like a bug, reproduced with latest FOP TRUNK. I've noticed that the fo:basic-link i-p-d does not fit to the available i-p-d when it contains a fo:page-number-citation. You should fill in a bug report in bugzilla. For more help, I've shrinked your snippet. Pascal

Re: Creating multiple pdf files.

2007-04-03 Thread Abel Braaksma
Pascal Sancho wrote: Hi Johan, IMHO, you have 2 alternatives: 1/ a preprocess stage that splits your XML, before the XSLT transformation. That can be made using DOM + XPATH expression. The OP already seems to be using XSLT to get XSL-FO. If he/she can switch to XSLT 2.0, you can

Re: basic-link doesn't cover all text inside

2007-04-03 Thread Thomas Gelzhaeuser
Hi Pascal. On 4/3/07, Pascal Sancho [EMAIL PROTECTED] wrote: You should fill in a bug report in bugzilla. For more help, I've shrinked your snippet. Thank you for looking into it. The bug report is filed. Thomas.

Convert InputSource into a Character array

2007-04-03 Thread Harshini Madurapperuma
Hi All; In fop Driver class there is a method called public synchronized void render(XMLReader parser, InputSource source) throws FOPException { } Is there a way to convert that InputSource source back into a character array within that render class? I