RE: Question about full page tables

2004-11-23 Thread Jon Steeves
Thanks Andreas. That worked perfectly. I have one other problem. The way make it so that the items print 3 across is by putting the following inside a for loop (the code has been stripped down to make it more legible): fo:table-cell fo:block xsl:apply-templates

RE: Question about full page tables

2004-11-23 Thread Pascal Sancho
Hi Jon -Message d'origine- De : Jon Steeves [mailto:[EMAIL PROTECTED] fo:table-cell fo:block xsl:apply-templates select=item/ /fo:block /fo:table-cell fo:table-cell fo:block xsl:value-of

Re: References on same page

2004-11-23 Thread Sven Waibel
Hi, i got it. So it works: ../../../tables/tb/@id Thanks! Sven Andreas L. Delmelle wrote: -Original Message- From: Sven Waibel [mailto:[EMAIL PROTECTED] Hi, snip / But i get this error: internal-destination or external-destination must be specified in basic-link This

[fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Gunter D'Hondt
Hello, FOP 0.20.4 I've got the following xml (also tried to put it into a cdata block): Quote descrLine1 Line2/descr /Quote and the following xsl-fo: ... fo:block linefeed-treatment=preservexsl:value-of select=Quote/descr//fo:block ... which still outputs Line1Line2 so it replaces the

Re: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Chris Bowditch
Gunter D'Hondt wrote: snip/ which still outputs Line1Line2 so it replaces the newline character instead of preserving it Anybody who gots an idea what I'm doing wrong here? Any help is welcome... This is a FAQ. See: http://xml.apache.org/fop/faq.html#fo-preformat Chris

Re: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Gunter D'Hondt
Looking at the FAQ I think I don't do anything wrong in my code coz I'm placing the attrbute linefeed-treatment=preserve into it. The attr white-space-collapse I don't need or has nothing to do with the linefeed (I assume). I understand that the linefeed-treatment attr is the one to specify

RE: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Pascal Sancho
Hi Gunter, -Message d'origine- De : Gunter D'Hondt [mailto:[EMAIL PROTECTED] Looking at the FAQ I think I don't do anything wrong in my code coz I'm placing the attrbute linefeed-treatment=preserve into it. The attr white-space-collapse I don't need or has nothing to do with

RE: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Gunter D'Hondt
And is there a workaround that I can use? Or am I forced to use another xslfo processor then the Apache FOP one? Might be a tricky question on this list, but what are the good alternatives for FOP? Gunter Pascal Sancho [EMAIL PROTECTED] 23-11-2004 13:39 Please respond to [EMAIL PROTECTED]

Re: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Louis . Masters
Gunter: In 20.3, I use 'white-space-collapse' to keep my linefeeds intact: fo:block white-space-collapse=false xsl:value-of select=Quote/descr/ /fo:block Give it a try. -Lou

text in vertical direction

2004-11-23 Thread Dirk Sonne
Hello List, I have a little problem. I want to write some text in a vertical direction. FOP don't supports "writing-mode". Is there a little fix? Thank you. -- Dipl.-Inf. Dirk Sonne Project Development/IT GETAG www.get-ag.com

Re: OUTLINE QUESTION

2004-11-23 Thread Nestor Martinez
Andreas L. Delmelle wrote: -Original Message- From: Nestor Martinez [mailto:[EMAIL PROTECTED]] Hi, Does any one know why the following code wouldn't work as expected. When I click on a bookmark link it takes me to the correct page but not the exact

Re: text in vertical direction

2004-11-23 Thread Louis . Masters
I use SVG text to do this. For example: fo:instream-foreign-object svg:svg width=150 height=150 xmlns=http://www.w3.org/2000/svg; svg:text x=1 y=1 writing-mode=tb glyph-orientation-vertical=0!--this does it-- FRONT /svg:text /svg:svg /fo:instream-foreign-object -Lou

RE: text in vertical direction

2004-11-23 Thread Pascal Sancho
Hi You can use a foreing-object to embed svg, that works fine: fo:instream-foreign-objectsvg:svgxmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="7" height="250"svg:g transform="translate(5,250)"svg:g transform="rotate(-90)"svg:text x="0" y="0"

Re: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread Chris Bowditch
Gunter D'Hondt wrote: Looking at the FAQ I think I don't do anything wrong in my code coz I'm placing the attrbute linefeed-treatment=preserve into it. The attr white-space-collapse I don't need or has nothing to do with the linefeed (I assume). Incorrect assumption, the FAQ says you need to

RE: OUTLINE QUESTION

2004-11-23 Thread Andreas L. Delmelle
-Original Message- From: Nestor Martinez [mailto:[EMAIL PROTECTED] Hi, Here is a little bit of the fo file, where it shows the block with the id, but it actually goes to the block right after the block with the leader inside of it, in other words, it points to two blocks down from

Re: OUTLINE QUESTION

2004-11-23 Thread J.Pietschmann
Andreas L. Delmelle wrote: but it sounds like one of those pesky 'nested block' issues... Well, I'd say it's the table cells and blocks with margins don't mix well for link target offset calculation issue. Last time I looked padding the table cell rather than using a margin in an enclosed block

Re: [fop] linefeed-treatment=preserve doesn't preserve the linefeed

2004-11-23 Thread J.Pietschmann
Gunter D'Hondt wrote: The attr white-space-collapse I don't need or has nothing to do with the linefeed (I assume). The behaviour regarding line feed treatment of FOP 0.20.5 is still based on a rather ancient draft rather than the current standard. J.Pietschmann

JCE present but not working

2004-11-23 Thread JBryant
Hi, all, Here's the scoop: * I am trying to get encryption to work in FOP. * I am using Windows XP, Java 1.4.1_02, and FOP 0.20.5. * I have downloaded bcprov-jdk14-125.jar from Bouncy Castle and have put that jar file in fop-0.20.5\lib. * I have modified build.bat to include the following

RE: JCE present but not working

2004-11-23 Thread Andreas L. Delmelle
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Hi, * I have downloaded bcprov-jdk14-125.jar from Bouncy Castle and have put that jar file in fop-0.20.5\lib. Wrong location (see also a thread from ... yesterday, I believe) You have to put it in the lib\ext

RE: JCE present but not working

2004-11-23 Thread Andreas L. Delmelle
-Original Message- From: Andreas L. Delmelle [mailto:[EMAIL PROTECTED] ... (probably) wrong location again. It's far more likely that you have a separate Java Runtime under Program Files somewhere (--the one your %JAVA_HOME% refers to). Hmm... A bit more precise: the Java Runtime

RE: JCE present but not working

2004-11-23 Thread JBryant
You were correct, Andreas. Your first e-mail made me wonder if I had Java installed in more than one place, and I do. I had modified the java.security file for the wrong one. I have inherited this machine, and under a big enough time crunch that I cannot wipe its drives and build it up as I