html output format

2003-02-19 Thread Dmitri Colebatch
Hey all, I've spent a couple of hours searching for this with no luck, so feel justified in asking here now. If this is a really stupid question (read my post first), feel free to point it out (o: I have a requirement to edit a document, and then print it. The requirement had been just to

Re: Batik error opening SVG (Was: Re: EPS images not shown in Acrobat)

2003-02-19 Thread Joop Vriend
Jeremias Maerki wrote: snip/ When we used outlines instead of an embedded font, the result in the PDF was rather ugly, not smooth. While the SVG looks perfect in Internet Explorer (Adobe SVG Viewer) and in Squiggle. There's a setting in Acrobat Reader (Preferences/Display) where you can turn on

Re: html output format

2003-02-19 Thread Oleg Tkachenko
Dmitri Colebatch wrote: I have a requirement to edit a document, and then print it. The requirement had been just to print the document, with some basic merge functionality - so I implemented that using FOP for the printing side of it. Now that I need to edit it, my thought had been that I'd

Re: Newbie using blocks

2003-02-19 Thread Oleg Tkachenko
Luiz Cezar Medeiros Filho wrote: If i put this in my document: fo:blockegasehkagekjasgehkagekagekaegakgeakegakegaskegakjegajkegajkeagseka sgekjaegaskegaskjegakegakjeagkeasgekjaegajkegajkegasjkegaejagekajegasjkegasj kegasejkagekjageajkegakjegasjkegajkegakjegakeagekaeg/fo:block (means a big word)

Re: brain dead newbe

2003-02-19 Thread Oleg Tkachenko
Roger Roelofs wrote: I know this has been covered, I've been wandering the archives, but it hasn't sunk in yet. I have a xsl doc with the following basic structure. Instead of starting a new page for each iteration of this template, it resets to the top of the page and writes over the top of

tableRow larger than a page

2003-02-19 Thread Marcio Lopes
Hi, I would like to know if it is possible to have pagination in both direction of a page: left to right and top to botton. So when a table does not fit in a single page new pages are spawned!! Supose that I have table to large in width and height so the columns grows from left to right and the

Re: brain dead newbe

2003-02-19 Thread Roger Roelofs
Oleg, Thanks. My problem was that I need a double border around the page and I had used absolutely positioned block-containers to get it. Once I removed them the pagination worked just great. On Wednesday, Feb 19, 2003, at 04:35 America/Detroit, Oleg Tkachenko wrote: Roger Roelofs wrote: I

Scaling of background-image

2003-02-19 Thread Jeff_Mitchell
I'm working on getting a block to use a background image, but it seems that when the image is inserted into the PDF, it's put in at some terribly low resolution. I'm trying to get the image to scale to fit the space of the block, but to no avail. Here's a quick snippet of the FO I'm using:

XPath axis usage with FOP

2003-02-19 Thread s-oualid
Hello ! The marker tag works perfectly with the 0.20.5rc3, that's a pleasure to use it ! It's so powerfull... =) I have another problem with the usage of the precedent-sibling axis, I want to add a break-before=page attribute to a table if the subtag SOUSTHEME of my main tag FICHE is

RE: XPath axis usage with FOP

2003-02-19 Thread Dudley, Mark
Simon, There is no presecedent-sibling axis in Xpath. Try to use the preceding-sibling axis instead. Mark Dudley Xerox Corporation -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 2:17 PM To: [EMAIL PROTECTED] Subject: XPath axis

Re: html output format

2003-02-19 Thread Dmitri Colebatch
From: Oleg Tkachenko [EMAIL PROTECTED] Dmitri Colebatch wrote: I have a requirement to edit a document, and then print it. The requirement had been just to print the document, with some basic merge functionality - so I implemented that using FOP for the printing side of it. Now that I

How do you set the memory size for FOP

2003-02-19 Thread Jon Steeves
Hello: FOP bombs at about 150 pages with a java.lang.outofmemory error. I gather that the solution is to adjust the size of the java vm using, say, -Xmx256m. Unfortunately, I know absolutely nothing about using java, so I don't know where to do this. I'm using windows NT and

RE: How do you set the memory size for FOP

2003-02-19 Thread Roland Neilands
Jon, Amywhere before the FOP call should work: Can I increase the mem-size within this sequence of commands? And if so, how would it look? cd c:\fop java -cp build\fop.jar;lib\batik.jar;lib\xalan-2.0.0.jar;lib\xerces-1.2 .3.jar;li

RE: Scaling of background-image

2003-02-19 Thread Roland Neilands
Jeff, I'm working on getting a block to use a background image, but it seems that when the image is inserted into the PDF, it's put in at some terribly low resolution. I'm trying to get the image to scale to fit the space of the block, but to no avail. This worked. fo:block-container

RE: Scaling of background-image

2003-02-19 Thread Jeff_Mitchell
Roland- And just as Jeff was preparing to leave work, a ray of light came down from the sky, and a voice spoke to him. 'Jeff', the voice said, 'I am Roland, the keeper of the knowledge of absolute positioning. Check your e-mail one last time before leaving.' And Jeff checked his e-mail, and

RE: How do you set the memory size for FOP

2003-02-19 Thread Jon Steeves
Roland: I had already tried this command: java -cp -Xmx128 build\fop.jar;lib\batik.jar;lib\xalan-2.0.0.jar;lib\xerces-1.2.3.jar;li b\avalon-framework-4.0.jar;lib\logkit-1.0.jar;lib\jimi-1.0.jar org.apache.fop.apps.Fop c:\drb\output.fo c:\drb\output.pdf and it caused java to run out of

RE: How do you set the memory size for FOP

2003-02-19 Thread Roland Neilands
Jon, java -cp -Xmx128 Try switching these two (-cp expects the path below as an argument. build\fop.jar;lib\batik.jar;lib\xalan-2.0.0.jar;lib\xerces-1.2 .3.jar;li b\avalon-framework-4.0.jar;lib\logkit-1.0.jar;lib\jimi-1.0.jar org.apache.fop.apps.Fop c:\drb\output.fo

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 do you set the memory size for FOP

2003-02-19 Thread Roland Neilands
The m at the end means megabytes, of course. Not sure what it defaults to if you don't specify a unit. Must be kb. (worked on a small doc.) - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

RE: How do you set the memory size for FOP

2003-02-19 Thread Jon Steeves
The missing m was the culprit. I put it in and FOP churned out a 450 page document. Thank you FOPlisters for all the help! Jon -Original Message- From: Patrick Dean Rusk [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 2:53 PM To: [EMAIL PROTECTED] Subject: RE: How do you

Question about white-space-treatment=preserve !!!

2003-02-19 Thread Calero, Roberto
Title: Question about white-space-treatment=preserve !!! Hi Guys, For the following properties: white-space-collapse linefeed-treatment white-space-treatment Which one is the FOP version that support all (or any) of the above? Thx! RC

Javadoc for org.apache.fop.apps.*

2003-02-19 Thread Lee, Insoo
Title: Javadoc for org.apache.fop.apps.* Hello, Where can I see javadoc for org.apache.fop.apps.* Thanks IL

RE: How do you set the memory size for FOP

2003-02-19 Thread Savino, Matt C
450 pages is pretty good. Just curious did you use multiple page sequences? no large tables? Also do you see how much memory it did use? thanks -Original Message- From: Jon Steeves [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 19, 2003 3:26 PM To: '[EMAIL PROTECTED]' Subject: