xsl-fo first anniversary

2002-10-15 Thread Oleg Tkachenko
Hello! xsl-fo is 1 year old now, congratulations to editors, implementors, developers and users! -- Oleg Tkachenko eXperanto team Multiconn International, Israel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional com

Problem with pictures

2002-10-15 Thread Gilles Beaugeais
Hi Foppers, I have embedded FOP in a java application and I want to use my application to generate some PDF in different languages. When I generate the first PDF, PDF FOP runs well, but when I want to generate another PDF, the second PDF uses the graphics of the first document. For exemple : - F

RE: Problem with pictures

2002-10-15 Thread Brunner, Konrad
Dear Gilles Do you have closed the first pdf file correctly? if (outs!=null) outs.flush(); if (out!=null) out.close(); Konrad -Original Message- From: Gilles Beaugeais [mailto:[EMAIL PROTECTED]] Sent: Dienstag, 15. Oktober 2002 14:25 To: [EMAIL PROTECTED] Subject: Problem

Re: Problem with pictures

2002-10-15 Thread Gilles Beaugeais
Dear konrad, Thank you for your response. What do you mean by if (outs!=null) outs.flush(); if (out!=null) out.close(); ? I use the following code for generate our PDF (source - http://xml.apache.org/fop/embedding.html) : Configuration.put("baseDir", "file:/" + mainWindow.getMainOriginHTMLDire

NoSuchMethodError when creating Driver with SilverStream

2002-10-15 Thread Richard Sweeney
I'm using SilverStream and am attempting to instaniate the Driver with the following: Driver driver = new Driver(); however when I try this I get the following: java.lang.NoSuchMethodError at org.apache.fop.apps.Driver.getParserClassName(Unknown Source) at org.apache.fop.svg.SVG

can I hack a keep-together?

2002-10-15 Thread shaifali . prakash
Hello, I am exploring the possibility of modifying the code to allow support for keep-together. I'm pressed for time; so a hack will work. I would appreciate any input on if this is possible and how long it would take? Thank You, Shaifali Prakash C&HT / Media & Entertainment San Francisco Pho

Re: fonts

2002-10-15 Thread J.Pietschmann
Victor Mote wrote: > OK, here is a related question that does not appear to be an FAQ (per my > review of FOP, Batik, and Cocoon lists). If I try: > ge = GraphicsEnvironment.getLocalGraphicsEnvironment(); > > in a headless environment, I get a runtime error that halts the JVM. This is intere

Re: Problem with pictures

2002-10-15 Thread J.Pietschmann
Gilles Beaugeais wrote: > - Second document is "c:\om\ge\test.xml" and fop generates > "c:\c:\om\ge\test.pdf" ^^ Is this a typo or are you really using this most likely invalid path? J.Pietschmann - To unsubscribe, e-m

RE: fonts

2002-10-15 Thread Rhett Aultman
Responses below. -Original Message- From: J.Pietschmann [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 3:05 PM To: [EMAIL PROTECTED] Subject: Re: fonts >>Victor Mote wrote: > OK, here is a related question that does not appear to be an FAQ (per my > review of FOP, Batik, and

Re: NoSuchMethodError when creating Driver with SilverStream

2002-10-15 Thread J.Pietschmann
Richard Sweeney wrote: > I'm using SilverStream and am attempting to instaniate the Driver with the > following: > > Driver driver = new Driver(); > > however when I try this I get the following: > > java.lang.NoSuchMethodError > at org.apache.fop.apps.Driver.getParserClassName(Unknown

Re: can I hack a keep-together?

2002-10-15 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: > I am exploring the possibility of modifying the code to allow support for > keep-together. I'm pressed for time; so a hack will work. I would > appreciate any input on if this is possible and how long it would take? Search the source for "keep-" (case insensitive), th

RE: fonts

2002-10-15 Thread Victor Mote
J.Pietschmann wrote: > > in a headless environment, I get a runtime error that halts the JVM. > > This is interesting, but you'll probably get more and better > answers on comp.lang.java or a more specialized Java forum. I wasn't looking for an answer here, as I really didn't think there was a j

Re: Problem with pictures

2002-10-15 Thread Gilles Beaugeais
> Gilles Beaugeais wrote: > > - Second document is "c:\om\ge\test.xml" and fop generates > > "c:\c:\om\ge\test.pdf" > ^^ > Is this a typo or are you really using this most likely invalid > path? > > J.Pietschmann > sorry, just a typo error but the baseDir for images is still a problem..