Re: Problem with API change in fop 0.20.1

2001-08-22 Thread Keiron Liddle
http://xml.apache.org/fop/embedding.html On Wed, 22 Aug 2001 09:35:17 Nestel, Frank wrote: Hello, we've experimenting with fop as an PDF renderer and would like to upgrde to fop0.20. As this is only a part of a larger framework, we used to use the TraX Result Wrappers to pass along our

RE: Problem with API change in fop 0.20.1

2001-08-22 Thread Michel Lehon
Frank, [Big SNIP] protected Result obtainResult(XMLServletRequestStatus status, OutputStream out) throws IOException { if(!status.isFOStyle()) { return new StreamResult(out); }

cvs commit: xml-fop/src/org/apache/fop/apps Driver.java

2001-08-22 Thread keiron
keiron 01/08/22 01:29:17 Modified:src/org/apache/fop/apps Driver.java Log: sets the logger on the treebuilder when getting the content handler thanks to Michel Lehon for spotting this Revision ChangesPath 1.34 +2 -2

Re: Problem with API change in fop 0.20.1

2001-08-22 Thread Keiron Liddle
On Wed, 22 Aug 2001 10:20:28 Michel Lehon wrote: Keiron, Could you take a look at the things you did for the logger in driver, it look wierd to me as the _treeBuilder 's logger is only set if a call to setLogger is done, otherwise I get a NullPointerException If you want I can take a look...

[DO NOT REPLY: Bug 3207] Does not keep fonts size in region-before area.

2001-08-22 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE.

[DO NOT REPLY: Bug 1171] small-caps in static content becomes all-caps

2001-08-22 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE.

RE: [Bug 3208] New: Blocks aligned incorrectly in PDF

2001-08-22 Thread Joshua.Kuswadi
regarding the first problem: are you printing under windows with acrobat reader 4.0 and up? Try printing on a different printer. I have similar problems with WinNT and Acrobat Reader 4 an 5 when I am printing to a HP LaserJet 4M+. When using Acrobat reader, check that the 'Fit to page'

RE: Borders not lining up

2001-08-22 Thread Steve McCardle
Thanks Art, Looks like you've hit it a home run or a hole-in-one whatever euphemism you care to choose ! I've just switched off that same setting and, hey-presto ! I suppose that's what you get for being a rookie with both FOP and Acrobat at the same time. Thanks to all the other people who

[DO NOT REPLY: Bug 3223] New: table-row boder-... properties (0.20.1 version)

2001-08-22 Thread bugzilla
PLEASE DO NOT REPLY TO THIS MESSAGE. TO FURTHER COMMENT ON THE STATUS OF THIS BUG PLEASE FOLLOW THE LINK BELOW AND USE THE ON-LINE APPLICATION. REPLYING TO THIS MESSAGE DOES NOT UPDATE THE DATABASE, AND SO YOUR COMMENT WILL BE LOST SOMEWHERE.

[GUMP] Build Failure - Fop

2001-08-22 Thread Sam Ruby
This email is autogenerated from the output from: http://jakarta.apache.org/builds/gump/2001-08-22/xml-fop.html Build results exceed maximum length.Please see URL above for details.

fop and VAJ 3.5.3

2001-08-22 Thread [EMAIL PROTECTED]
Hi, does anyone know what to do to make FOP run in Visual Age for Java 3.5.3? I tried to import: 1. all java and resource files from Fop's src directory and 2. import

RE: fop and VAJ 3.5.3

2001-08-22 Thread COFFMAN Steven
FOP generates some java files from xml sources, so VAJ can't import from the src directory directly, since it thinks there are some missing java files. You might want to try importing from the build directory. Forte would probably have the same problems. -Steve -Original Message- From:

incorrect page scaling (was: Blocks aligned incorrectly in PDF)

2001-08-22 Thread Enrico Schnepel
Hello Joshua regarding the first problem: are you printing under windows with acrobat reader 4.0 and up? Try printing on a different printer. I have similar problems with WinNT and Acrobat Reader 4 an 5 when I am printing to a HP LaserJet 4M+. When using Acrobat reader, check that

WinANSI encoding

2001-08-22 Thread Beachler, Free
Title: WinANSI encoding I have a Java class that takes FO input as a string and returns PDF bytecode as a string. Here's a snippet of my code: ByteArrayOutputStream buffout = new ByteArrayOutputStream(); driver.buildFOTree(createParser(), fosrc); driver.format();

last posting

2001-08-22 Thread Beachler, Free
Title: last posting i also forgot to mention in my last code snippet that i am using version 0.19

Any work around?

2001-08-22 Thread Peter B. West
Fellow FOPers, A personal note; my apologies if it is a sour one. I am looking for work, and I am obliged to stay here in beautiful sunny end-of-winter Brisbane, Queensland, Australia, for personal reasons. Things are pretty slow here, and I gather that this is the general condition.

cvs commit: xml-fop/src/org/apache/fop/render/pdf PDFRenderer.java

2001-08-22 Thread keiron
keiron 01/08/22 23:14:33 Modified:src/org/apache/fop/render/pdf PDFRenderer.java Log: made the pdf renderer reusable (eg. how cocoon uses it) prevents it creating invalid documents frees up memory Revision ChangesPath 1.86 +10 -1