Re: TOC page number problem

2003-02-24 Thread Doray, Arnold
Date: Fri, 21 Feb 2003 19:36:54 +0100 To: [EMAIL PROTECTED] From: J.Pietschmann [EMAIL PROTECTED] Subject: Re: TOC page number problem Message-ID: [EMAIL PROTECTED] Could you post the FO here? There have been lots of complaints about this and related issues, however, they are hard to track down

FOP : Some doubts..

2003-02-24 Thread shankar
Hai, I am new user to FOP. Where can I find Examples files like ExampleFO2PDF.java, ExampleXML2FO.java, ExampleXML2PDF.java..,etc..? Is it possible to embed graphical files such as jpeg or png in the PDF output..?. -- With Best Regards / Mit Freundlichen Gren Shankar ThulasiRaman

Problem with Servlet and IEExplorer

2003-02-24 Thread Eveline . Meyer
Hello everybody! I made a PDF with FOP and wanted to send the output via the servlet to the IEExplorer to view it with Acrobat Reader within the Explorer. My problem is, that the Explorer after he has loaded the page reloads it immediately a second time and only then it displays the output. I've

Re: FOP : Some doubts..

2003-02-24 Thread Jeremias Maerki
On 24.02.2003 12:31:08 shankar wrote: I am new user to FOP. Where can I find Examples files like ExampleFO2PDF.java, ExampleXML2FO.java, ExampleXML2PDF.java..,etc..? They are only available since FOP 0.20.5rc2. Please upgrade. You'll find them in the directory examples/embedding. Is it

Re: paragraph styles and character styles

2003-02-24 Thread Jeremias Maerki
Do I get you right that you seek something like the styles available in Microsoft Word or OpenOffice Writer? There is no direct equivalent to this in XSL-FO. What you can do, though, if you're working with XSLT is working with xsl:attribute-set (a feature of XSLT), for example. Other than that

Re: symbol font SVG not display

2003-02-24 Thread H. krishna
Dear J.Pietschmann, Thank for your replay mail. Trz Symbol, with an upper case S. Now, My symbol font problem is solved. 1. Check whether the SVG can be displayed with Batik. Yes, My SVG file is displayed on batik. 2. Run the FOP CLI with the -d switch, if you get a stack trace,

Re: symbol font SVG not display

