Re: Learning needeed

2002-06-04 Thread John Austin
On Tuesday 28 May 2002 02:09 am, you wrote: > Ramon Maria Gallart wrote: > > Hi all! I want to learn how to use FOP well and all the > > > I found the XSL FO Tutorial on www.renderx.com quite useful. Also, if And I think there is something on the Antenna House web site: http://www.antenna.co.

RE: speed

2002-06-04 Thread Keiron Liddle
On Mon, 2002-06-03 at 16:18, Norr, Peter wrote: > for example a 17 page document takes 100 seconds.. > > it has a header, footer and one long table as the body. > peter That is quite slow. Are you embedding FOP, if so is there enough memory, are you using buffered stream etc. Is debugging off (a

SVG graphic box/size

2002-06-04 Thread Murad Sæter
Hi, I'm making a small report with xml, xsl and svg-file. I've put the files on http://www.stud.ntnu.no/~sater/xml. When I generate the pdf with FOP, the svg-image is cut to a small box. This is probably a problem with med xsl-file, but as a xsl-newbie I can't see it. When I look at the file wit

RE: speed

2002-06-04 Thread Cyril Rognon
check the archive list :)) http://marc.theaimsgroup.com/?l=fop-dev&m=101310355622557&w=2 Have a nice performance boost. Cyril At 11:00 03/06/2002 -0400, you wrote: do you have an example of breaking up a long table into multiple page-sequences?

Re: SVG graphic box/size

2002-06-04 Thread Keiron Liddle
It is something to do with the width and height that you are setting on the svg through the content width and height. This is creating a view of only the corner of the image. Try setting the width and height on the svg itself. On Tue, 2002-06-04 at 10:06, Murad Sæter wrote: > Hi, > > I'm making

FOP: external-grahicS

2002-06-04 Thread Andre Marthaler
Hello, i use FOP 0.20.3 under Linux and Win2k. I have a Problem intregation External Pictures in "xsl-region-before" and in "xsl-region-after" i use an XML with an XSL File. Here are my code:

RE: SVG graphic box/size

2002-06-04 Thread Murad Sæter
Thanks, but I can't quite understand :) I get the same portion of the image without width/height and content-width/height attributes. How do I set the width and height on the svg itself? The svg looks fine in internet explorer. Do I have to edit the svg? It is produced fra a awt.image to svg wi

Re: FOP: external-grahicS

2002-06-04 Thread Swanil_Ruth
Hi Andre,        Try defining it in the .  Your code within the fo:root should look something like below..                                    page-height="29.3cm"                                page-width="21cm"                                margin-top="1cm"                                marg

BMP-error and resolutions

2002-06-04 Thread Malin Norrstrand
Hello all! I have two questions concerning Fop and PDF. 1. In the fop specs it says that output images will have a resolution of 72 dpi. I have tried generating pdf with jpgs and gifs of both 72 dpi and 600 dpi, and it seems like fop does not care about changing resolution. Does anybody know ho

Again out of Memory Error

2002-06-04 Thread Balaji Loganathan
Hi, Recently many people were discussing abt avoiding out of memory error,I read previous threads but couldn't able to find solution for me. Is this error related to Number of pages or input xml size.Because i have a xml with 1588 group of element,which i have to render into PDF in table forma

FOP: Linebreak Problem

2002-06-04 Thread Andre Marthaler
Hello, i use FOP 0.20.3 under Linux and Win2k. I have a Problem using XSL Templates. i use an XML with an XSL File. I want integrate a Link into a Text. I formatting the "a" Tag, but he'S making a break before and after the " ]> http://www.w3.org/1999/XSL/Transform"; xmlns:fo="http://ww

Re: FOP: Linebreak Problem

2002-06-04 Thread Oleg Tkachenko
Andre Marthaler wrote: I want integrate a Link into a Text. I formatting the "a" Tag, but he'S making a break before and after the " So the PDF is looking like this: Lorem ipsum dolor sit amet, consetetur [ myLink ] sadipscing elitr. He's making a break before and after "myLink". ... >

external-graphic width & height

2002-06-04 Thread Florence Deforge
Hi I need to resize some gif images which are to be displayed in a pdf doc. I tried to insert the following code inside a block or a table-cell : file: Whatever percentage or absolute size is set, the graphic is displayed with same size (which is not the original siz

Re: Again out of Memory Error

2002-06-04 Thread Cyril Rognon
I suppose you are using FOP 0.20.3... first, what amount of memory do you give to FOP ? meaning do you use -Xms and -Xmx jvm parameters to give Java JVM the memory needed ? Second please state how many tables there are in your document, and how many pages long the longest table is. Do you use a

Re: wrong namespace??

2002-06-04 Thread Esteban Gonzalez
Hi! I´ve tried dumping the xsl DOM that xml.getXSL() returned.. this is the header http://www.w3.org/1999/XSL/Format"; xmlns:xsl="http://www.w3.org/1999/XSL/Transform";> http://www.w3.org/1999/XSL/Format";> Still.. I´m getting the error javax.xml.transform.TransformerExceptio

FOP error with

2002-06-04 Thread normbishop1
Hi, I am attaching the test xsl,xml and the java files. The problem is that the description of any node could have tags and text mixed. If I use (with FOP), I get only the text and when I use (without FOP embeded), I get the desired result, but with FOP I am getting 'error 10231' I

Re: FOP error with

2002-06-04 Thread Oleg Tkachenko
There are no chapter_title or sub formatting objects in xsl-fo, you have to transform it in xslt to fo objects, like rather than just copying them to the fo. [EMAIL PROTECTED] wrote: Hi, I am attaching the test xsl,xml and the java files. The problem is that the description of any node cou

Re: FOP error with

2002-06-04 Thread normbishop1
Hi Oleg, I am new to xsl-fo. I thought I was doing the xsl-fo transformation correctly. Will you PLEASE explaine me how I should do this? >you have to transform it in xslt to fo objects, like rather >than >just copying them to the fo. Thank you Norm [EMAIL PROTECTED] wrote: > Hi, >

Re: wrong namespace??

2002-06-04 Thread J.Pietschmann
Esteban Gonzalez wrote: > I´m running out of ideas. For a start, if you have still stuff after this: >>> trans.transform( new DOMSource( voucher ), new >>>SAXResult( driver.getContentHandler() )); delete it. Especially delete the call to render(). It is possible that the error is generated by t

Re: FOP: external-grahicS

2002-06-04 Thread J.Pietschmann
Andre Marthaler wrote: Use "file:///bild1.jpg" -- I define both in the "simple-page-master", but everytime he say "Some static content could not fit in the area." I dont understand, why i can't integrate External Pictures in Before and After. You can use external graphics in static content

Re: external-graphic width & height

2002-06-04 Thread J.Pietschmann
Florence Deforge wrote: Hi I need to resize some gif images which are to be displayed in a pdf doc. I tried to insert the following code inside a block or a table-cell : file: Whatever percentage or absolute size is set, the graphic is displayed with same size (which is

Re: BMP-error and resolutions

2002-06-04 Thread J.Pietschmann
Malin Norrstrand wrote: 1. In the fop specs it says that output images will have a resolution of 72 dpi. I have tried generating pdf with jpgs and gifs of both 72 dpi and 600 dpi, and it seems like fop does not care about changing resolution. Does anybody know how this works? I'm not sure how you m

Re: FOP error with

2002-06-04 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: I am new to xsl-fo. I thought I was doing the xsl-fo transformation > correctly. Will you PLEASE explaine me how I should do this? Would you ask on rec.aviation "Would you PLEASE teach me how to fly aircraft (by email)?" Search the web for "formatting object tutorial" and