Relative URI in SVG with gradient

2004-07-05 Thread Pascal Sancho
63.4" height="58" viewBox="0 0 463.4 58" overflow="visible" enable-background="new 0 0 463.4 58" xml:space="preserve">

RE: RE : Relative URI in SVG with gradient

2004-07-06 Thread Pascal Sancho
Thx. Pascal -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : mardi 6 juillet 2004 10:26 À : [EMAIL PROTECTED] Objet : RE : Relative URI in SVG with gradient SVG gradient rendering doesn't work with FOP 0.20.5. You might solve your URI problem but rendering

RE: Trying to Troubleshoot an Issue

2004-07-09 Thread Pascal Sancho
Hello, I think that % values refer to container width/height of the image container. If you want to scale your image, you should multiply/divide the actual image size with a relevant factor. For example, you want that your image to be laid out in 300 dpi, you should apply an xslt calculation to

table spanned over a 2 columns page

2004-07-09 Thread Pascal Sancho
rdialement,Pascal SANCHO  

RE: tables not indented in lists

2004-08-10 Thread Pascal Sancho
Hi, I resolve this emdeding my table in a single cell table, and I compute the table-cell/@padding-left regarding ancestors lists. You can probably find an easier method using from-parent() method. Here follows my code:

RE: Tables and Columns Question

2004-08-11 Thread Pascal Sancho
In your 3 columns document, You can use a block with a span="all" attribute between 3rd & 4th tables. This should resolve your demand. Bye, Pascal -Message d'origine- De : Michael Sachau [mailto:[EMAIL PROTECTED] Envoyé : mercredi 11 août 2004 13:56 À : [EMAIL PROTECTED] Objet : Tables

RE: Table-of-Contents Headlines

2004-08-23 Thread Pascal Sancho
Hi, You can find an example it the W3C XSL recommandation, at http://www.w3.org/TR/xsl/slice6.html#section-N13277-Inline-level-Formatting-Objects. There is an example of table of content, with XML, XSLT & XSLFO snips. Pascal -Message d'origine- De : Johannes Franz [mailto:[EMAIL PROTEC

RE: Table-of-Contents Headlines

2004-08-30 Thread Pascal Sancho
----- From: "Pascal Sancho" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 23, 2004 11:27 AM Subject: RE: Table-of-Contents Headlines Hi, You can find an example it the W3C XSL recommandation, at http://www.w3.org/TR/xsl/slice6.html#section-N13277-Inline-lev

RE: Pyjama stripes - for each 5 rows

2004-09-07 Thread Pascal Sancho
Hi, You can use a pattern like this: (position() div 5) mod 2 When the result is 0, apply background color #1, When the result is 1, apply background color #2. If you need to know an ancestor element position, you may replace position() with count(ancestor::ref_element/preceding-sibling::ref_ele

Error while building FOP dev1

