RE: Overlapping Data?-Finish-Thanks

2005-06-17 Thread David Kim
Hi Andreas, I tested belows what you wrote. .TEST CASE1:usage of (x)path .TEST CASE2:position of region-body .TEST CASE3:position of fo:block-container .TEST CASE4:limitation of fo:block-container TEST CASE1,2 will be good part of my own xsl foramt. TEST CASE3,4 helped me to decide direction of

Re: drop-shadows

2005-06-17 Thread Jeremias Maerki
XSL-FO provides the property text-shadow but this is not supported by FOP. drop-shadow effects on boxes are limited to what border-*-style provides, but again FOP 0.20.5 doesn't do a good job painting borders. The next FOP release will be better in this regard. I think you need to do this with SVG.

Re: baseDir

2005-06-17 Thread delbd
Well there is already a servlet for the cms using webdav, but for some ressources used in pdf generation i hoped there could be some easy wait to prevent public availability thru servlet :) Le Vendredi 17 Juin 2005 11:59, Chris Nappin a écrit : > Your other option, previously mentioned on this li

RE: baseDir

2005-06-17 Thread Radhika Sambamurti
To give it a relative name either a url or a path I used: src="url(images/abc.jpg)"/> Hope that helps. -rs Radhika Sambamurti Pipeline Trading Systems [EMAIL PROTECTED] 212-370-8343 -Original Message- From: delbd [mailto:[EMAIL PROTECTED] Sent: Friday, June 17, 2005 2:26 AM To: fop-u

Re: Fonts in FOP

2005-06-17 Thread Renan Collin
Ah yes, Jeremias Maerki is right ... you have to add Sandeep P a écrit: HI,     I am trying to add (embed) a new font to my FOP example, Which is to ceate a PDF File. I am using True Type font.I creted a matric file using the java api provided and adde

drop-shadows

2005-06-17 Thread Chris Faulkner
Hi all Is it possible to achieve drop-shadow type effects around text / tables / boxes / lines in FOP ? I can see that I could do it with an embedded SVG graphic but can I do it without SVG ? Thanks Chris - To unsubscribe, e-ma

Re: Fonts in FOP

2005-06-17 Thread Renan Collin
Hello, I am not sure of your font path, the best thing is to launch your project in a specific directory and to reference your ttf and your xml font file relatively to your project classpath. Do not forget and                                     Renan Sandeep P a écrit:

RE: baseDir

2005-06-17 Thread Chris Nappin
Your other option, previously mentioned on this list, is to create a servlet that takes the CMS primary key(s) as parameter(s). In your FO stylesheet you reference the URL to the servlet, with appropriate keys as query parameters. Then your servlet accesses your CMS, returning the binary respons

Re: Fonts in FOP

2005-06-17 Thread Jeremias Maerki
See my comments inline. On 17.06.2005 11:31:39 Sandeep P wrote: > HI, > > I am trying to add (embed) a new font to my FOP example, Which is > to ceate a PDF File. I am using True Type font.I creted a matric file using > the java api provided and added its entry to the userconfig.xml f

Re: Handling special URIs in fo:external-graphic (was: baseDir)

2005-06-17 Thread Jeremias Maerki
I see. You can still try to modify the FOP sources of 0.20.5 for your purposes. The class you'd have to look at is org.apache.fop.images.FopImageFactory. After all, the next release which is usable in production is still some time away. On 17.06.2005 10:40:46 delbd wrote: > Thanks, but as i said,

Re: baseDir

2005-06-17 Thread delbd
Thanks, but as i said, adding a new protocol to URL in not faisable. Not because URL does not support it, but because of classloader restrictions (The URL classloader is a parent of the one containing my content management, so it does not have access to content management classes, not to mention

Fonts in FOP

2005-06-17 Thread Sandeep P
HI,     I am trying to add (embed) a new font to my FOP example, Which is to ceate a PDF File. I am using True Type font.I creted a matric file using the java api provided and added its entry to the userconfig.xml file. Still it is saying the error as   [ERROR] unknown font verdana,

Re: Rép. : Arabic Character

2005-06-17 Thread Renan Collin
I did it too but the shaping of the characters was not done and the characters were inverted into the words. It seems that FOP does not implement the writing-mode property yet. Renan Yassir HOUMAME a écrit: Yes we did it !! On Thu, 16 Jun 2005 02:46:58 -0600, Willy Reinhardt wrote

Re: baseDir

2005-06-17 Thread Jeremias Maerki
Why not? Have a look at my RFC2397 [1] implementation which is exactly what you were thinking about, a new URL protocol handler. I've written stuff like this before, for example an URL handler that accessed a virtual file system implemented in Java. I can recommend an excellent document [2]. The n

baseDir

2005-06-17 Thread delbd
Hello, i use fop to generate documents. However, i come to some problems when dealing with The graphics we need access to are not public available, they can't get accessed neither using http:// nor using file://, actually they are stored in a content management system, in a database. Is there