keeping multiple elements from being split across pages

2002-02-26 Thread Stephen Bannasch
The following fo is produced by the docbook v1.49 xsl stylesheets and produces a figure caption followed by an image. Unfortunately these elements are sometimes split across pages. 1.2. A schematic block diagram of the CCProbe Interface.

Re: Problem converting SVG to PDF

2002-02-26 Thread Keiron Liddle
Hi Elena, Most likely you have incompatible versions of batik and fop. There have been a number of api changes between fop 0.20.1 and the current batik. It should work fine if you use the batik that comes with fop. I suggest you try using the latest fop, FOP 0.20.3rc2 and the batik that comes wit

Re: Options

2002-02-26 Thread Jeremias Maerki
Look here on how to apply the userconfig file: http://xml.apache.org/fop/embedding.html And as for the second question: PDFRenderer, for example, does not use the setOptions()-facility at the moment. > I create a DOM-Tree dynamically and put it together with a XSL-file to get a > PDF. > > But no

Re: Serious Problem - Inline Italics

2002-02-26 Thread Jeremias Maerki
Are you using the PostScript Renderer? If yes, then I can only tell you, it's on the tasklist. If you want to look into it yourself, look at org.apache.fop.render.ps.PSRenderer.java. > I have a bunch of justified text. If I use > > ... > > I get inconsistent and random-seeming gaps on either end

Classpath in jar

2002-02-26 Thread Magnus Rydin
Dear group, Could someone please tell me why the FOP helper jar:s are hardcoded to reside in a lib/ directory under the fop.jar ? This makes it extremely icky to use FOP in a J2EE container without manually fixing the classpath entries. WR

Non-ISO characters?

2002-02-26 Thread Misángyi Balázs
Hi! I'm new to fop, and I just run into the following problem: I have an XML document, encoded with ISO-8859-2. Fop (0.20.3) converts it correctly, except special hungarian characters oOuU (0xF5, 0xD5, 0xFB, 0xDB), which are replaced by # in the PDF and PS output. How can I get the program to t

Re: Non-ISO characters?