2004-09-07 Thread Pascal Sancho
Hi there, When I try to build FOP dev1, I get the error page below. Can everyone help me please, I am not so familiar with CVS & JAVA. Pascal Apache FOP: Build System -- Buildfile: build.xml init-avail: [echo] Apache Ant version 1.6.2 compiled on July 16 2004 [

RE: Error while building FOP dev1

2004-09-07 Thread Pascal Sancho
. > > On 07.09.2004 11:26:08 Chris Bowditch wrote: > > Pascal Sancho wrote: > > > > > > > > > > > > codegen: > > > [echo] Resetting codegen directory > > > [echo] Generating the java files from xml resources > > >

RE: Error while building FOP dev1

2004-09-07 Thread Pascal Sancho
I've just tried the latest SDK That works fine with J2 SDK 1.4.2_05 Thx to Jeremias & Chris Pascal > -Message d'origine- > De : Chris Bowditch [mailto:[EMAIL PROTECTED] > Envoyé : mardi 7 septembre 2004 15:25 > À : [EMAIL PROTECTED] > Objet : Re: Error while building FOP dev1 > > Jeremi

RE: How to write equations for FOP ?

2004-09-13 Thread Pascal Sancho
Hi, I think that a good way is to generate svg code embedded in a fo:instream-foreign-object. You can visit http://xml.apache.org/fop/graphics.html#svg-pdf-graphics. Pascal > -Message d'origine- > De : Vaclav PEROUTKA [mailto:[EMAIL PROTECTED] > Envoyé : lundi 13 septembre 2004 14:24 > À

RE: How to write equations for FOP ?

2004-09-13 Thread Pascal Sancho
age d'origine- > De : Pascal Sancho > Envoyé : lundi 13 septembre 2004 14:47 > À : [EMAIL PROTECTED] > Objet : RE: How to write equations for FOP ? > > Hi, > I think that a good way is to generate svg code embedded in a > fo:instream-foreign-object. > You can

RE: XSLT tag needed

2004-09-16 Thread Pascal Sancho
Hi, Probably your ns1 namespace is not defined in your XSLT. You sould add appropriate declaration in the stylesheet tag of your XSLT: http://www.w3.org/1999/XSL/Transform " xmlns:ns1="DbGMLPriceBusHdr"> Pascal > De : [EMAIL PROTECTED] [mailto:[EMAIL PR

Multi-columns Layout problems

2004-09-21 Thread Pascal Sancho
Hi there, While trying multi-columns with fop, I've found some strange behaviours: 1. When I specifie block/span="all", a block/@break-before is not taken into account for the same block. 2. If there is not enough place for a block image in 1 column, sometimes FOP crashes, invoking an infi

Error with multi-column page

2004-09-23 Thread Pascal Sancho
Hi there, When I try to generate a PDF with the following FO, I get an error: [ERROR] file:/E:/projets/peugeot/blueTeam/fop3/data.fo:12:35 No meaningful layout in block after many attempts. Infinite loop is assumed. Processing halted. I use FOP 0.20.5. If I suppress either a fo:external-grap

RE: Error with multi-column page

2004-09-24 Thread Pascal Sancho
Hi, In my previous mail, the snipped FO was incomplete and did work fine. Here follows the right FO, witch generates the described error.. Pascal > -Message d'origine- > De : Pascal Sancho > Envoyé : jeudi 23 septembre 2004 10:36 > À : [EMAIL PROTECTED] > Objet : Err

RE: [work] Re: Avery labels

2004-09-27 Thread Pascal Sancho
Hi, A very long time ago, I've tried the following code, witch could give you an answer (this is not very academic): Bye Pascal > -Message d'origine- > De : Frank Daly [mailto:[EMAIL PROTECTED] > Envoyé : vendredi 24 septembre 2004 19:07 > À :

RE: [work] Re: Avery labels

2004-09-27 Thread Pascal Sancho
Hi Jeremias Maerki wrote: > This is not only not very academic, it's plain ugly, > error-prone, violates XML concepts and works only if you > don't connect XSLT and FOP using SAX. You should NEVER do > something like that. I agree. > Get a good XSLT book. The best for me is "XSLT - Working wit

RE: margin-bottom, region-before ingnored by region-body with column

2004-09-29 Thread Pascal Sancho
Hi, region-before is nested in the region-body top margin. Then, region-body/@margin-top should be higher than region-before/@extent. Pascal De : Johannes Wolfgang Woger [mailto:[EMAIL PROTECTED] Envoyé : mercredi 29 septembre 2004 11:52

RE: Where to configure memory buffers?

2004-10-07 Thread Pascal Sancho
> -Message d'origine- > De : Tom Peters [mailto:[EMAIL PROTECTED] > Objet : Where to configure memory buffers? > > I run this sequence of commands to render a DocBook XML text: > " > xsltproc -o GemBook.tmp add-indexterms.xsl GemBook.xml > xsltproc -o mytitlepage.xsl > /etc/sgml/docb

RE: Question about full page tables

2004-11-23 Thread Pascal Sancho
Hi Jon > -Message d'origine- > De : Jon Steeves [mailto:[EMAIL PROTECTED] > > > > > > > > Here you can use this enstead > > > > > And here you can use this

RE: [fop] linefeed-treatment="preserve" doesn't preserve the linefeed

2004-11-23 Thread Pascal Sancho
Hi Gunter, > -Message d'origine- > De : Gunter D'Hondt [mailto:[EMAIL PROTECTED] > > Looking at the FAQ I think I don't do anything wrong in my > code coz I'm placing the attrbute > linefeed-treatment="preserve" into it. The attr > white-space-collapse I don't need or has nothing to d

RE: text in vertical direction

2004-11-23 Thread Pascal Sancho
Hi You can use a foreing-object to embed svg, that works fine:  xmlns:svg="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="7" height="250"> Your text here    Hope this helps you Pascal

RE: How do I wrap a continuous string inside a block/table cell?

2005-01-07 Thread Pascal Sancho
Hi, You should use the hyphenate attribute : ... Pascal > -Message d'origine- > De : Lawford, Mark : Enable [mailto:[EMAIL PROTECTED] > Envoyé : vendredi 7 janvier 2005 15:33 > > I'm working on a report PDF export and I've come across a > trivial problem with what I suspect wil be a n

RE: Declaring an entity for FOP to see

2005-01-13 Thread Pascal Sancho
Hi, I think that the public declaration is missing in you The right syntax should be: Pascal > -Message d'origine- > De : Luke Shannon [mailto:[EMAIL PROTECTED] > Envoyé : mercredi 12 janvier 2005 23:34 > > This is helpful. Thank you. > > - Original Message - > From: "Web M

RE: Whether Chinese Characters / Unicode supported by FOP ?

2005-02-11 Thread Pascal Sancho
Hi, You can find howto add your own fonts at http://xml.apache.org/fop/fonts.html. This can be summed up as follows: 1. get font files (type 1 or true type) 2. make metric file (using either PFMReader or TTFReader) 3. make your own config file 4. enjoy! Pascal > -Message d'origine- > D

RE: Bullets in FOP

2005-02-17 Thread Pascal Sancho
Hi, You can use: - either explicit character or character entity; - or glyph image (bitmap or svg). Characters that can replace wished bullets can be: • (filled circle); (this is part of standard font charsets) ■ to f7; unicode page (geometric shapes) Caution: the used font must embed wishe

RE: N xml, 1 PDF

2005-02-24 Thread Pascal Sancho
Hi, This seems to be a more specific XSLT question. You can do that (you will complete the code as you want): relative_or_absolute_path_from_this_xsl_to_new_xml ... Pascal > -Message d'origine- > De : Tommaso Taglioni [mailto:[EMAIL PROTECTED] > > I have some XML file and I

RE: xslt library

2005-02-24 Thread Pascal Sancho
You can follow that: www.exslt.org Pascal > -Message d'origine- > De : Peter Menzel [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 24 février 2005 13:55 > > I am looking for some kind of XSLT Library, which provides a > set of standard components (HTML) for web applications, e.g. > menus

RE: fo:leader

2005-03-04 Thread Pascal Sancho
Other alternative is to set both block font-height and line-height to '0mm' (or more, depends on what you want). Pascal > -Message d'origine- > De : J.Pietschmann [mailto:[EMAIL PROTECTED] > Envoyé : jeudi 3 mars 2005 22:38 > > Gang Li wrote: > > I want to insert a line in the table ro

RE: How to handle special characters?

2005-03-09 Thread Pascal Sancho
Hi, Sometime ago, I've tried this code (this applies font-familly='Symbol' when needed) ΑΒΓΔΕΖΗΘΙΚΛΜΝΞΟΠΡΣΤΥΦΧΨΩαβγδεζηθικλμνξοπρςστυφχψωϑϒϕϖ

svg text and spacing

2005-03-23 Thread Pascal Sancho
Hi Jake, This seems to be a specific svg question. You should ask it in a svg list. However, You can use this: ... In a left-to-right context, your x coordinate corresponds to the right edge of the text box. You can then easily locate your chart. Pascal > -Message d'origine- > De : Jak

RE: JFOR for fo:external-graphic

2005-03-23 Thread Pascal Sancho
Hi, FOP 0.20.5 doesn't support content-xxx. Use 'height' and 'width' attributes instead. Pascal > -Message d'origine- > De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > I use jfor but does not suppport content-height and > content-width for external image. > My problem is the on l

RE: Symbol ZapfDingats font doesn't render

2004-05-26 Thread Pascal Sancho
Hi,* I had a similar problem. These 2 special fonts are only available in a normal format (neither bold nor italic). You should check if inherited properties affect thes 2 traits. If this is the source problem, just add appropriate text-decoration="none" and font-weight="normal". Tcho -Mess

RE: Symbol ZapfDingats font doesn't render

2004-05-26 Thread Pascal Sancho
file that shows the 14 default charsets (helvetica, courrier and times fonts needs 4 charsets each). By Tcho -Message d'origine- De : Pascal Sancho Envoyé : mercredi 26 mai 2004 05:00 À : [EMAIL PROTECTED] Objet : RE: Symbol ZapfDingats font doesn't render Hi,* I had a simil

RE: Table Header problem

2004-05-27 Thread Pascal Sancho
Hi, Your fo output seems to be correct (except that there is no fo:table-column, witch are required by fop to set column width) It could be a wrong transformation (ie there is no table-header or table-body markup in your xml source file). (I suppose that your example is expected result, but not a

RE: Table Header problem

2004-05-28 Thread Pascal Sancho
Hi, The in the should be replaced with . If not, extra text can be added to (due to default xslt rules) Tcho -Message d'origine- De : Kaustuva Narayan Sharma [mailto:[EMAIL PROTECTED] Envoyé : vendredi 28 mai 2004 06:15 À : [EMAIL PROTECTED] Objet : RE: Table Header problem I got i

RE: How to handle &in fop

2004-06-10 Thread Pascal Sancho
Hi, following XML entities should be used when needed: & (&) < (<) > (>) ' (') " (") regards, Tcho -Message d'origine- De : Thorbjørn Ravn Andersen [mailto:[EMAIL PROTECTED] Envoyé : jeudi 10 juin 2004 11:24 À : [EMAIL PROTECTED] Objet : Re: How to handle &in fop [EMAIL PROTECTED] wrot

RE: OutOfMemoryError by large tables: Alternative solution?

2004-06-10 Thread Pascal Sancho
Hi, I wonder weither you can easily read a 1 rows table. Even in a pdf form. Probably you should crunch your source file in multiple subtables. Other engines than FOP could be have similar limitations... Beginning with human reader;) Regards, Tcho -Message d'origine- De : Peter B. W

RE: Plase Help in solving wrap option

2004-06-10 Thread Pascal Sancho
Hi, wrap-option proprety only applies to fo:block, fo:inline, fo:page-number, or fo:page-number-citation elements (see FO rec). Regards Tcho -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : mardi 8 juin 2004 12:13 À : [EMAIL PROTECTED]; [EMAIL PROTECTED] Obj

RE: pdf document info

2004-06-23 Thread Pascal Sancho
Hi, You should probably find answer in the FAQ (http://xml.apache.org/fop/faq.html#pdf-doc-properties) or in the post-processing page (http://xml.apache.org/fop/output.html#pdf-postprocess). Tcho -Message d'origine- De : [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Envoyé : mardi 22 ju