Problems compiling CVS

2002-03-13 Thread Carlos Araya
I've tried the following on my CVS tree Cvs -z3 update ./build.sh clean ./build.sh all I get the following errors: [javac] /usr/local/java/xml-fop/build/src/org/apache/fop/fo/FONode.java:14: Class org.apache.fop.util.CharUtilities not found in import. [javac] import

RE: [ANNOUNCEMENT] Fop 0.20.3 released

2002-03-13 Thread Keen Tim
Thanks Christian - that's fixed it. I'm happy now. You can make your release. Seriously, sometimes I feel very stupid. Every other time I've had problems with versions I've looked in the examples and this time I didn't. Cheers Tim -Original Message- From: Christian Geisert

Re: Problems compiling CVS

2002-03-13 Thread Keiron Liddle
try cvs up -d On 2002.03.13 01:10 Carlos Araya wrote: I've tried the following on my CVS tree Cvs -z3 update ./build.sh clean ./build.sh all

Re: Rendered SVG does not contain images from xsl:fo external-graphic/

2002-03-13 Thread Keiron Liddle
Hi, The image part is not implemented as far as I can remember. As for the text, is it in the document, is it viewable using the batik viewer for example. It probably ignores your embedded ttf but will use the fonts available to the jvm. On 2002.03.12 20:12 Andrius Sabanas wrote: Hello, I would

Compile Fop 0.20.3 with J2SDK1.4.0