2003-02-24 Thread Myriam Delperier
i think you should put -d (like debug) option in fop.bat it would be something like this java -cp %LOCALCLASSPATH% org.apache.fop.apps.Fop -d %1 %2 %3 %4 %5 %6 %7 %8 - Original Message - From: H. krishna [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 24, 2003 9:18 AM

Can't get it work (was: Insert SVG image)

2003-02-24 Thread Timo Haberkern
Hello again, i can't sort out my problem with inserting external SVG images. Is there somebody who can help me? It is very urgent! I still have the same problem. If i embedd a SVG image with fo:external-graphic it is included correctly, but wrong scaled. If i use: fo:instream-foreign-object svg

Re: Can't get it work (was: Insert SVG image)

2003-02-24 Thread Myriam Delperier
I don't know if it's the only problem but I think you have to put the attributes width height in your svg element here is an exemple which works for me fo:block fo:instream-foreign-object svg id=svg-root width=32 height=50 xmlns:xlink=http://www.w3.org/1999/xlink;

Re: symbol font SVG not display

2003-02-24 Thread H. krishna
Dear Myriam Delperier, i think you should put -d (like debug) option in fop.bat it would be something like this java -cp %LOCALCLASSPATH% org.apache.fop.apps.Fop -d %1 %2 %3 %4 %5 %6 %7 %8 java -Xmx250m -cp %LOCALCLASSPATH%org.apache.fop.apps.Fop -d -c conf\userconfig.xml %1 %2 %3 %4 %5

Re: Can't get it work (was: Insert SVG image)

2003-02-24 Thread Timo Haberkern
That doesn't work too. Now i get the batik image for broken-image (see attached pdf page 2). I use now: fo:instream-foreign-object svg viewBox=0 0 20 20 xmlns=http://www.w3.org/2000/svg; width=113mm height=23mm image preserveAspectRatio=xMidYMid

Re: Can't get it work (was: Insert SVG image)

2003-02-24 Thread Myriam Delperier
maybe there is a porblem between the size of your image and viewBox=0 0 20 20 - Original Message - From: Timo Haberkern [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 24, 2003 10:20 AM Subject: Re: Can't get it work (was: Insert SVG image) That doesn't work too. Now

Re: Can't get it work (was: Insert SVG image)

2003-02-24 Thread Timo Haberkern
Hmm, that doen't work too :-( I removed it completely. But The broken-image is still visible instead of the correct SVG image. Timo Myriam Delperier wrote: maybe there is a porblem between the size of your image and viewBox=0 0 20 20 - Original Message - From: Timo Haberkern [EMAIL

AW: Detect page break in fo:flow

2003-02-24 Thread Mirko Sertic
Hello! Yes, i need a partial sum. How would this be done using markers ? Is there an example available ? Thanks a lot Mirko -Ursprungliche Nachricht- Von: Oleg Tkachenko [mailto:[EMAIL PROTECTED] Gesendet: Montag, 24. Februar 2003 10:55 An: [EMAIL PROTECTED] Betreff: Re: Detect page

[FOP] tab cell

2003-02-24 Thread Martins Stephane
Hello Is there any way to make table column width match with text size ? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

How do I rest Page Number to 1 for each new section/chapter

2003-02-24 Thread andrew mercer
Hi, Sorry if this is in the Archive, I have searched it and the FAQ to no avail. I am trying to create a pdf file from an xml file that is converted using fop. The layout is based mainly on tables/rows etc. I can successfully create the document, however I have many sections within the whole

AW: How do I rest Page Number to 1 for each new section/chapter

2003-02-24 Thread Zieseniß, Markus
I would put a for-each loop around the main page-sequence like: xsl:for-each select=ChAPTER fo:page-sequence master-reference=alleSeiten initial-page-number=1 fo:static-content flow-name=xsl-region-after fo:block

Re: AW: How do I rest Page Number to 1 for each new section/chapter

2003-02-24 Thread andrew mercer
Thanks, Tried that but now get the following error when trying to convert the .fo file to a .pdf file using org.apache.fop.apps.Fop: fo:flow must contain block level children. I have attached my .xsl file (as it is not too long) and left the suggested xsl:for-each... in See line 33. Any other

Re: AW: How do I rest Page Number to 1 for each new section/chapter

2003-02-24 Thread Narinder Garg
hi, your xsl is wrong.. if iDocSys is the root element try using xsl:for-each select=iDocSys/PortfolioList/Portfolio and in the fo:flow element use a simple xsl:apply-template / You can refer the following link on xsl transformation... http://www.ibiblio.org/xml/books/bible2/chapters/ch17.html

How to retrieve dimensions dynamically

2003-02-24 Thread V.M.Milli
Hi, I have to display several tables on a page. I would like to be able to retrieve page (or table cell) widths, in order to achieve dynamically assign column sizes. All suggestions are welcome. Cheers M. - To unsubscribe,

Re: How to retrieve dimensions dynamically

2003-02-24 Thread Myriam Delperier
Hi, you could have a look at this it would probably give you some ideas http://www.oucs.ox.ac.uk/stylesheets/tei-table.xsl - Original Message - From: V.M.Milli [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 24, 2003 2:54 PM Subject: How to retrieve dimensions dynamically

Re: How to retrieve dimensions dynamically

2003-02-24 Thread Myriam Delperier
sorry it's not te good one http://www.tei-c.org/Stylesheets/teixsl.html#body.1_div.6 here you have many xsl, it's for tei documents but there's somewhere what you need - Original Message - From: V.M.Milli [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 24, 2003 2:54 PM

Re: How to retrieve dimensions dynamically

2003-02-24 Thread Myriam Delperier
it's in the zip at the end of the document : makecolspec.xsl - Original Message - From: V.M.Milli [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, February 24, 2003 2:54 PM Subject: How to retrieve dimensions dynamically Hi, I have to display several tables on a page. I would

Re: Caching

2003-02-24 Thread Jeremias Maerki
Have another look at it. It's a static method! On 24.02.2003 15:32:34 Matthew Lancashire wrote: I don't explicitly create an imagefactory. what would be the syntax for doing that? -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED] Sent: 20 Feb 2003 20:24 To: [EMAIL

RE: Caching

2003-02-24 Thread Matthew Lancashire
Sorry for being dumb but I am a complete Java novice and am relying on my skills as a plagiarist to get by. Can you explain it to me? -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED] Sent: 24 Feb 2003 14:44 To: [EMAIL PROTECTED] Subject: Re: Caching Have another look

RE: Caching

2003-02-24 Thread Matthew Lancashire
Thanks for the tip. If I don't get it to clear the cache is there a standard java cache manipulation class? -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED] Sent: 24 Feb 2003 15:18 To: [EMAIL PROTECTED] Subject: Re: Caching IMO the following should work, though I

Re: Caching

2003-02-24 Thread Jeremias Maerki
If resetCache() doesn't work, there's no way other than to restart the JVM. There's no such thing as a standard java cache manipulation class. On 24.02.2003 16:44:41 Matthew Lancashire wrote: Thanks for the tip. If I don't get it to clear the cache is there a standard java cache manipulation

RE: Caching

2003-02-24 Thread Matthew Lancashire
It didn't seem to work. Everything ran fine but still same background images. Thanks for the help tho. -Original Message- From: Jeremias Maerki [mailto:[EMAIL PROTECTED] Sent: 24 Feb 2003 15:47 To: [EMAIL PROTECTED] Subject: Re: Caching If resetCache() doesn't work, there's no way

Re: Can't get it work (was: Insert SVG image)

2003-02-24 Thread J.Pietschmann
Timo Haberkern wrote: That doesn't work too. Now i get the batik image for broken-image (see attached pdf page 2). I use now: fo:instream-foreign-object svg viewBox=0 0 20 20 xmlns=http://www.w3.org/2000/svg; width=113mm height=23mm image preserveAspectRatio=xMidYMid

Re: [FOP] tab cell

2003-02-24 Thread J.Pietschmann
Martins Stephane wrote: Is there any way to make table column width match with text size ? It depend's what you mean with match column width with text size and how you produce the FO. Could you elaborate? J.Pietschmann - To

Force maximum table-cell height?

2003-02-24 Thread Berg, Philip C
Hi, This problem seems to have already been answered, but I wanted to make sure. I'm using fop-0.20.4. I found this in the archive: http://marc.theaimsgroup.com/?l=fop-userm=102555220521732w=2 It's slightly different then what I need: I have xml data that populates a table-cell but I always