RE: Starting out with FOP

2009-09-29 Thread Martin FitzGerald
Hi, To check you have Java installed, open a command file and type java -version. It should reply with something like: java version 1.6.0_15. The fop.bat command will find it and use it. Like you I started out with FOP just recently. But first I got the O'Reilly book XSL-FO by Dave Pawson.

Re: Confusion about border-collapse

2009-09-29 Thread Vincent Hennebert
Hi Eric, Amick, Eric wrote: The border-collapse property is listed as having an initial value of collapse in the spec, but the description refers to CSS, where the default value is separate. I also encountered a case where FOP apparently acted as if the default value was separate; I need to

Page Break in FOP

2009-09-29 Thread shrutin
Hello All, I am new to FOP and have started my first assignment. i need to know how can i insert a page break on the basis of a condition. Scenario: I have a list and based on the value in the list i need to break pages. i.e my XML data is data record date01/01/2009/date srnoA/srno

Re: Confusion about border-collapse

2009-09-29 Thread Venkat Reddy
Hi, Yes, the FOP Compliance report refers to CSS specification for 'border-collapse' property. The FOP compliance report is saying 'collapse' as the default, but the CSS spec saying 'seperate'. As I have checked through the FOP property list, the default again given as 'collapse'. see below

problems after page size switch. bug?

2009-09-29 Thread ruud grosmann
hi forum, reading the xsl fo book of Dave Pawson, I adapted one of his examples (3.6) to experiment a bit. I ended up with a fo file with a page sequence master that uses an a4 start and end page, but small pages in between. Just not to have to provide so much content to fill the pages. The

Re: problems after page size switch. bug?

2009-09-29 Thread ruud grosmann
On 29/09/2009, Chris Bowditch bowditch_ch...@hotmail.com wrote: ruud grosmann wrote: hi forum, Hi, reading the xsl fo book of Dave Pawson, I adapted one of his examples (3.6) to experiment a bit. I ended up with a fo file with a page sequence master that uses an a4 start and end page,

RE: Confusion about border-collapse

2009-09-29 Thread Amick, Eric
I did realize that border-collapse was inherited, but I just now figured out where the inherited value was coming from. I missed it somehow when I was looking earlier; FOP is working correctly. Nonetheless, maybe we should suggest to W3C's FO working group to make it clearer in

Different content in the Header on every page

2009-09-29 Thread shrutin
Hello All, Need to know how would i get to have different headers on every page where the header content to be displayed changes according to the data in the region-body. -- View this message in context:

AW: Different content in the Header on every page

2009-09-29 Thread Georg Datterl
Hi shrutin, you are looking for fo:marker. Regards, Georg Datterl -- Kontakt -- Georg Datterl Geneon media solutions gmbh Gutenstetter Straße 8a 90449 Nürnberg HRB Nürnberg: 17193 Geschäftsführer: Yong-Harry Steiert Tel.: 0911/36 78 88 - 26 Fax: 0911/36 78 88 - 20

RE: Different content in the Header on every page

2009-09-29 Thread Amick, Eric
This sounds like a job for fo:marker and its companion fo:retrieve-marker. (There's also fo:retrieve-table-marker for table headers and footers, though it is not implemented in FOP yet.) http://www.w3.org/TR/xsl/#fo_marker http://www.w3.org/TR/xsl/#fo_retrieve-marker Eric Amick Systems

Re: Different content in the Header on every page

2009-09-29 Thread Venkat Reddy
Hi, I think, the following link will give you the direction you need... http://www.dpawson.co.uk/xsl/sect3/headers.html Thanks, Venkat. shrutin wrote: Hello All, Need to know how would i get to have different headers on every page where the header content to be displayed changes

Generate Log in a file in fop 0.95

2009-09-29 Thread Ankush Jain
Hi, I have written a C++ program to invoke fop 0.95 executable. I need to capture the log generated by fop in a file. Please let me know the possible ways to do so. Is it possible to do so by changing some configuration parameters in file fop.bat. -- View this message in context:

Too many open images?

2009-09-29 Thread Georg Datterl
Hi everybody, Today I don't have a fo file for a riddle, but a question nonetheless. In my application I do stuff, generate a fo file and then generate a PDF. Then I do stuff again. While doing this second stuff I get IO Exceptions (Too many open files) and when generating the PDF I get lots

Re: problems after page size switch. bug?

2009-09-29 Thread ruud grosmann
hi forum, just to be shore, I have changed the test fo to have pages of equal size, but with different printable area's (by changing the margins). I found the same behaviour. So page 1 has a wide regionbody, page 2 a small region body, but fop uses the dimensions of page 1. I can accept a

Re: problems after page size switch. bug?

2009-09-29 Thread Chris Bowditch
ruud grosmann wrote: hi forum, just to be shore, I have changed the test fo to have pages of equal size, but with different printable area's (by changing the margins). I found the same behaviour. So page 1 has a wide regionbody, page 2 a small region body, but fop uses the dimensions of page

Re: Different content in the Header on every page

2009-09-29 Thread shrutin
Hello, Thanks a ton :-). It works with fo:marker. Another query: Is it possible to have 2 markers on the same line separated by spaces? Thank you guys, you made my work easy :-) shrutin wrote: Hello All, Need to know how would i get to have different headers on every page where the

AW: Different content in the Header on every page

2009-09-29 Thread Georg Datterl
Hi shrutin, Yes, should be possible, like in the header of a dictionary Aa - Be would be two marker. I did not try it, but I'm quite sure it works. Mit freundlichen Grüßen Georg Datterl -- Kontakt -- Georg Datterl Geneon media solutions gmbh Gutenstetter Straße 8a 90449 Nürnberg

Re: Page Break in FOP

2009-09-29 Thread Venkat Reddy
Hi, I hope you will find someway using the following xslt in order to get page breaks based on the date condition... ?xml version=1.0? xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xmlns:fo=http://www.w3.org/1999/XSL/Format; xsl:template match='data'

Re: AW: Different content in the Header on every page

2009-09-29 Thread Louis Masters
If you are talking about the retrieve, it is simply something like this: fo:blockfo:retrieve-marker retrieve-class-name=AB1_name retrieve-boundary=page retrieve-position=first-including-carryover/ fo:retrieve-marker retrieve-class-name=AB1_lines retrieve-boundary=page

Re: AW: Different content in the Header on every page

2009-09-29 Thread shrutin
Hello Georg, It works if fo:leader is inserted in between 2 markers like following fo:leader leader-pattern=space leader-length=7cm / Thanks for your help :-) Georg Datterl wrote: Hi shrutin, Yes, should be possible, like in the header of a dictionary Aa - Be would be two marker. I did

table column border for entire table height

2009-09-29 Thread Louis Masters
I've always messed around with workarounds and iffy implementations, but does anyone know a good way to always display the column borders (vertical) for the height of the table even if the rows don't fill it. For example, say I have a table that has a height of 70mm, but only contains a single

Re: EmptyStackException when processing embedded svg flowRoot element

2009-09-29 Thread relluf
First off, I solved my issue by using the lastest trunk of fop-0.95. cbowditch wrote: SVG is processed by Batik, so this is really a Batik problem not a FOP one. SVG is processed by Batik, true, but the issue is indeed with FOP. In current release FOP is not aware of SVG 1.2. The

Horizontal line under table headers

2009-09-29 Thread shrutin
Hello, How can I add a horizontal line under the table headers? Also is it possible to control the line height of fo:marker, i did add a line-height for the fo:block covering the marker but it does not seem to work. Thanks, Shruti -- View this message in context: