page intentionnally left blank

2002-03-28 Thread Rodolphe VAGNER
I would like to put the mention "page intentionnally left Blank" in every blank page forced bythe force-page-count="end-on-even" ; I tried to use a static-content but without any success ; Does someone know if it's possible with FOP, and how to do that ?

RE: page intentionnally left blank

2002-03-28 Thread Arved Sandstrom
I am 95% certain that this did work once, and maybe it still does. I assume that you set up a simple-page-master for the express purpose of handling blank pages, and then used a page-sequence-master with a conditional-page-master-reference using blank-or-not-blank=true, that points at that

Probem with some attributes

2002-03-28 Thread Jan Gahura
Hi! I have a problem with some attributes when I render FO files to PDF format. Maybe some of them hasn't been implemented yet, or maybe there is something incorrect in may FO file. btw: The FO file si an export of a DocBook document via slightly modified stylesheet by N. Walsh. Here is some of

Very bizarre

2002-03-28 Thread Rodolphe VAGNER
Hy, I'm very surprised because the tiff illustrations were support on fop 0.20.2 but seam not to be on the fop 0.20.3 ! Is there anything that can enable fop 0.20.3 to support tiff ?

FOP over SOAP: File in use

2002-03-28 Thread Tobias Mueller
Hi! I successfully got Soap and Fop up and running. I developped a WebService which generates PDF files out of several templates. PDF generation works fine, the pdf file is generated, but I can't access it via explorer, because I get a file is in use error. Tomcat still seems to have the file

RE: FOP over SOAP: File in use

2002-03-28 Thread Philippe Pithon
I had the same problem! Temporary Solution: Create a copy of the file, and read the copy ! I think that it is FOP who does not close correctly the file -Message d'origine- De : Tobias Mueller [mailto:[EMAIL PROTECTED] Envoyé : lundi 25 mars 2002 20:45 À : [EMAIL PROTECTED] Objet : FOP

Re: ohm symbol not supproted ?

2002-03-28 Thread J.Pietschmann
Rodolphe VAGNER wrote: Do you mean that it's a problem from Acrobat which can't reconize the glyphs, or a FOP problem to convert letters to glyphs that acrobat will reconize ? Well, neither. Or both depending on your mindset. Fonts map characters to glyphs. Usually, a certain font (implementation)

Headers

2002-03-28 Thread Ravi . Narine
I am trying to do the following: Run Date:2002/03/29 Some Report Name Time:hh:mm:ss ^ ^ ^ left justified Centered on

Re: FOP over SOAP: File in use

2002-03-28 Thread J.Pietschmann
Tobias Mueller wrote: I successfully got Soap and Fop up and running. I developped a WebService which generates PDF files out of several templates. PDF generation works fine, the pdf file is generated, but I can't access it via explorer, because I get a file is in use error. Tomcat still seems to

Re: ohm symbol not supproted ?

2002-03-28 Thread J.Pietschmann
I just discovered that FOP 0.20.3 will map greek characters if the Symbol font is selected, and no longer shows random other glyphs if some other font is selected. J.Pietschmann

Re: Probem with some attributes

2002-03-28 Thread J.Pietschmann
Jan Gahura wrote: Here is some of them I've already discovered: last-line-end-indent Not implemented. page-number-citation Doesn't work for references to fo:page-sequence elements, which are used for your chapters. Furthermore: [WARN]: property - background-attachment is not implemented yet.

fop-0.20.3: table cell data on same page

2002-03-28 Thread Mathy V Arumugam
Hi all, How can I prevent the table cells from splitting on page break? I thought the following should prevent the table cells from splitting on page boundaries...but, does not work for me fo:table-cell keep-together.within-page=always fo:block/fo:block /fo:table-cell I

Unable to extract embedded font message

2002-03-28 Thread Levy, Alane
When I open a PDF file with an embedded font generated out of FOP, Acrobat Reader 5 displays the message Unable to extract the embedded font 'font'. Some characters may not display or print correctly. We have tried this on several different systems, and the same message always appears. When I

XSL Transformation

2002-03-28 Thread Norr, Peter
How do I transform my xml into fo-xml without using the org.apache.fop.apps.XSLTInputHandler class? -- This message is intended only for the personal and confidential use of the designated recipient(s) named above. If

Re: fop-0.20.3: table cell data on same page

2002-03-28 Thread Mathy V Arumugam
Well, the table consists of about 150 rows, and some table-cells are as long as the ex. below. Trimmed down FO file: fo:table-row display-align=center height=15pt keep-with-next=always fo:table-cell column-number=1 border=0.5pt solid black padding=0.6pt fo:block font-family=sans-serif

Re: fop-0.20.3: table cell data on same page

2002-03-28 Thread Mathy V Arumugam
Hm.. still does not work.. What is really wrong with my code then Matthew L. Avizinis wrote: I've found that you have to have fo:table-row keep-with-next=always fo:table-cell fo:block.../fo:block/fo:table-cell /fo:table-row fo:table-row keep-with-previous=always

RE: fop-0.20.3: table cell data on same page

2002-03-28 Thread Matthew L. Avizinis
Sorry, what I actually meant was fo:table-row keep-with-previous=always keep-with-next=always etc This is precisely what I have used and it works. -Original Message- From: Mathy V Arumugam [mailto:[EMAIL PROTECTED] Sent: Thursday, March 28, 2002 5:06 PM To: [EMAIL PROTECTED]

Re: XSL Transformation

2002-03-28 Thread J.Pietschmann
Norr, Peter wrote: How do I transform my xml into fo-xml without using the org.apache.fop.apps.XSLTInputHandler class? Try something like this: // set up your transformation Transformer transformer =TransformerFactory.newInstance().newTransformer(xsltSource); // prepare FOP Driver