RE: FOP in production app (clienside)

2003-03-12 Thread Patrick Dean Rusk
I use Java Web Start to deliver a Java application embedding FOP and it works great. I consider a one-time 5M download to be small these days, compared to lots of other internet practices people frequently use (like downloading game demos). Besides, you can quickly surpass 5M in PDF downloads by

RE: How do you set the memory size for FOP

2003-02-19 Thread Patrick Dean Rusk
Try -Xms128m The m at the end means megabytes, of course. Not sure what it defaults to if you don't specify a unit. Pat -Original Message- From: Jon Steeves [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 5:33 PM To: '[EMAIL PROTECTED]' Subject: RE: How do you set the

RE: How to stop a render FOP ?

2003-02-10 Thread Patrick Dean Rusk
Be careful when you say stop the Thread. Threads are no longer supposed to be directly stopped. I am, instead, throwing an Error in the thread, catching it in the same thread, and exiting the thread cleanly. The log messages are only going to System.out in the first place because the default

RE: Page numbering

2003-02-09 Thread Patrick Dean Rusk
now, the pagenumber is not displayed in the first page. But, i need the page number start with 2 page is left alignment and 3 page is right alignment. The same way, create different page masters for even and odd pages. That's right. Extend my example to have page masters for

RE: Page numbering

2003-02-08 Thread Patrick Dean Rusk
The key is in having a different header (or footer) on the first page versus the others. The steps to do this are: 1) Have a separate page master for the first page versus the rest of the pages. 2) Add different region-names to the header (or footer) regions on those pages. 3) Use the

RE: How to stop a render FOP ?

2003-02-07 Thread Patrick Dean Rusk
How to stop a render FOP ? Philippe, I'm going to assume that you want a human or a program to stop a FOP run that is embedded in a program that should otherwise remain running. If you mean the command line, you can, of course, use ^C or whatever interrupt command is appropriate to

How can I force a space in rendered output?

2003-01-24 Thread Patrick Dean Rusk
I have a need to put copyright symbols in my rendered text from time to time, and I like to follow them with a space. Because of some of the transformation logic required when I do this, I can't easily ensure that an actual space will appear in the event stream that FOP processes. In other

RE: extra page breaks inserted

2003-01-24 Thread Patrick Dean Rusk
Chris, If you have multiple page sequences, and you restart the page numbering in each one, you may get blank pages inserted if you don't pay attention to the force-page-count property of page sequences. Here's a section from Pawson that describes it: cut here