2002-03-13 Thread Miya Chiharu
Hello all, (B (BI try to compile Fop 0.20.3 with J2SDK1.4.0 but I have error messages. (B (BD:\fop-0.20.3\build.xml:472 javax.xml.transform.TransformerException: (Borg.xml.sax.SAXParseException: File (B"file:///D:/fop-0.20.3/D:/fop-0.20.3/build/src/codegen/encodings.xml" not found (B---

RE: FOP Performance Limitations?

2002-03-13 Thread Peter Jacobs
Are you using the included Xalan and Xerces.jar? I replaced them with Xalan 2.2 and Xerces 1.4.2 and got big improvement in speed (on Win2000 and Sun Solaris). Peter Peter Jacobs Freelance multimedia programmeur De Budetstraat 8 B-3201 Aarschot [EMAIL PROTECTED]

Re: SV: external-graphic src syntax

2002-03-13 Thread Magnus Sjöberg
I use Fop 0.20.2 and as long as the path to the imagefile is absolute, it works. Like so: fo:external-graphic src=file:/abs/path/to/images/image.jpg/ Also, there is an entry in Fop's config.xml where you can set the basedir but the comment says 'not implemented'. If, and when this entry gets

SV: SV: external-graphic src syntax

2002-03-13 Thread Klosa Uwe
Hello Magnus, have you tried this: fo:external-graphic src=url(image.jpg)/ I found it somewhere in the internet. Uwe -Ursprungligt meddelande- Fran: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Magnus Sjoberg Skickat: den 13 mars 2002 12:58 Till: [EMAIL PROTECTED] Amne: Re: SV:

Re: SV: external-graphic src syntax

2002-03-13 Thread Michael Engelhart
Hmm. Now that I know the syntax it works. Maybe I was just screwing put the long path name.. Thanks Mike On Wednesday, March 13, 2002, at 06:58 AM, Magnus Sjöberg wrote: I use Fop 0.20.2 and as long as the path to the imagefile is absolute, it works. Like so: fo:external-graphic

Re: SV: SV: external-graphic src syntax

2002-03-13 Thread Magnus Sjöberg
Ok, you got me started. I looked into this and found out the following ;-) In the xsl spec., the src attribute for fo:external-graphic is specified to contain a 'uri-specification' For all I know, this is the URI definition as defined in RFC2396. Looking into this and comparing the three

Re: SV: SV: external-graphic src syntax

2002-03-13 Thread Michael Engelhart
Thanks Mangus, That's great info. (Maybe we can get it stuck into the FAQ? ) I know have 2 working fine. 1 and 3 I still can't get to work My question about #1 is, how do you know what the relative path is relative too?? I my mind it should be relative to the stylesheet that's calling it but

Re: DocBook patch for FOP

2002-03-13 Thread Jeff Rancier
Thanks. At least this time it ran. Here's what the output looks like now: [INFO]: building formatting object tree [INFO]: [1] [WARN]: table-layout=auto is not supported, using fixed! [INFO]: [2] [WARN]: table-layout=auto is not supported, using fixed! [INFO]: [3] [WARN]: property -

another newbie question

2002-03-13 Thread Meltem Kogelbauer
OK, I need help on this Here is my XML page persons person name / address / country / /person person name / address / country / /person . /persons /page I am using

border around text

2002-03-13 Thread MARTIN Franck
Fop does not seem to implement borders for inline elements. Is there a way to draw a border around a text which width is unknown? ( not using absolute padding) A border applied to a block element draws a border with huge left right paddings. Thank you Franck MARTIN

Re: SV: SV: external-graphic src syntax

2002-03-13 Thread Magnus Sjöberg
That's bizarre, I 'assumed' FOP used the current directory as its base dir... I ran the following command with test.xml, test.xsl and image.jpg in the current directory: current_dir java org.apache.fop.apps.Fop -xml test.xml -xsl test.xsl -pdf test.pdf All images in the xml are added to the fo

AW: SV: SV: external-graphic src syntax

2002-03-13 Thread S. Jayaraman
Hi I think if you are running under tomcat, the current directory is tomcat/bin If you are running from command line, Java_home is the current dir Rgds Jay -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von Magnus Sjöberg Gesendet: Mittwoch, 13. März

AW: SV: SV: external-graphic src syntax

2002-03-13 Thread S. Jayaraman
Hi Sorry I goofed the earlier mail. I think if you are running under tomcat, the BASE directory is tomcat/bin If you are running from command line, Java_home is the BASE dir Rgds Jay -Ursprüngliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von Magnus Sjöberg

RE: another newbie question

2002-03-13 Thread Meltem Kogelbauer
Sorry to bother I solved the problem thanks Meltem -Original Message- From: Meltem Kogelbauer [mailto:[EMAIL PROTECTED] Sent: 13 March 2002 14:37 To: [EMAIL PROTECTED] Subject: another newbie question OK, I need help on this Here is my XML page persons person

Newbie question: Conditional page-brek

2002-03-13 Thread Mathy V Arumugam
How can I do a page break when the TABLE_TITLE is NOT empty. xsl:value-of select=TABLE_TITLE/ Thanks Mathy

Re: SV: SV: external-graphic src syntax

2002-03-13 Thread Michael Engelhart
I have the same setup but I'm calling FOP from an embedded application (NOT a web application - no tomcat or other server). Here's the code from my render() method: ByteArrayOutputStream out = new ByteArrayOutputStream(); DOMResult xslFODomResult =

Re: DOCBOOK-APPS: DocBook patch for FOP

2002-03-13 Thread Bob Stayton
On Wed, Mar 13, 2002 at 08:05:57AM -0500, Jeff Rancier wrote: Hello, I've generated a fo file from DocBook 1.48 XSL stylesheets, using Saxon 6.5.0. Using xalan-2.0.0.jar, I generated a intermediate fo file, using the DocBook 1.48 fo-patch-for-fop.xsl. I then attempt to generate a PDF file

Re: FOP Performance Limitations?

2002-03-13 Thread alex
Actually the FAQ (at http://www.owal.co.uk/cgi-bin/fopfaq.cgi since I have given up on the interactive Jyve program) doesn't contain much on memory consumption. I will add in the new page sequence when I (or someone else) comes up with an example. Alex At 20:22 12/03/2002, Chuck Paussa wrote:

rotate text

2002-03-13 Thread Michael König
Hello, I would like to rotate a piece of text by 90 degrees. Is there any possibility within FOP? The background: I create a letter together with the envelope. Unfortunately my printer only likes the envelopes turned by 90 degrees so I have to rotate the envelope page in my document . Thanks,

RE: FOP Performance Limitations?

2002-03-13 Thread David Wood
That's interesting that it made a difference for you. On our XML/XSL, it didn't make much difference - maybe it shaved 1-2 seconds of a 60 second rendering. -David On Wed, 13 Mar 2002, Peter Jacobs wrote: Are you using the included Xalan and Xerces.jar? I replaced them with Xalan 2.2 and