Need help in making FOP work w/ ASP

2002-03-11 Thread MARTIN Franck
Hello everybody, I'm trying to parse an XML document with its XSL stylesheet using FOP in an ASP. I successfully generated a pdf file with jBuilder but i can't figure out why it won't work with my asp page. I just don't know what's the right way to do things. I have unpacked all the jar files in

mailto:

2002-03-12 Thread MARTIN Franck
Does anyone know how to create a mailto:; link in a pdf document using fop. In other words what's the xsl-fo tag to do so and is it implemented in FOP? thanx Franck

Re : mailto (does not work)

2002-03-12 Thread MARTIN Franck
Thank you for your suggestions but using the fo:basic-link tag with the external-destination attribute does not work for me. When I click on the link in the generated PDF file it opens a web browser with the following URL : http://mailto:{mailto:[EMAIL PROTECTED] !!! (or

Re mail-to

2002-03-12 Thread MARTIN Franck
The simple example given earlier works but the following one doesn't. xsl:template match=identity xsl:element name=fo:basic-link xsl:attribute name=external-destination mailto:xsl:value-of select=adress/email/ /xsl:attribute xsl:value-of select=adress/email/

Re: Re mail-to

2002-03-12 Thread MARTIN Franck
: MARTIN Franck [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 12, 2002 11:29 AM To: [EMAIL PROTECTED] Subject: Re mail-to The simple example given earlier works but the following one doesn't. xsl:template match=identity xsl:element name=fo:basic-link xsl:attribute name=external

border around text

2002-03-13 Thread MARTIN Franck
Fop does not seem to implement borders for inline elements. Is there a way to draw a border around a text which width is unknown? ( not using absolute padding) A border applied to a block element draws a border with huge left right paddings. Thank you Franck MARTIN

How to draw a word

2002-03-20 Thread MARTIN Franck
I can't figure how to draw a border around a word that is embedded in a sentence. Does anyone have an idea? That would help me very much indeed! Thank you Franck MARTIN

Drawing a border around a simple word

2002-04-04 Thread MARTIN Franck
Hi all Does anyone know how to draw a border around a word placed in a sentence? I would appreciate any suggestion very much ;) Franck

Re: Drawing a border around a simple word