2002-02-26 Thread Sebastian Will
Hi Misangyi, did you make sure that the font you are using is capable of displaying these characters? I myself never changed the default font, perhaps others on the mailing list are able to help you with that. Regards, Sebastian Will - Original Message - From: "Misángyi Balázs" <[EMAIL P

RE: Non-ISO characters?

2002-02-26 Thread "Buchtík, Michal"
Hi, See http://xml.apache.org/fop/fonts.html archive of this mailing-list for details how register new fonts within fop. Michal -Original Message- From: Misángyi Balázs [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2002 11:32 AM To: '[EMAIL PROTECTED]' Subject: Non-ISO characters

RE: Non-ISO characters?

2002-02-26 Thread Misángyi Balázs
Thanks, embedding the right font solved the problem. Balazs -Original Message- From: Sebastian Will [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2002 11:36 AM To: [EMAIL PROTECTED] Subject: Re: Non-ISO characters? Hi Misangyi, did you make sure that the font you are using is

VS: Pipe XSLT Transform to FOP (AND: ABOUT MAIL ARCHIVES)

2002-02-26 Thread Teemu . Talja
Hi I looked at the mailing list archives Joerg recommended (are all messages written to this mailing list found there)? If someone is interested in firing FOP with SAX events, the most interesting messages I found in the archive are http://marc.theaimsgroup.com/?l=fop-dev&m=100559404418852&

keeps

2002-02-26 Thread Sebastien Foucault
Hello, Does the 0.20.2 release supports the keep-with-next, keep-with-previous attributes ? If so, how to use them ? The following statement work does not work properly : foo bar Thank's in advance. -- Sébastien Foucault

RE: Classpath in jar

2002-02-26 Thread Arved Sandstrom
-Original Message- From: Magnus Rydin [mailto:[EMAIL PROTECTED] Sent: February 26, 2002 7:30 AM To: [EMAIL PROTECTED] Subject: Classpath in jar Dear group, Could someone please tell me why the FOP helper jar:s are hardcoded to reside in a lib/ directory under the fop.jar ? This makes it

RE: keeps

2002-02-26 Thread Jarle Presttun
Hi, keep-with-next and keep-with-previous only works with tables. Like many others, I'm looking forward to the day the keeps are implemented for the fo:block element. Jarle > -Original Message- > From: Sebastien Foucault [mailto:[EMAIL PROTECTED] > Sent: Tuesday, February 26, 2002 2:

VS: Pipe XSLT Transform to FOP (AND: ABOUT MAIL ARCHIVES)

2002-02-26 Thread Joerg Pietschmann
[EMAIL PROTECTED] wrote: > some comments to Joergs message: > I do not think using TraxInputHandler or XSLTInputHandler is > better than using a DOM tree. Just for clarification: i did not recommend temporary files over intermediate DOM trees. I recommend a SAX event stream over any of temporary f

RE: fo:block and page break using in fop

2002-02-26 Thread svailati
Ciao Paolo, forse in italiano ci capiamo meglio. Se ho capito bene tu hai la necessità di non fare interrompere un blocco dall'interruzione di pagina. Anch'io è da qualche giorno che sto cercando una soluzione ma purtroppo non l'ho ancora trovata. So che esiste la proprietà: page-break-inside="avo

tools like htmldoc

2002-02-26 Thread Arunkumar S Keserla
Hi All, Are there any PDF solutions on the server side which is easy to install and help me convert a HTML document something in the lines of htmldoc. I was curious if there were more tools like html doc. The information contained in

Re: Serious Problem - Inline Italics

2002-02-26 Thread David Wood
I'm actually using the PDF renderer. I've got the source and am hunting around now. If I have anything to say about it, this bug isn't going to last until Friday. Of course, anyone with knowledge of PDFRenderer who would like to comment on this bug is more than welcome... No answer to my post on t

RE: Options

2002-02-26 Thread Michael König
Thanks for your answer. I saw the code pieces on the metioned website but I did not understand ist: Having the driver-object defined in the first box on the site and the option -object from the third box, how can I plug the option to the driver? Thanks, Michael -- Michael König (Dipl.-Math.) Sof

Re: Serious Problem - Inline Italics

2002-02-26 Thread David Wood
I just figured it out. I found cases where the problem didn't occur, and then worked backwards. It was because I was using a fractional point size for my fonts. When I first tried a fractional size (10.5pt) I had observed that the text was coming out smaller and deduced the point size was being ro

Re: VS: Pipe XSLT Transform to FOP (AND: ABOUT MAIL ARCHIVES)

2002-02-26 Thread Bart Locanthi
Re SAXResult - wonderful! I didn't realize you could do this and had been very bothered by the size of the intermediate xsl:fo goo. I had even gotten to the point of hacking Tomcat and the servlet API to support threading and pipes between tags, only to find that Java pipes are fundamentally fl

RE: Problem converting SVG to PDF

2002-02-26 Thread Elena
Thank you so much! It worked! Elena. -Original Message- From: Keiron Liddle [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 26, 2002 12:41 AM To: [EMAIL PROTECTED] Subject: Re: Problem converting SVG to PDF Hi Elena, Most likely you have incompatible versions of batik and fop. There

markers

2002-02-26 Thread Bart Locanthi
does fop support markers? i'm having trouble getting them to work. my input looks like ... chapter one ... chapter two ... note that the markers share a common great-grandparent. the error message i get from any fop-0.20.[23] is: [ERROR]: fo:marker must be an initi

RE: markers

2002-02-26 Thread Arved Sandstrom
Hi, Bart I took markers up to a certain point last summer. I didn't have the property re-parenting happening yet, but in terms of retrieving the right marker probably about half the retrieve-position/retrieve-boundary combos were already functional. The example file glossary.xml stems from that pe