Re: New To Fop

2005-01-04 Thread Will Gilbert
Luke, What you are looking to do comes up pretty often on this list so you will probably get quite a bit of help. Here's mine What you will need to do is go from HTML into XML then into FO, once in FO, FOP can render it quite quickly into a PDF, your browser can even be used as the

Re: Code for c accent

2004-03-31 Thread Will Gilbert
On Mar 31, 2004, at 8:24 AM, Lucian Opris wrote: Hi, Does anybody know the unicode code for c accent ( c )? Thanks From the Latin Extended-A subset 0106 - Latin Capital Letter C with acute 0107 - Latin Small Letter C with acute smime.p7s Description: S/MIME cryptographic signature

Re: regarding version 0.20.5

2004-01-16 Thread Will Gilbert
On Jan 16, 2004, at 1:39 PM, J.Pietschmann wrote: Jignesh-NX01880 Kapadia wrote: Are there any API changes from 0.20.4 to 0.20.5? The API is compatible I ran into a problem with the setLogger() method. The argument had changed and it could not be simply cast to the new argument type. My test

Section Title in Page Footer

2003-12-16 Thread Will Gilbert
I would like to put a current section name is the footer of the PDF. I've used the footer to successfully write the page number and date and other static information. This would be written into fo:static-content flow-name=xsl-region-after. I am afraid that the words static-content might just

Re: Section Title in Page Footer

2003-12-16 Thread Will Gilbert
On Dec 16, 2003, at 11:45 AM, Chris Bowditch wrote: Will Gilbert wrote: This would be written into fo:static-content flow-name=xsl-region-after. I am afraid that the words static-content might just say it all and I can't do this. fo:marker and fo:retrieve-marker can be used to put variable

Re: table-cell breaking across pages

2003-12-02 Thread Will Gilbert
Was wonder how to keep the contents of a table-cell from breaking across pages when the table cell contains several paragraphs blocks. Try this: fo:table-row keep-together.within-column=always ... This did the trick. Viel Dank.

table-cell breaking across pages

2003-12-01 Thread Will Gilbert
Was wonder how to keep the contents of a table-cell from breaking across pages when the table cell contains several paragraphs blocks. I played with many combinations of keep-with..., widow/orphans that my head is spinning. The FOP examples are oriented towards cell with simple contents. Any

Re: External graphic referencing within a servlet

2003-05-21 Thread William Gilbert
I'm using a serlvet to perform the XSLT transformation into my PDF document. Everything works fine EXCEPT the images. I've tried referencing my images many different ways, and none seem to work. Does anybody know how to get this functionality to work? Here's my graphic:

Re: landscape format in PDF with XSL-FO

2003-05-15 Thread William Gilbert
Hello together, can anybody told me how to generate PDF with landscape format? Thanks Jan Here's a method we use in all of our reports, user has a check box which set an input parameter, doc-orientation, passed to the FOP servlet. xsl:param name=doc-orientation select='portrait'/

Re: HTML render class available?

2003-04-25 Thread William Gilbert
yep. I understand that I can create a XSL stylesheet like your example. But I try to write a Java application which simply switches between different render classes to realize different output formats: // Setup renderer (output format) driver.setRenderer(Driver.RENDER_PDF); The only

Re: HTML render class available?

2003-04-25 Thread William Gilbert
I agree with both. Up to now I generate HTML vis XSL and PDF via XSL-FOP. Fortunately, my incoming XSL is very HTML-like, where it isn't I write a custom XSL transform. Boo-boo... Line two should read XML not XSL: I agree with both. Up to now I generate HTML vis XSL and PDF via XSL-FOP.