2002-04-04 Thread MARTIN Franck
Message - From: MARTIN Franck [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 04, 2002 11:10 AM Subject: Drawing a border around a simple word Hi all Does anyone know how to draw a border around a word placed in a sentence? I would appreciate any suggestion very much

Problem with € and Ÿ caracters

2002-04-05 Thread MARTIN Franck
Does anyone know a way to render Ÿ using FOP? I think the fop developpers have forgotten about this caracter because ÿ, Ü, Ö, Ï are implemented and are correctly rendered... I'm having a problem to get the € symbol from an http request and print it in a text file. Oddly enough it prints out ?

Re: intercepting the euro symbol from http request

2002-04-08 Thread MARTIN Franck
So in other words if it's encoded differently i need a table that shows the mapping between unicode and UTF-8. Does anyone know if such a table exist? Christian Mallwitz a écrit : But i can't figure out how to detect its presence within a parameter from the http request. I have tried to

keep-together

2002-04-15 Thread MARTIN Franck
Hi Does anyone know of a way to prevent blocks or tables from being divided when a page break occurs? Is the property keep-together implemented in fop? Thanx Franck MARTIN

Future release and full compliancy

2002-04-15 Thread MARTIN Franck
Does anyone have an idea of when is to occur the next fop release and how long is it going to take for fop to be full compliant w/ the W3 recommendation? Franck MARTIN

to J.Pietschmann (about keep-together)

2002-04-16 Thread MARTIN Franck
If block elements should be kept together, you can put them into a one-column blind table. Thank you for your advice but what do you mean by blind table? Franck MARTIN

AWT renderer

2002-05-14 Thread MARTIN Franck
Hi all, I can't find any example that shows how to use the AWT renderer. I assume it is different from the other renderers since the target is not a file. If someone could provide me with a sample code, i would appreciate that very much. Thank you Franck MARTIN

Awt for print preview

2002-05-14 Thread MARTIN Franck
I'm trying to use the awt rendering in order to provide the user with a print preview but i can't figure out how fop works with awt. I have stumble upon a sample code but i don't understand what is translator: driver.setRenderer(new org.apache.fop.render.awt.AWTRenderer(translator));

Re: AWT renderer

2002-05-15 Thread MARTIN Franck
configuration file is used [default] [DEBUG]: debug mode on [DEBUG]: dump configuration [DEBUG]: quiet mode on [DEBUG]: base directory: file:/N:/Echange/essai/ I can't figure out what i did wrong. Any idea?? Thanks alot Franck J.Pietschmann a écrit : MARTIN Franck wrote: I can't find any example

Open and print pdf files

2002-05-16 Thread MARTIN Franck
Hi all, Fop is cool but once i have successfully created my pdf file it would be nice to open and print it. Does anyone know of a platform independent way to open a pdf file. So far the only way i have found is platform dependent ( for NT : Runtime.getRuntime().exec(cmd /c start

Re: Rookie Question

2002-05-23 Thread MARTIN Franck
I don't think it is a good idea to insert static content in the xml file. The xml file should only contain dynamic data (in your case client information). The static stuff should be placed in the xsl file. The xslt process will output a fo file which will contain the merging of static and dynamic

Re: Rookie Question

2002-05-23 Thread MARTIN Franck
That's right, but sometimes in order to get even more flexible (and probably more complicated) system that static content could be moved further into another xml file, dynamically loaded by xslt during transformation. This way the only stuff in xsl would be a logic and data + presentation would

xslt and fo process

2002-11-25 Thread MARTIN Franck
Hello, Is there any way to transform the valuereturned by the instruction fo:page-number/ before printing it? Let's say i would like to double it and then print the result, could i use an xsl:variable or not? Fop is able to process a fo file directly but it is also able to process a xsl

Conditional page master reference (page position)

2002-11-25 Thread MARTIN Franck
Hello, I am using a conditional page master reference to tentatively provide a unique footer on the last page. No matter in what order i put references to page masters it never seems to work. Has anyone ever had that kind of problem before? Is fop limited on conditional page masters? Here is my

Re: xslt and fo process

2002-11-25 Thread MARTIN Franck
Thank you for your help - Original Message - From: Chris Bowditch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 25, 2002 11:36 AM Subject: Re: xslt and fo process Hi Franck, see comments below Hello, Is there any way to transform the value returned by the

Re: Conditional page master reference (page position)

2002-11-25 Thread MARTIN Franck
position) MARTIN Franck wrote: I am using a conditional page master reference to tentatively provide a unique footer on the last page. No matter in what order i put references to page masters it never seems to work. Conditional page master for the last page is not implemented yet. It's bug

Latest and future fop release

2002-11-25 Thread MARTIN Franck
Hello, Can we consider that fop 0.20.4 is stable and should be the one to use ? When will be released the next version? In a couple of months, in about 6 months, one year or more? Just so to have an idea... Franck - To

Re: Latest and future fop release

2002-11-25 Thread MARTIN Franck
That is great news!! - Original Message - From: Oleg Tkachenko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 25, 2002 12:03 PM Subject: Re: Latest and future fop release MARTIN Franck wrote: Can we consider that fop 0.20.4 is stable and should be the one to use

Re: Latest and future fop release

2002-11-25 Thread MARTIN Franck
Btw what does rc stand for - Original Message - From: Oleg Tkachenko [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 25, 2002 12:03 PM Subject: Re: Latest and future fop release MARTIN Franck wrote: Can we consider that fop 0.20.4 is stable and should be the one to use

xsl variables

2002-12-03 Thread MARTIN Franck
Is there a way to change the value of a global xsl variable? is it possible to declare a vraiable at some location in the stylesheet and affect it a value at some other location? Thanks! - To unsubscribe, e-mail: [EMAIL

arial font

2003-01-21 Thread MARTIN Franck
What font can be used with fop? Does the arial font work fine with FOP? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

fonts

2003-01-21 Thread MARTIN Franck
I'd like to get some advice about fonts used with fops. Is the fop Helvetica supported font very similar to Arial font? Is it easy to use additional font with fop (as described at fop/fonts.html) ? Thanks - To unsubscribe,

Re: arial font

2003-01-21 Thread MARTIN Franck
is using Editor which supports unicode(XMLSPY does) as your XML editor, in this can you don't need to replace the french characters with unicode representation. XMLSPY will take care of this. Regards Balaji --- MARTIN Franck [EMAIL PROTECTED] wrote: I want to use french characters. what

Re: arial font

2003-01-21 Thread MARTIN Franck
language. Ramon Maria Gallart. -Mensaje original- De: MARTIN Franck [mailto:[EMAIL PROTECTED] Enviado el: dimarts, 21 / gener / 2003 17:28 Para: [EMAIL PROTECTED] Asunto: Re: arial font I want to use french characters with the arial font... is helevetica close enough to arial or should i

Re: keep-with-next

2003-01-23 Thread MARTIN Franck
i think keep with next work with table rows only - Original Message - From: Karen Mergner [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, January 23, 2003 10:23 AM Subject: keep-with-next Hi all, I want to keep a headline together with the following text on a page, but

Re: page-number

2003-02-20 Thread MARTIN Franck
It's not surprising. You should put initial-page-number=1 on the third page-sequence! - Original Message - From: Myriam Delperier [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 20, 2003 3:18 PM Subject: page-number I've got an fo document which contains 3

Re: table-row +border

2003-02-20 Thread MARTIN Franck
i think borders are implemented on cells only - Original Message - From: Peter Menzel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, February 20, 2003 3:47 PM Subject: table-row +border Hi I try to use fo:table-row border-style=solid border-width=1pt border-color=black to

FOP0.20.3 VS Fop0.20.5 in counting number of pages

2003-02-26 Thread MARTIN Franck
Hi all, I'm using FOP 0.20.3 and i'm trying to count the number of pages of a pdf generated document. Therefore i'm using the getResults().getPageCount() method of the Driver object to do so. I'm using FOP with differents XSL stylesheets documents and i noticed that the result is accurate for all

Re: page break or paper size ?

2003-03-05 Thread MARTIN Franck
I know my contribution won't help you much but how did you convert a word document to an xsl:fo?? - Original Message - From: Asim Nazir [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, March 05, 2003 6:12 AM Subject: page break or paper size ? hello , i have converted word to

Re: repeatable-page-master-alternatives - only two alternatives of first, last, rest ?

2003-03-07 Thread MARTIN Franck
Hi, From my knowledge FOP is unable to detect what page is the last of a page sequence. That is too bad because it makes handling recto verso a very hard task when it comes to number the pages. Franck - Original Message - From: Unger, Joachim [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: fo:table

2003-03-17 Thread MARTIN Franck
not really - Original Message - From: Balaji Loganathan [EMAIL PROTECTED] To: fop [EMAIL PROTECTED] Sent: Monday, March 17, 2003 3:32 PM Subject: fo:table Hi, which option is better and fast for building a table? 1.Construct one table with 8 rows, 2 columns.(most of the rows have

Bug??

2003-03-20 Thread MARTIN Franck
Hi all, I have tried the latest version of fop and i get an error message that i did not have with version 0.20.3 : org.apache.fop.apps.FOPException: Flow 'global-region-body' does not map tothe region-bodyin page-master 'even-page' is this a bug in FOP or in my XSL stylesheet?? I have a

Re: Bug??

2003-03-21 Thread MARTIN Franck
Subject: Re: Bug?? MARTIN Franck wrote: I have tried the latest version of fop and i get an error message that i did not have with version 0.20.3 : org.apache.fop.apps.FOPException: Flow 'global-region-body' does not map to the region-body in page-master 'even-page' is this a bug

Re: Bug??

2003-03-25 Thread MARTIN Franck
Thanks alot, as usual your suggestion worked fine ;-) - Original Message - From: J.Pietschmann [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, March 22, 2003 12:36 AM Subject: Re: Bug?? MARTIN Franck wrote: Ok, so how to prevent the flow content to go on even pages? I want

Re: Document Security with FOP

2003-06-03 Thread MARTIN Franck
you can't - Original Message - From: Francisco García To: [EMAIL PROTECTED] Sent: Tuesday, June 03, 2003 11:29 AM Subject: Document Security with FOP Hello. I would like to create a PDF with security options. I needthat the Changing the Document