xslt library

2005-02-24 Thread Peter Menzel
such thing? Kind regards, Peter Menzel - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

xml schema question

2004-07-22 Thread Peter Menzel
Hi all, i am working on a xml schema and have the following problem, maybe somebody can help me. i would like to have the follwoing elment with content: element aa/ cc/ bb/ /element The elements aa and bb are required to be there and they may occur just one time. Other sub elements of

Re: How to get ALL parts of a large SVG document in a single PDF page

2003-12-17 Thread Peter Menzel
Hi, I ran into nearly the same problem some time ago. I had a svg with arbitrary height and width and I wanted to fit the image to a single page (A4). But my image is directly embedded in fo code, that is given to FOP for pdf output. fo:instream-foreign-object svg:svg /svg:svg

fit table in table-cell

2003-12-11 Thread Peter Menzel
Hi all fop users, I have a problem fitting a table in a table-cell. my table looks like: ++-- ... --+---+ |a text with | +___X___+ |a line break| | | ++-- ... --+---+ what the picture says, is that in one table-row I have one or more

space between table-rows

2003-06-05 Thread Peter Menzel
Hi How can I force a space between the rows of a table in fop 0.20.4 ? fo:table-row padding-after=5mm does not work.. Greetings, Peter -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

table-row +border

2003-02-20 Thread Peter Menzel
Hi I try to use fo:table-row border-style=solid border-width=1pt border-color=black to achieve row separating lines in my tale, but it does not work. When I put the border.. attributes in table-cell, it works. Is the border stuff not implementd for table-row ? I'm using FOP 0.20.4. Peter --

userconfig.xml in servlet

2003-01-31 Thread Peter Menzel
Hi everybody! I want to set FOPs userconfig.xml in the servlet, using these lines: File userConfigFile = new File(getServletContext().getResource(/WEB-INF/userconfig.xml).toExternalForm() ); Otions options = new Options(userConfigFile); this code compiles, but when running the servlet, I get an

RE: userconfig.xml in servlet

2003-01-31 Thread Peter Menzel
Thanks, but it still does not work. I use File userConfigFile = new File(getServletContext().getRealPath(/WEB-INF/userconfig.xml)); to set the userconfig file, and this works fine. but all efforts to set the baseDir didn't work: I tried: String pathToFile =

Driver API

2003-01-24 Thread Peter Menzel
Hi Where can I find a (javadoc) API for the fop Driver class ? Peter -- - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Driver in Servlet

2003-01-20 Thread Peter Menzel
Hi fop users! I have a servlet, which gets data from a sql database, puts it in xml and then i transform the xml to xsl:fo and use the fop Driver to transform it to pdf and send the pdf to the browser, using the following code snippet: public void doGet(HttpServletRequest request,