Re: include file in XSL

2003-02-11 Thread Oleg Tkachenko
Athalye, Rishi wrote: I do think this was the right forum for such a question. Sorry, Rishi, but XSL include questions are really offopic in the mail list devoted to FOP development. Please ask your question in xsl-list, see http://www.mulberrytech.com/xsl/xsl-list/index.html. -- Oleg

Re: source for hz algorithm

2003-02-11 Thread Oleg Tkachenko
Victor Mote wrote: FYI, I now have the Knuth books Digital Typography and the 5-volume Computers Typesetting, and have perused the relevant sections. The h j For any who are interested in line-breaking, I highly recommend at least reading through this material. The book has a lot of other

RE: source for hz algorithm

2003-02-11 Thread Victor Mote
Oleg Tkachenko wrote: I've got this book too, good one, but too TeX-oriented IMO. True enough that the book in general is TeX- Metafont-oriented. However, I thought the chapter on line-breaking was general enough to be very useful to us. Victor Mote

Re: cvs commit: xml-fop/src/org/apache/fop/render AbstractRenderer.java

2003-02-11 Thread Jeremias Maerki
On 11.02.2003 19:10:16 J.Pietschmann wrote: [EMAIL PROTECTED] wrote: Fixes a cause for a NPE. Doesn't fix the obvious bug, though. + final String pageNumber = (area.getPage() != null Dammit, does this mean the page can be already null? Sounds like it. :-) In this case the

DO NOT REPLY [Bug 2106] - broken justification with numeric umlaut entities

2003-02-11 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=2106. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

DO NOT REPLY [Bug 6094] - 0.20.3rc hangs in endless loop

2003-02-11 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=6094. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.

cvs commit: xml-fop/src/org/apache/fop/fo/expr LabelEndFunction.java

2003-02-11 Thread pietsch
pietsch 2003/02/11 11:47:25 Modified:src/documentation/content/xdocs Tag: fop-0_20_2-maintain relnotes.xml src/org/apache/fop/fo/expr Tag: fop-0_20_2-maintain LabelEndFunction.java Log: Fixed JAI URL. PR:16957

Throwing away code was: Re: cvs commit:

2003-02-11 Thread J.Pietschmann
Jeremias Maerki wrote: Dammit, does this mean the page can be already null? Sounds like it. :-) Where the hell is it nulled? I can't find it! When I tracked down the bug, I tought a function on LineArea would be nice that constructs a String from its children so you get some context in your

Re: DO NOT REPLY [Bug 6094] - 0.20.3rc hangs in endless loop

2003-02-11 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: Could someone confirm that the endless loop terminator in 0.20.5 does not catch this? Yes. The loop seems to be in FOText.addRealText, where empty, zero height lines are added generated. This could be a bug in LineArea around line 667, where text is added to the line

Re: cvs commit: xml-fop/src/org/apache/fop/fo/expr LabelEndFunction.java

2003-02-11 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: Modified:src/documentation/content/xdocs Tag: fop-0_20_2-maintain relnotes.xml src/org/apache/fop/fo/expr Tag: fop-0_20_2-maintain LabelEndFunction.java Log: Fixed JAI URL. Oops, sorry for screwing

Re: Throwing away code was: Re: cvs commit:

2003-02-11 Thread Jeremias Maerki
On 11.02.2003 20:55:40 J.Pietschmann wrote: Jeremias Maerki wrote: Dammit, does this mean the page can be already null? Sounds like it. :-) Where the hell is it nulled? I can't find it! It is never set. Area.setPage() is never called for LineAreas or so Eclipse tries to tell me. When I

RE: FopServlet example!

2003-02-11 Thread Mark C. Allman
Write your own InputHandler to do what you need. Then do the usual driver.render() call: Driver driver = new Driver(); InputHandler inputHandler = new MyCustomInputHandler(..whatever your InputHandler needs..); driver.setOutputStream(..wherever you want the output to go..);

Re: FopServlet example!

2003-02-11 Thread J.Pietschmann
Ken Masters wrote: I am new to Apache FOP, and am finding a little problem with what I'm doing. The XSLTInputHandler class has two parameters, the XML and XSL File's. Basically what I would like to do is pass an XML as a Java String (since it is dynamically created) and the XSL can be passed

RE: Throwing away code was: Re: cvs commit:

2003-02-11 Thread Victor Mote
Jeremias Maerki wrote: On 11.02.2003 20:55:40 J.Pietschmann wrote: ... Actually, the way the redesign was attempted was probably a bad idea. See http://www.joelonsoftware.com/articles/fog69.html Seems we have now the worst of all, with a reasonably working but outdated