I ran the transform just to generate the FO and subsequently tried to
generate the pdf from that fo and found that as long as the header text
was limited and not overflowing into the next page it was doing
fine(i.e. pdf generated) but as soon as the header overflowed from page
1 ('simple') then I ran into the same error as previous...

 

Error: Flow 'xsl-region-body' does not map to the region-body in
page-master 'blank-page'. FOP presently does not support this.

 

The FO generated from the transform is below. Plz let me know if there
is something that needs to be corrected in this.

 

 

<?xml version="1.0" encoding="UTF-8"?>

<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>

      <fo:layout-master-set>

            <fo:page-sequence-master master-name="document">

                  <fo:single-page-master-reference
master-reference="simple"/>

                  <fo:single-page-master-reference
master-reference="blank-page"/>

                  <fo:repeatable-page-master-reference
master-reference="simple"/>

            </fo:page-sequence-master>

            <fo:simple-page-master page-width="21.6cm"
page-height="18.5cm" master-name="simple">

                  <fo:region-body/>

                  <fo:region-after/>

            </fo:simple-page-master>

      

            <fo:simple-page-master page-width="21.6cm"
page-height="18.5cm" master-name="blank-page">

                  <fo:region-body region-name="blank"/>

                  <fo:region-after/>

            </fo:simple-page-master>

      </fo:layout-master-set>

      

      <fo:page-sequence master-reference="document">

            <fo:static-content flow-name="blank">

                  <fo:block font-family="Helvetica" font-weight="bold"
font-size="32pt">

                        FOOTER TEXT

                  </fo:block>

            </fo:static-content>

            

            <fo:flow flow-name="xsl-region-body">

                  <fo:block font-family="Helvetica" font-weight="bold"
font-size="32pt">

                        HEADER TEXT..Sample Text....Sample
Text....Sample Text....Sample Text....Sample Text....Sample Text....

                        Sample Text....Sample Text....Sample
Text....Sample Text....Sample Text....Sample Text....Sample Text..

                        ..Sample Text....Sample Text....Sample
Text....Sample Text....Sample Text....Sample Text....Sample Text..

                        ..Sample Text....Sample Text....Sample
Text....Sample Text....Sample Text....Sample Text....Sample Text..

                        ..Sample Text....

                  </fo:block>

            </fo:flow>

      </fo:page-sequence>

</fo:root>

 

-----Original Message-----
From: Jeremias Maerki [mailto:d...@jeremias-maerki.ch] 
Sent: Tuesday, December 16, 2008 3:38 AM
To: fop-users@xmlgraphics.apache.org
Subject: Re: Force page break to skip immediate next page and continue
writing on third page

 

Abhishek,

 

I don't think you're hitting a limitation of FOP. Eric has a point. It

appears that the FO you're generating is not valid and that's why FOP

shows errors. To debug the situation I suggest you take FOP out of the

picture for the moment and just run your XSLT transformation. Then take

a look at the FO file that is generated and fix your stylesheet as

necessary. As a convenience, FOP offers to run just the XSLT

transformation on the command-line:

fop -xml my.xml -xsl my.xml -foout out.fo

 

It can be difficult to debug problems if you always run both the XSLT

transformation and the FO layout at the same time.

 

Good luck!

 

On 15.12.2008 21:10:42 Chakravarty, Abhishek wrote:

> Yes, I am using an xsl and xml to generate my pdf through FOP 0.95

> instead of using only an FO file. 

> 

> However I am able to generate an FO from my xsl and xml but unable to

> generate the pdf itself either by a combination of the xsl and xml or

> just through fo alone.

> 

> So this may just be a limitation of FOP. If nothing else works, I will

> probably be looking at iText to solve this issue now. 

> 

>  

> 

> ________________________________

> 

> From: Amick, Eric [mailto:eric.am...@mail.house.gov] 

> Sent: Monday, December 15, 2008 3:02 PM

> To: fop-users@xmlgraphics.apache.org

> Subject: RE: Force page break to skip immediate next page and continue

> writing on third page

> 

>  

> 

> It may well be true for FOP. I believe what I have in mind is legal
FO;

> maybe someone else knows for certain.

> 

>  

> 

> Eric Amick

> 

> Legislative Computer Systems

> 

> Office of the Clerk

> 

<snip/>  

 

 

Jeremias Maerki

 

 

---------------------------------------------------------------------

To unsubscribe, e-mail: fop-users-unsubscr...@xmlgraphics.apache.org

For additional commands, e-mail: fop-users-h...@xmlgraphics.apache.org

 

Reply via email to