Re: generating data url external-graphic in PDF

2006-02-08 Thread Edward McMasters
Thank you very much for the info Jeremias. If anyone needs me I will be locked in my study. Edward --- Jeremias Maerki <[EMAIL PROTECTED]> wrote: > The protocol handler is a plug-in for a very > low-level service in the > Java class library. It plug directly into the > java.net.URL subsystem. >

Re: Body overlapping over the footnotes

2006-02-08 Thread Florent Georges
Jeremias Maerki wrote: > I need to verify first but I think I know what's wrong. For those who > know the technical details: I think the list layout managers ignore > padding-top and padding-bottom when they produce the combined element > list. I had to fix a similar problem for tables and it may

Re: Fop missing Ant?

2006-02-08 Thread Paul Vinkenoog
Hello Jeremias, Sir Strongbad, Maybe it's a lot less trouble if Sir just downloads the Ant distro, places the necessary jar(s) in the lib dir, and adjusts the file names in the batch file... Greetings, Paul Vinkenoog > FOP 0.20.5 came out before JDK 1.5. That's why you get errors. If > you comp

Re: Fop missing Ant?

2006-02-08 Thread Jeremias Maerki
FOP 0.20.5 came out before JDK 1.5. That's why you get errors. If you compile FOP with JDK 1.3.1 or 1.4.2 it will build just fine. Alternatively, you can download the maintenance branch of FOP directly from Subversion [1]. The code there supports building under JDK 1.5 if I'm not mistaken. The alt

Re: generating data url external-graphic in PDF

2006-02-08 Thread Jeremias Maerki
The protocol handler is a plug-in for a very low-level service in the Java class library. It plug directly into the java.net.URL subsystem. That's why these classes must be available on a very low level. If you want to know more about protocol handlers, read: http://java.sun.com/developer/onlineTr

Re: Fop missing Ant?

2006-02-08 Thread Sir Strongbad
I took your advice and and downloaded the source distribution. When I ran the build file, i got 30 errors relating to the "enum" reserved word being used. After a global search and replace, I am left with one error. compile: [echo] Compiling the sources [javac] Compiling 746 source files

Re: Fop missing Ant?

2006-02-08 Thread Sir Strongbad
I took your advice and and downloaded the source distribution. When I ran the build file, i got 30 errors relating to the "enum" reserved word being used. After a global search and replace, I am left with one error. compile: [echo] Compiling the sources [javac] Compiling 746 source file

Re: generating data url external-graphic in PDF

2006-02-08 Thread Edward McMasters
I am still trying to figure out how to do what you suggested, but meanwhile, sorry to belabor this point, but, what is special about this protocol handler? I was able to replace other classes (org.apache.fop.render.pdf.PDFRenderer, org.apache.fop.fo.flow.ExternalGraphic) that are called from insid

J Karthaus/Kampf/DE ist außer Haus.

2006-02-08 Thread Joern . Karthaus
Ich werde ab 08.02.2006 nicht im Büro sein. Ich kehre zurück am 12.02.2006. Ich werde Ihre Nachrichten nach meiner Rückkehr beantworten. - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTE

Re: Body overlapping over the footnotes

2006-02-08 Thread Florent Georges
Florent Georges wrote: > I post the real FO and PDF (with alphanumeric modified) resp. > there: Simplified: http://cjoint.com/?ciuNyWQ2oV http://cjoint.com/?ciuNYOUH7C Regards, --drkm ___

Re: Body overlapping over the footnotes

2006-02-08 Thread Jeremias Maerki
I need to verify first but I think I know what's wrong. For those who know the technical details: I think the list layout managers ignore padding-top and padding-bottom when they produce the combined element list. I had to fix a similar problem for tables and it may be that I didn't also check list

Re: Setting duplex for postscript output

2006-02-08 Thread Jeremias Maerki
Please, please, people, always state the FOP version you're working with. Sigh. Anyway, if you're working with FOP 0.20.5 you'll have to modify the FOP source code or post-process the PostScript file. If you're working with FOP 0.91beta or later you can use a special extension: http://xmlg

Re: generating data url external-graphic in PDF

2006-02-08 Thread Jeremias Maerki
In addition to what Chris already told you: Maybe I was not clear enough. You don't place that JAR file with the protocol handler with your other JARs (i.e. not in WEB-INF/lib), you need to place it in WebSphere so they end up in the top-level class loader. That directory could be a "lib" directory

