Re: Empty pages after break-after

2007-11-01 Thread m_dieu
Hi, here is my whole xslt. Maybe the code is not very good - its my first try ;) fo:block font-size='8px' font-family='Helvetica' color='cSchwarz;' fo:block line-height='6px' font-size='14px' font-weight='bold' margin-left='1mm' Auswertung

Re: proper fop command line

2007-11-01 Thread Andreas L Delmelle
On Nov 1, 2007, at 10:29, Khaled Aly wrote: Hi Khaled - I have my Java_Home environment variable pointing to the root of jdk1.5.0_09, the version I got installed. I see the FOP downloads labeled jdk1.3 and jdk1.4. I assume my JDK version should be backward compatible and this could not be

FW: proper fop command line

2007-11-01 Thread Khaled Aly
Hi Andreas, all Just confirming a couple of things: - I have my Java_Home environment variable pointing to the root of jdk1.5.0_09, the version I got installed. I see the FOP downloads labeled jdk1.3 and jdk1.4. I assume my JDK version should be backward compatible and this could not be the

Re: Tools for reverse FOP?

2007-11-01 Thread Andreas L Delmelle
On Oct 31, 2007, at 23:59, siegfried wrote: Hi Are there any tools that will accept a PDF and produce XML? How do you mean this exactly? Translating PDF to a FO-document? What is the use-case? Might this be a feature of FOP someday? No plans that I'm aware of. Cheers Andreas

Re: Tools for reverse FOP?

2007-11-01 Thread Abel Braaksma
siegfried wrote: Are there any tools that will accept a PDF and produce XML? Might this be a feature of FOP someday? Thanks, Siegfried That's highly improbable, because PDF is a non-structured format and going from non-structured to structured is a daunting (and often theoretically and

Re: Issue with Table spanning multiple pages

2007-11-01 Thread Vincent Hennebert
Hi Kumar, Puppala, Kumar (LNG-CON) wrote: I tested the same failedTable.fo file against fop 0.93 version and it works fine. Just an FYI if someone can relate this behavior to the fixes added for 0.94. snip/ I am running into an issue with an fo:table that spans 2 pages. Instead of starting

Would an extension to print Gantt charts work?

2007-11-01 Thread Fred Janon
I just started looking at FOP, therefore I don't really understand what it can or cannot do. My attention was caught by the different formats that can be generated. I would like to know if FOP with a custom extension could generate Gantt charts? I am interested in pdf, PCL and Java/AWT generation.

Re: Would an extension to print Gantt charts work?

2007-11-01 Thread Warren Young
Fred Janon wrote: I just started looking at FOP, therefore I don't really understand what it can or cannot do. Think of FOP as an abstraction on top of other page description languages like Postscript or TeX. It exists because it's more convenient to perform automatic manipulations on the

Number of elements in Collection

2007-11-01 Thread m_dieu
Hi, is there a possibility to count the number of elements in a collection before/while using xsl:for-each select='collection'? Maybe I have to use 2 for-each loops and count the elements in the first one and do whatever I want in the second. But how can I count in XSLT? Thanks in advance! --

RE: Vertical Small Caps alignment

2007-11-01 Thread Spencer Tickner
Hi Andreas, So far I've been trying: 1) Display-align - but as you said it doesn't seem to have any affect on block text 2) Combinations of above on fo:inline-container, fo:region-body, however this has been mainly shots in the dark while reading the spec. 3)

Re: Vertical Small Caps alignment

2007-11-01 Thread Andreas L Delmelle
On Nov 1, 2007, at 22:30, Andreas L Delmelle wrote: fo:block font-size=11pt font-family=Times font- weight=bold fo:wrapper font-size=75%fo:wrapper font-size=133%P/fo:wrapperART/fo:wrapper /fo:block Now, no matter what I try, the smaller text (ART) is aligned at the top of

RE: Vertical Small Caps alignment

2007-11-01 Thread Spencer Tickner
Hey Andreas, Your right!, just tried it myself and everything looks great. Thanks for the help. Spence -Original Message- From: Andreas L Delmelle [mailto:[EMAIL PROTECTED] Sent: November 1, 2007 2:45 PM To: fop-users@xmlgraphics.apache.org Subject: Re: Vertical Small Caps alignment

Re: proper fop command line

2007-11-01 Thread Andreas L Delmelle
On Nov 1, 2007, at 21:29, Khaled Aly wrote: Thanks Andreas for your willingness to help. I got it working fine with 0.93, which is the version used by oXygen 8.2 (that's why I never noticed there was a problem; somehow 0.93 is forgiving about the particular issue). When I tried same on

Re: How to code infinite page sequence loop?

2007-11-01 Thread Andreas L Delmelle
On Oct 31, 2007, at 11:03, Gregan, Miroslav wrote: Hi I'm trying to implement an infinite loop of page-sequences (expecting to spare memory to render big pdf) I tested my code with both fop 0.20.5 and 0.94, but no changes with memory consumption were visible. So I suppose (hope also) that

Re: Would an extension to print Gantt charts work?

2007-11-01 Thread Fred Janon
Thanks Jeremias, thanks Warren! It helps a lot. Your two following points made it clearer for me: the answer here is to write your Gantt generator to create XSL-FO, which you may then translate into something else with FOP the XSL-FO spec allows foreign XML formats and images to be combined