Re: ETA on 0.20.2

2001-09-19 Thread Keiron Liddle
On Tue, 18 Sep 2001 16:19:50 Michel Lehon wrote: Hi, I just updated my local CVS copy to test a few things, and I cant build it. I get compile error in SVGObj and SVGElement. Is that normal ? Any fix? I think you just need to do a build clean first.

RE: ETA on 0.20.2

2001-09-19 Thread Michel Lehon
Hummm Hummm... no comment... I need more sleep. Thanks Keiron. Michel. -Original Message- From: Keiron Liddle [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 19 September, 2001 11:33 To: [EMAIL PROTECTED] Subject: Re: ETA on 0.20.2 On Tue, 18 Sep 2001 16:19:50 Michel Lehon wrote:

RE: Image location

2001-09-19 Thread Michel Lehon
Hi, Some more info on my problem. I've taken a look at FopImageFactory.java to see how it was handling relative path for images It seems like it tries to use the Configuration's baseDir value. My problem is that the path i'd like to use as the base for relative urls is dependent on the request

FOP + Cocoon + xalan

2001-09-19 Thread Tony Goodwin
Hi, I have been doing some testing using barcode samples provided by www.renderx.com I can reproduce correct behaviour by running FOP from command line using fop.bat with latest CVS code However when I use cocoon to run same samples the barcode does not appear properly (only first bar) I have

[PATCH] Enhanced FOP Ant Task

2001-09-19 Thread Jeremias Maerki
Hi there I've done some tinkering with the FOP Ant Task, that I'd like to submit. Currently the FOP task can only generate PDF. I changed it so it can use the other renderers as well. Old syntax: fop fofile=myfile.fo pdffile=myfile.pdf/ New syntax: fop fofile=myfile.fo outfile=myfile.pdf/ or

Re: [PATCH] Enhanced FOP Ant Task

2001-09-19 Thread Jeremias Maerki
Sure, good idea. I'm going to do that on Friday and repost the patch. So the changes will be (if I got everything right): pdf -- application/pdf ps -- application/postscript mif -- application/vnd.mif pcl -- application/vnd.hp-PCL txt -- text/plain at -- text/xml On Wed, 19 Sep 2001 14:59:24

RE: [PATCH] Enhanced FOP Ant Task

2001-09-19 Thread Morrison, John
Better yet, could it work on a fileset of fo files and use the mime type for the . extension? -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 19 September 2001 2:27 pm To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Subject: Re: [PATCH] Enhanced FOP Ant

Formatting in addiction to the total page number

2001-09-19 Thread viktor . keimes
Hi, perhaps someone have a response to my problem: On top of the first page I would like to make a warning output (e.g. This document contains 10 pages!), but only if the document has more than one page. If the document has exactly one page, no warning should appear. Is this possible ? I have

comparison of XML formatting tools

2001-09-19 Thread Corinna Hischke
Hi all, I'd like to get back to the recent discussion about different XML formatters. To evaluate which formatter would best fit my needs, I gathered the most important properties and set up tests for them. Maybe it's intereresting for others as well. The tests were ran through * FOP with the

Re: Formatting in addiction to the total page number

2001-09-19 Thread Keiron Liddle
This is possible with a bit of inovation. Thanks to the support of markers and svg. The only problem is that the message will appear on all pages except the last page, unless someone knows how to solve this. The idea is to put the message in the static area and also have a marker that is placed

Re: FOP on IBM AS400

2001-09-19 Thread jthaemlitz
I'm also having some image problems on the AS400. I'm using FOP version 0.18 and Java 1.2. I'm getting the following output when I try to write out the pdf. Pages without images turn out great. Any help or suggestions on this would be greatly appreciated. building formatting object tree

Does render(dom) actually work?

2001-09-19 Thread Savino, Matt C
Hello everyone. By any chance can someone point me to some example code which uses render(dom)? No matter what combination of driver methods or Fop versions (.17,.19,.20.1) I use I seem to get the same error: building formatting object tree setting up fonts java.lang.NullPointerException

Compressing Input Document

2001-09-19 Thread David Morris
Group, I am wondering if there is a way to compress the XSL-FO document passed to FOP. We have been experimenting with FOP via Cocoon, Cocoon2, and standalone. One tact was to use JDOM to create a DOM XSL-FO tree passed to FOP. The data passed to FOP seems pretty excessive and will not

RE: Does render(dom) actually work?

2001-09-19 Thread Shkuro, Yuri
Matt, Why don't you do it all in one pass? I have a servlet, that calls some bean to get XML document in a DOM format (actually JDOM), then registers fop driver as receiver of SAX events and runs XSLT on the JDOM tree. // 1. Generate XML tree Document xmlSummary =

Re: ETA on 0.20.2

2001-09-19 Thread Karen Lease
Hi Keiron, I'll fix the bug 3531 (column-number attribute not working on table-column) before the release unless you're already working on it. Also willing to give a hand with updating the website. Regards, Karen PS. I'm working away on LayoutManager ideas and hope to contribute something

DO NOT REPLY [Bug 3531] - fo:table-column column-number attribute does not work

2001-09-19 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT http://nagoya.apache.org/bugzilla/show_bug.cgi?id=3531. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

RE: Does render(dom) actually work?

2001-09-19 Thread Savino, Matt C
Yuri, thanks for your help. I tried your solution and I still get the following error: building formatting object tree building formatting object tree javax.xml.transform.TransformerException at org.apache.xalan.transformer.TransformerImpl.transformNode(TransformerImpl.j ava:1212)

Continued on Page ...

2001-09-19 Thread Trevor_Campbell
Does any one know how I can generate a Continued on Page 2 message on the bottom of Page 1 and so on throughout a document. I have looked at markers, but can't see how I can use them for this. - To unsubscribe, e-mail: [EMAIL

RE: Does render(dom) actually work?

2001-09-19 Thread Suhail Rashid
Hi Savino, Make sure there are NO nulls making their way into the text nodes of your xml stream. these would not give problems if u wrote the xml to a file first suhail -Original Message- From: Savino, Matt C [mailto:[EMAIL PROTECTED]] Sent: Thursday, September 20, 2001 3:59 AM To:

Re: Formatting in addiction to the total page number

2001-09-19 Thread Keiron Liddle
On Wed, 19 Sep 2001 17:31:43 Keiron Liddle wrote: This is possible with a bit of inovation. Thanks to the support of markers and svg. The only problem is that the message will appear on all pages except the last page, unless someone knows how to solve this. Sorry about the double message.