Re: source download for FOP 0.20.5 org.apache.fop.fo.properties package

2006-02-08 Thread Chris Bowditch
Edward McMasters wrote: I am trying to download the source for FOP 0.20.5 to make some changes to try to fix another issue (data URL external-graphic) and the source downloads seem to be missing the classes for the package org.apache.fop.fo.properties. The package org.apache.fop.fo.properties

Re: generating data url external-graphic in PDF

2006-02-08 Thread Chris Bowditch
Edward McMasters wrote: I generated a JAR with just those classes and put it in the same place as my other JAR files, giving this new one precedence and got the same result. I am in the middle of attempting to try rebuilding FOP 0.20.5 with these new classes embedded but I am currently having a

Re: generating data url external-graphic in PDF

2006-02-08 Thread Edward McMasters
I generated a JAR with just those classes and put it in the same place as my other JAR files, giving this new one precedence and got the same result. I am in the middle of attempting to try rebuilding FOP 0.20.5 with these new classes embedded but I am currently having a problem because it seems t

source download for FOP 0.20.5 org.apache.fop.fo.properties package

2006-02-08 Thread Edward McMasters
I am trying to download the source for FOP 0.20.5 to make some changes to try to fix another issue (data URL external-graphic) and the source downloads seem to be missing the classes for the package org.apache.fop.fo.properties. I am trying to get the fop-0.20.5-src.zip from http://mirror.olnevhos

Setting duplex for postscript output

2006-02-08 Thread Ken Sands
I want to output using the postscript renderer in duplex, I was wondering if there is a renderer setting for the config file or somthing to achieve this? I've looked at the ps output and it's very easy to make it duplex, (I added the "/Duplex true" by hand into the first setpagedevice and then rem

Re: FOP issue with HP Deskjet 460c

2006-02-08 Thread HENCHA
We got the application to work. We loaded an older print driver for the 450 and that worked with the 460. The Deksjet installed to the laptop like it was a 450, but the printout works. I had tried a couple of different drivers per an earlier reccomendation from this forum, but I only tried newe

Re: Body overlapping over the footnotes

2006-02-08 Thread Florent Georges
Chris Bowditch wrote: > The problem appears obvious to me, look at your > simple-page-master: > margin-bottom="75pt" margin-right="50pt" /> > > > > > The size allowed for the region-after is 100pt, but your > region-body only has a bottom margin of 75pt. Yes, indeed. Than

Re: java.lang.OutOfMemoryError processing fairly large table to PDF

2006-02-08 Thread Jeremias Maerki
On 08.02.2006 12:40:00 Nige White wrote: > [EMAIL PROTECTED] wrote: > > > > > Nige: > > > > I can get 8 pages of your PO to render into PDF (around 900 rows I > > think), but only by increasing my JVM memory to a 400M. It may be > > lower, but 400 is all I tested. > > > > My env is as follows:

Re: java.lang.OutOfMemoryError processing fairly large table to PDF

2006-02-08 Thread Louis . Masters
Nige: Memory utilization is a big discussion point in these newsgroups and there have been many suggestions posted here.  Since I am on an older copy of FOP, I am hoping the rewrite helps out a bit with memory use (since you are using the rewrite and running into issues I am a bit nervous about i

Re: java.lang.OutOfMemoryError processing fairly large table to PDF

2006-02-08 Thread Nige White
[EMAIL PROTECTED] wrote: Nige: I can get 8 pages of your PO to render into PDF (around 900 rows I think), but only by increasing my JVM memory to a 400M. It may be lower, but 400 is all I tested. My env is as follows: FOP 0.20.3 JDK 1.4.1 Win2K Command line: java -Xmx400M org.apache.fop

Re: Body overlapping over the footnotes

2006-02-08 Thread Chris Bowditch
Florent Georges wrote: Hi I have a problem with the 'xsl-region-body' that overlap with the 'xsl-region-after'. I tried to reduce the problem, but I was not able to identify precisely the problem. The problem appears obvious to me, look at your simple-page-master: margin-bottom="75pt"

Body overlapping over the footnotes

2006-02-08 Thread Florent Georges
Hi I have a problem with the 'xsl-region-body' that overlap with the 'xsl-region-after'. I tried to reduce the problem, but I was not able to identify precisely the problem. Here are the FO source and the PDF output produced by FOP 0.91beta: FO: http://cjoint.com/?cilOqguiGW PDF: