cvs commit: xml-fop/src/org/apache/fop/svg SVGUtilities.java

2001-07-11 Thread keiron
keiron 01/07/11 03:04:08 Added: src/org/apache/fop/svg SVGUtilities.java Log: a utility file for creating some svg things Revision ChangesPath 1.1 xml-fop/src/org/apache/fop/svg/SVGUtilities.java Index: SVGUtilities.java

Re: page numbering

2001-07-11 Thread Keiron Liddle
On Tue, 10 Jul 2001 22:05:41 eric.deandrea wrote: I am using FOP 0.14. Any help would be greatly appreciated! I don't think that 0.14 had page numbering. I would suggest trying the latest FOP. - To unsubscribe, e-mail: [EMAIL

how starting FOP without XML-File

2001-07-11 Thread Marc Jenzer
Hallo I generate my PDF-File in a servlet: File xmlFile = new File("c:/temp/test.xml"); File xslFile = new File("c:/temp/test.xsl"); InputHandler inputHandler = new XSLTInputHandler(xmlFile, xslFile); org.xml.sax.XMLReader parser = inputHandler.getParser();

XHTML to PDF using FOP????

2001-07-11 Thread rajeev nair
HELLO, can anybody help me to convert my XHTMLinto pdf. the XHTML I'M GIVING BELOW.if I avoid all the anchor tags(a)tags and table tags and make it pure xsl data file then i'm easily able to write xslfo file for this and it is making good pdf. But for the given Xhtml file how i write xslfo.My

page numbers

2001-07-11 Thread eric.deandrea
I am trying to get page numbering to work but it's not showing up. Here's what I have: xsl:stylesheet version=1.0 xmlns:xsl=http://www.w3.org/1999/XSL/Transform; xmlns:fo=http://www.w3.org/1999/XSL/Format; xsl:variable name=pagewidth11/xsl:variable

RE: XHTML to PDF using FOP????

2001-07-11 Thread Michiel Verhoef
Hi, First, there is a weird d element in your last table. I'm no XHTML expert but it is not HTML AFAIK. Second, some of the tr are missing td elements. A tr needs a td (at least, in HTML it does) so my guess is that your XHTML is not valid HTML. Any xsl that converts valid HTML to say, fo will

RE: how starting FOP without XML-File

2001-07-11 Thread Marc Jenzer
Thanks for the answer! But with your solution, I can't pass the fop xsl file. This file is on the filesystem. Could you help me? Thanks -Original Message-This code will read the XML from a String object and write the PDF outputback to the browser.: try { String fopstring =

RE: how starting FOP without XML-File

2001-07-11 Thread Jim Urban
If I understand you correctly, in your servlet you wish to apply an xsl style sheet (from a file) to an xml string in memory to generate a FO xml string in memory to run through FOP to generate a PDF in memory which you want to return to the browser. If that is the case, here are the pieces for

Re: Migration

2001-07-11 Thread Paul . Hussein
There aren't any fully integrated tools out there ( or I have missed them ). I use XML Spy ( which is cool ), to do the XML bit, Antenna House XSL Formatter to display the result of applying XSL to XML to produce FO, and to edit and debug XSL int the IBM XSL Editor ( which is a really good tool

Re: Migration

2001-07-11 Thread Sebastian Rahtz
Chris Hamilton-Emery writes: services of this kind? And lastly, all of this presupposes that I can use FO to achieve very high-quality setting of academic books and journals, but is this the right direction? My gut feeling is that you would be unwise to depend too much on FO at this point

Can't build fop: Hangs after Starting Ant...

2001-07-11 Thread Gregor N. Purdy
Its been some time since I've been able to build fop from CVS. I just completed a fresh checkout of xml-fop and when I run ./build.sh, the thing just hangs after printing Starting Ant Has anyone else run into this? Is it solved? I'd like to get back to using FOP for some of my projects, and

Fop flop?

2001-07-11 Thread Mark Lillywhite
Hi foppers I just checked out the latest fop from CVS (after a long hiatus). After building it I get the attached messages when I try to run it against an input file that works under the version of FOP I downloaded from the web page today. I suspect this is a problem with the CVS FOP but I'm

RE: Messages

2001-07-11 Thread Don Seib
FOP writes all of its messages out through a static MessageHandler object. You can direct those messages by calling the setOutputMethod method on that object before you start the render operation like so: MessageHandler.setOutputMethod( MessageHandler.NONE ); There are also methods to get the

Re: Messages

2001-07-11 Thread Heiko Barthel
Try the static methos: // switch off FOP messages MessageHandler.setOutputMethod(MessageHandler.NONE); Heiko Is there anyway I can turn these messages off? I will be using FOP quite heavily in my high traffic application and I don't want my Tomcat log -- GMX - Die Kommunikationsplattform

Re: properties, elements

2001-07-11 Thread Karen Lease
Keiron Liddle wrote: Then after that I will see about handling the element child constraints (I haven't worked out how this should be done yet, any ideas) and doing a similar thing (to be impl.) with the rest of the elements that we don't have yet. For things like tables, I had

RE: how starting FOP without XML-File

2001-07-11 Thread Marc Jenzer
Jim, Thanks a lot for your help! It works now! Cheers Marc

RE: Messages

2001-07-11 Thread John Wyman
I had to delete the entire build directory and rebuild before these errors would go away. John John H. Wyman 5160 Darry Lane Dublin, OH 43016 (614)-889-0698 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Wyman Genealogy Site http://www.wyman.org Francis Wyman Assoc email List

RE: Fop flop?

2001-07-11 Thread John Wyman
I had to delete the entire build directory and rebuild before these errors would go away. Something isn't getting extracted properly. John John H. Wyman 5160 Darry Lane Dublin, OH 43016 (614)-889-0698 [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] Wyman Genealogy Site http://www.wyman.org Francis

cvs commit: xml-fop/src/org/apache/fop/fo/flow TableRow.java

2001-07-11 Thread klease
klease 01/07/11 14:27:40 Modified:src/org/apache/fop/fo/flow TableRow.java Log: Fix spanning bug; use height property Revision ChangesPath 1.46 +6 -5 xml-fop/src/org/apache/fop/fo/flow/TableRow.java Index: TableRow.java

Re: Fop flop?

2001-07-11 Thread Karen Lease
Hi Mark, To fix the error messages, please build the clean target and then rebuild. New properties added have changed values for a lot of constants and all the classes need to be recompiled. HTH, Karen Mark Lillywhite wrote: Hi foppers I just checked out the latest fop from CVS (after a

Questions about FOP, Batik, Java Graphics to PDF, SVG, etc

2001-07-11 Thread Randall Parker
I'm intending to try to use Batik and FOP to convert graphics drawn with java.awt.Graphics2D to PDF, SVG, and PNG. I'm especially interested in generating PDF. The relevant classes appear to be: org.apache.fop.svg.PDFDocumentGraphics2D org.apache.fop.svg.PDFGraphics2D