RE: Capitalize not working?

2007-10-25 Thread Pascal Sancho
Hi, Capitalize value indicates that the first character of each word is put in uppercase. No tranformation is invoked for other characters. With a full uppercase word, this value has no effect. Pascal -Message d'origine- De : Kamal Bhatt [mailto:[EMAIL PROTECTED] Envoyé : jeudi 25

A bug in the method choosing the master-reference page?

2007-10-25 Thread ahaddad
Hello all, The big test did not work! For those who are interested in this topic, I used the following page-sequence-master: fo:page-sequence-master master-name=releve_quit fo:repeatable-page-master-alternatives fo:conditional-page-master-reference

答复: Fop Servlet Filter

2007-10-25 Thread 张晓通
I'm interesting in your filter. Can you send me some code about your project? Thank you ! -邮件原件- 发件人: François-Xavier Bonnet [mailto:[EMAIL PROTECTED] 发送时间: 2007年10月25日 17:54 收件人: fop-users@xmlgraphics.apache.org 主题: Fop Servlet Filter Hi

formalpara problem in HTML

2007-10-25 Thread nancy_b
Hi guys, I have a weird problem with the content of formalpara items when I convert from Docbook XML to HTML with FOP 0.93. It seems that FOP cannot match formalpara to any corresponding element in HTML, so that its text appears with no formatting at all (e.x., no bold formalpara titles). When I

RE: A bug in the method choosing the master-reference page?

2007-10-25 Thread Pascal Sancho
-Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : jeudi 25 octobre 2007 10:29 Hello all, The big test did not work! For those who are interested in this topic, I used the following page-sequence-master: fo:page-sequence-master

RE: A bug in the method choosing the master-reference page?

2007-10-25 Thread ahaddad
Thanks Pascal, But the problem happens because sometimes the first page can have odd page-number. In your example, if I add another page before Model1 page (the first), the Model2 and Model3 pages will alternate in the inverse order! Here is the test I done: fo:root

Re: Help for TIFF insertion in PDF/A-1b file (FOP-0.94)

2007-10-25 Thread Arsène Kafando
Hi, thanks for your answer. To resume, actualy FOP-0.94 can't generate a valide pdf/a-1b with TIFF Group 4 image. It can do it with JPEG, TIFF (CMYK), GIF for example. For your next refactoring of the image package can you integrate the TIFF Group 4 ? The JAI API can't solved the current

hyphernation problem

2007-10-25 Thread fabio76
Hi I have a problem in breaking, multi-line, codes containing only characters and _ (no space, see example). For example if I have a table that contains a code like ___A and this value is not in bigger that cell, fop overflow. I use the fop with hypernation pattern (see

Re: A bug in the method choosing the master-reference page?

2007-10-25 Thread Chris Bowditch
[EMAIL PROTECTED] wrote: Thanks Pascal, But the problem happens because sometimes the first page can have odd page-number. In your example, if I add another page before Model1 page (the first), the Model2 and Model3 pages will alternate in the inverse order! Here is the test I done: I

Re: hyphernation problem

2007-10-25 Thread Manuel Mall
On Thursday 25 October 2007 22:25, fabio76 wrote: Hi I have a problem in breaking, multi-line, codes containing only characters and _ (no space, see example). For example if I have a table that contains a code like ___A and this value is not in bigger that cell, fop

Re: formalpara problem in HTML

2007-10-25 Thread Chris Bowditch
nancy_b wrote: Hi guys, I have a weird problem with the content of formalpara items when I convert from Docbook XML to HTML with FOP 0.93. It seems that FOP cannot match formalpara to any corresponding element in HTML, so that its text appears with no formatting at all (e.x., no bold

Re: hyphernation problem

2007-10-25 Thread fabio76
Thanks a lot for your support. It works correctly Fabio Manuel Mall wrote: On Thursday 25 October 2007 22:25, fabio76 wrote: Hi I have a problem in breaking, multi-line, codes containing only characters and _ (no space, see example). For example if I have a table that contains a code

Re: formalpara problem in HTML

2007-10-25 Thread nancy_b
Well, formalpara items appear correctly in PDF which FOP generates out of XSLTPROC output, so I assume that FOP does not know any HTML element which corresponds to formalpara in XML. cbowditch wrote: nancy_b wrote: Hi guys, I have a weird problem with the content of formalpara items

Change XSLT transformation on runtime (Object-XML+XSL-pdf)

2007-10-25 Thread Thanos Panousis
Hello list, I have an object CustomerList that holds a set of Customer objects; I turn this into XML and with an appropriate XSLT I can make a nice pdf report of every customer in it. So given a CustomerList instance which I can turn to XML using Xstream and a global-report.xsl file, I can make

Re: A bug in the method choosing the master-reference page?

2007-10-25 Thread ahaddad
Thanks for all, So, it is a XSL-FO limitation. As suggested by Pascal, I was forced to use force-page=end-on-odd on the page-sequences preceding my recto-verso sequence (initial-page-number=odd seems also not to work - no chance!). Two new problems appear: the blank-pages and page-numbers! The

external-graphic

2007-10-25 Thread macsmaker
Bear with me, I'm a newbie to FOP. I assure you I have search the web, and all faqs I can find. I'm using fop 0.20.5 and I'm trying to display a graphic in my PDF. I have tried this (and appropriate variations): fo:external-graphic src=url('http://myserver/myapp/images/checked.jpg')/ I know

Re: Capitalize not working?

2007-10-25 Thread Kamal Bhatt
Pascal Sancho wrote: Hi, Capitalize value indicates that the first character of each word is put in uppercase. No tranformation is invoked for other characters. With a full uppercase word, this value has no effect. I see your point. I just wonder if that was the intent when it was

Using fo:block-container and tables together to format a PDF

2007-10-25 Thread caporale
I'm trying to convert an HTML newsletter to PDF format. The HTML newsletter's format is something like this: table border=0 trtd colspan=2lt;img src=headerimage.png/gt;/td/tr trtd bgcolor=#696969Side column text here/tdtdNewsletter body text here/td/tr /table I started by trying to use

Re: external-graphic

2007-10-25 Thread ramkumar.m.v
Try setting the fop configuration.Your base dir isn't set.So the fop doesn't know where to get the images from. (programmatic way): org.apache.fop.configuration.Configuration.put(baseDir,getServletContext().getRealPath(/images/)); The above code should be based in your java code (typically a