Re: Would an extension to print Gantt charts work?

2007-11-02 Thread Jeremias Maerki
On 02.11.2007 00:24:32 Fred Janon wrote: Thanks Jeremias, thanks Warren! It helps a lot. Your two following points made it clearer for me: the answer here is to write your Gantt generator to create XSL-FO, which you may then translate into something else with FOP the XSL-FO spec allows

Re: getting FOP to work with Java using 0.94

2007-11-02 Thread Michael Tracey Zellmann
Thanks. closing the OutputStream fixed my problem, and your way of getting the xml file is clearly better. I used to get a Fop instance directly from the constructor, but that is deprecated now, in favor of the FopFactory. That was the change I had encountered. On Nov 2, 2007 3:41 AM, Jeremias

Cannot convert MS Word HTML to PDF with fop-0.94; fop-0.20.5 worked

2007-11-02 Thread John Brown
Hello All, First of all, I know nothing about Xalan, FOP, etc. I'm probably breaking all your posting rules. Maybe the list server figured that out and that's why it rejected my post via Gmane as spam. Anyway, I'm just trying to convert a Microsoft Word HTML file to PDF. The following article

Re: hyphenation problem

2007-11-02 Thread Vincent Hennebert
Hi Kumar, Sorry for the delay, looks like I ended up forgetting this thread. Puppala, Kumar (LNG-CON) wrote: Hi Vicent, I am not sure if I understand you. If you look at newFop.pdf(from previous mail), the 14th line in the table cell ( 'sion scheme') has the overflow. It looks like the

Re: getting FOP to work with Java using 0.94

2007-11-02 Thread Jeremias Maerki
FOP's API hasn't changed. I don't remember any change in that area that could trigger this, but I could also be wrong. Anyway, what I'm missing in your code snippet is a try..finally around the code where the OutputStream is closed in the finally section. That omission is most likely the reason