Getting started

2002-02-18 Thread Josh Campbell
I'm trying to use the commandline to turn a .fo into a pdf but am having some trouble getting FOP to kick into gear. I'm setting the classpath manually at this stage with the following: set CLASSPATH=c:\fop\build\fop.jar; c:\fop\lib\batik.jar; c:\fop\lib\jimi-1.0.jar; c:\xalan\bin\xalan.jar; c:\

RE: Getting started

2002-02-18 Thread Michiel Verhoef
Hi, This is the content of fop.bat (of fop version 0.18 or something) perhaps it is of help? java -cp fop.jar;lib\w3c.jar;lib\xalan-2.0.0.jar;lib\xerces-1.2.3.jar;lib\jimi-1.0.ja r org.apache.fop.apps.Fop %1 %2 %3 %4 %5 %6 %7 %8 HTH, Michiel $ -Original Message- $ From: Josh Campbell

VS: FOP and servlets

2002-02-18 Thread Teemu . Talja
I've noticed the same. - Teemu > -Alkuperäinen viesti- > Lähettäjä:[EMAIL PROTECTED] [SMTP:[EMAIL PROTECTED] > Lähetetty:15. helmikuuta 2002 18:17 > Vastaanottaja:[EMAIL PROTECTED] > Aihe: Re: FOP and servlets > > No, it's not the solution. In fact, my code is good but m

Re: Getting started

2002-02-18 Thread Sebastian Will
Hi, seems to me that Windows cannot find the command "fop", ie. the batch file fop.bat. Did you include the path where fop.bat resides in your %PATH% environment variable, or did you call it from the directory where fop.bat resides? Otherwise, like Michiel Verhoef already mentioned, call the clas

Question about position="relative"

2002-02-18 Thread Joke_Dehond
Hi, For a long while now, I'm trying to find an example or more information about the use of property 'position="relative"'. According to the "docs/html-docs/implemented.html" that comes with the FOP-0.20.3 distribution, this property must be implemented. What I'm trying to do is to position a blo

Keeping it together

2002-02-18 Thread Lars Karschen
Hi, is there anyone out there who's familiar with keep-properties? My problem are rows of a table, which should all stay on one page, since their content is linked to each other (one article with all it's descriptive attributes for example) The rows are not always the same number, because sometim

merging FO to get a single PDF

2002-02-18 Thread Buonincontri, Steve (CAP, MMF, ITSS)
Can FOP be used to merge 2 FO files into one PDF? - steveb

Re: merging FO to get a single PDF

2002-02-18 Thread Jeremias Maerki
> Can FOP be used to merge 2 FO files into one PDF? No, but you can use XSLT to merge the two FO files to a single one. Cheers, Jeremias Märki mailto:[EMAIL PROTECTED] OUTLINE AG Postfach 3954 - Rhynauerstr. 15 - CH-6002 Luzern Fon +41 41 317 20 20 - Fax +41 41 317 20 29 Internet http://www.out

Graphics in pdf

2002-02-18 Thread Christine Kaempfer
Hello, I want to put an eps-graphic into a pdf-file. I havn't found how I could do this. But maybe there is another method to put a high resolution graphic which looks good in a pdf-printout into a pdf document. Thanks for your help Christine

RE: Big files, no memory...

2002-02-18 Thread Savino, Matt C
Try adding creating a new fo:page-sequence every X (~20?) pages or so.The attached XSL does the trick for me. Of course if you don't have natural page breaks (this is the only one of our reports that does), the output will be kind of awkward. Good luck, Matt Savino -Original Message- Fro

HTTP Redirect, Mime Type, and IE

2002-02-18 Thread Brian O'Kelley
Title: Message I apologize if this has already been answered.. I've looked around and can't find anything that works.   I have a servlet, coming through Tomcat, that spits out PDF using FOP. So far so good. However, it requires the user to login first. If the user isn't logged in, it redire

Re: merging FO to get a single PDF

2002-02-18 Thread Carlos Araya
You can do that with XSL stylesheets that output fo. In and of itself FO doesn't provide that capability that I'm aware of... You'd have to do it manually Carlos On 02/18/02 8:09, "Buonincontri, Steve (CAP, MMF, ITSS)" <[EMAIL PROTECTED]> wrote: > > Can FOP be used to merge 2 FO files into one

Re: Question about position="relative"

2002-02-18 Thread Josh Campbell
However, the second block-container is not positioned relative (= with 100pt offset to the left and the top) to the preceding one. The second block-container is positioned at the bottom of the page, with a 100pt offset to the left and to the bottom. It seems as if the 'position ="relative"' proper

Re: Graphics in pdf

2002-02-18 Thread Josh Campbell
Hi Christine I haven't found a good way to include print resolution images with fop. My last attempt used a huge, rescaled gif as it was all I could get to work in fop. It may be useful to look into the SVG format. Illustrator 9 has the ability to export to SVG so if you are using .eps it should

region body formatting

2002-02-18 Thread Josh Campbell
I'm trying to get a pdf of an A4 page with a 1cm margin of white surrounding a grey central area. So far I've got the 1cm margin set up using the simple-page-master but I can't figure out how to make the region-body have a background color or border. Here's my layout-master-set so far:

RE: region body formatting

2002-02-18 Thread Arved Sandstrom
fo:region-body takes the standard background properties, such as "background-color". You cannot put a border on a region directly, since in XSL 1.0 the border-width on regions is forced to "0". The workaround would be to fill up the region with a block-container, and put the border on it. But then