[prev in list] [next in list] [prev in thread] [next in thread] 

List:       fop-user
Subject:    Re: Log trace
From:       Luis Bernardo <lmpmbernardo () gmail ! com>
Date:       2013-07-31 2:58:02
Message-ID: 51F87D3A.6030700 () gmail ! com
[Download RAW message or body]

Apologies. I misunderstood what you meant.

The bulk of FOP happens inside transformer.transform(src, result). So it 
could be anything. Do you have images? What if you run with them 
disabled (move them to a different directory)? You can send your example 
to one of the developers if you don't want to share it with everyone.

On 7/29/13 1:14 AM, Adrien RUFFIE wrote:
>
> No sorry I think isn't the problem because, I haven't out of memory 
> and my JVM have 2GO ...
>
> Bien cordialement,
>
> *Adrien Ruffié*
> LD : +33 1 73 03 29 50
> Tél : +33 1 73 03 29 80
>
> *E-DEAL* <http://www.e-deal.com/>
> Innover la Relation Client
>
> *De :*Luis Bernardo [mailto:lmpmbernardo@gmail.com]
> *Envoyé :* dimanche 28 juillet 2013 14:14
> *À :* fop-users@xmlgraphics.apache.org
> *Objet :* Re: Log trace
>
>
> If the input FO file is very large then the memory consumption during 
> the parsing phase will be large too. The limitation then is the memory 
> your JVM is able to use. Increase it and it should improve things.
>
> On 7/26/13 11:20 AM, Adrien RUFFIE wrote:
>
>     Yes very thank Robert,
>
>     But I think my problem is more due to transformer.transform(src,
>     result)
>
>     With a big src file wordML (1025ko) ... the process block on
>     transform without out of memory, very strange ...
>
>     Ay one know this limitation?
>
>     Bien cordialement,
>
>     *Adrien Ruffié*
>     LD : +33 1 73 03 29 50
>     Tél : +33 1 73 03 29 80
>
>     *E-DEAL* <http://www.e-deal.com/>
>     Innover la Relation Client
>
>     *De :*Robert Meyer [mailto:rmeyer@hotmail.co.uk]
>     *Envoyé :* vendredi 26 juillet 2013 17:45
>     *À :* fop-users@xmlgraphics.apache.org
>     <mailto:fop-users@xmlgraphics.apache.org>
>     *Objet :* RE: Log trace
>
>     Hi Adrien,
>
>     700 means that somewhere in the FO it is trying to reference a
>     bold version of the Calibri font. Because the only font triplet
>     defined is that of weight="normal", it is reverting back to normal
>     (i.e. 400). I am not sure for that particular font, but you need
>     either to have another font entry for the calibri-bold.ttf font,
>     or if the calibri.ttf supports bold, add a new triplet and define
>     weight="bold".
>
>     Regarding the overflow, this message is only usually displayed for
>     the following reasons:
>     - It can't break the content e.g. a long string of characters
>     (e.g. HHHHHHHHH) doesn't allow breaks, so it will just overflow.
>     - An image or other content which is larger than the maximum size
>     of the block
>     The block width will extend to the full size of the page (or the
>     maximum size it can given the layout). In this case, the warning
>     informs us the content is greater than the maximum size. It will
>     display the warning unless either the content is changed or the
>     page size is made larger.
>
>     Yes, the fo:marker is retrieved using that.
>
>     I wouldn't say that these issues are related to the issue of
>     waiting 2 or more hours though to complete though.
>
>     Regards,
>
>     Robert Meyer
>
>     ------------------------------------------------------------------------
>
>     From: a.ruffie@e-deal.com <mailto:a.ruffie@e-deal.com>
>     To: fop-users@xmlgraphics.apache.org
>     <mailto:fop-users@xmlgraphics.apache.org>
>     Date: Fri, 26 Jul 2013 12:49:29 +0200
>     Subject: RE: Log trace
>
>     Ok thank Robert :
>
>     -For table your solution work correctly
>
>     -For Calibri I have added Calibri.xml and ttf in my fonts
>     directory and add:
>
>     <fontmetrics-url=/"calibri.xml"
>     /kerning=/"yes"/embed-url=/"calibri.ttf"/>
>
>     <font-tripletname=/"Calibri"/style=/"normal" /weight=/"normal"//>
>
>     </font>
>
>     In my *.xconf but now the trace as changed : Font
>     'Calibri,normal,700' not found. Substituting with
>     'Calibri,normal,400'.
>
>     What is the different between Calibri, normal,700 and 400 ? Where
>     I can change this value ?
>
>     -For the overflow how and where I can specify a larger size than
>     that already specified ?
>
>     -For block size I can avoid this trace ?
>
>     -For fo:retrieve-marker  the linked fo:marker is retrieve from
>     retrieve-class-name property ? like
>     retrieve-class-name="odd-page-footer"
>
>     I think is it small problem, but I have one principal (my pdf
>     generation doesn't finish after 2hour waiting ...), and I just
>     would like try if this is not due to these previous small errors
>
>     Great thank
>
>     *De :*Robert Meyer [mailto:rmeyer@hotmail.co.uk]
>     *Envoyé :* vendredi 26 juillet 2013 10:55
>     *À :* fop-users@xmlgraphics.apache.org
>     <mailto:fop-users@xmlgraphics.apache.org>
>     *Objet :* RE: Log trace
>
>     Hi Adrien,
>
>     - The first warning is because FOP doesn't support a table-layout
>     with a value of "auto". It will default to fixed anyway, so change
>     it to use table-layout="fixed" to resolve the warning.
>     - FOP can't find the Calibri font you've specified to use. You
>     might want to check your *.xconf to ensure it's configured
>     correctly and pointing to the correct location of the font.
>     - The overflow warning basically means that the breaking algorithm
>     is unable to break the content of the block adequately. Either
>     that or the content is too large to fit it in the given size. 5-8k
>     mpt is relatively small though, so you may not see anything wrong.
>     - The final warning relates to use the fo:retrieve-marker used for
>     running page headers / footers. If an fo:retrieve-marker has been
>     specified, but there is no matching fo:marker set then it will
>     likely cause this warning.
>
>     Regards,
>
>     Robert Meyer
>
>     ------------------------------------------------------------------------
>
>     From: a.ruffie@e-deal.com <mailto:a.ruffie@e-deal.com>
>     To: fop-users@xmlgraphics.apache.org
>     <mailto:fop-users@xmlgraphics.apache.org>
>     Date: Fri, 26 Jul 2013 08:51:19 +0200
>     Subject: Log trace
>
>     Hello all,
>
>     My application create a pdf doc from a wordml modèle (in
>     attachment), my pdf is correctly generated but several warning
>     appears. Do you know these problems ?
>
>     2013-07-25 18:39:15,585 799671 [http-8080-5] WARN 
>     org.apache.fop.fo.FONode - Warning(Unknown location): fo:table,
>     table-layout="auto" is currently not supported by FOP
>
>     2013-07-25 18:39:15,951 800037 [http-8080-5] WARN
>     org.apache.fop.fonts.FontInfo  - Font 'Calibri,normal,400' not
>     found. Substituting with 'any,normal,400'.
>
>     2013-07-25 18:39:16,033 800119 [http-8080-5] WARN
>     org.apache.fop.fonts.FontInfo  - Font 'Calibri,normal,700' not
>     found. Substituting with 'any,normal,700'.
>
>     2013-07-25 18:39:16,047 800133 [http-8080-5] WARN
>     org.apache.fop.layoutmgr.BreakingAlgorithm  - Line 1 of a
>     paragraph overflows the available area by 5162mpt. (fo:block,
>     "Strength")
>
>     2013-07-25 18:39:16,048 800134 [http-8080-5] WARN
>     org.apache.fop.layoutmgr.BreakingAlgorithm  - Line 1 of a
>     paragraph overflows the available area by 8490mpt. (fo:block,
>     "Disponibilité")
>
>     ...
>
>     2013-07-25 18:39:16,274 800360 [http-8080-5] WARN
>     org.apache.fop.layoutmgr.BreakingAlgorithm  - Line 1 of a
>     paragraph overflows the available area by 4898mpt. (fo:block,
>     "azdazdaz")
>
>     2013-07-25 18:39:16,337 800423 [http-8080-5] INFO 
>     org.apache.fop.fo.FONode - Empty marker retrieved...
>
>     2013-07-25 18:39:16,337 800423 [http-8080-5] INFO 
>     org.apache.fop.fo.FONode - Empty marker retrieved...
>
>     Great thank and best regards.
>
>     Bien cordialement,
>
>     E-DEAL <http://e-deal.biz/kd/9eZ>
>
>     	
>
>     Twitter <http://e-deal.biz/kd/UOh>Facebook
>     <http://e-deal.biz/kd/X9Q>RSS <http://e-deal.biz/kd/bTG>
>
>     *Adrien RUFFIE*
>     /Ingénieur R&D/
>
>     40, rue du Village d'Entreprises
>     31670 Labège
>     *www.e-deal.com* <http://www.e-deal.com/>
>
>     	
>
>
>     LD : +33 1 73 03 29 50
>     Std : +33 1 73 03 29 80
>     Fax : +33 1 73 01 69 77
>     *a.ruffie@e-deal.com<mailto:a.ruffie@e-deal.com>*
>
>
>     E-DEAL soutient le Pacte Mondial de l'ONU <http://e-deal.biz/kd/mPQ>
>
>
>     ---------------------------------------------------------------------
>     To unsubscribe, e-mail:
>     fop-users-unsubscribe@xmlgraphics.apache.org
>     <mailto:fop-users-unsubscribe@xmlgraphics.apache.org> For
>     additional commands, e-mail: fop-users-help@xmlgraphics.apache.org
>     <mailto:fop-users-help@xmlgraphics.apache.org>
>


[Attachment #3 (multipart/related)]

[Attachment #5 (text/html)]

<html>
  <head>
    <meta content="text/html; charset=ISO-8859-1"
      http-equiv="Content-Type">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <div class="moz-cite-prefix"><br>
      Apologies. I misunderstood what you meant.<br>
      <br>
      The bulk of FOP happens inside transformer.transform(src, result).
      So it could be anything. Do you have images? What if you run with
      them disabled (move them to a different directory)? You can send
      your example to one of the developers if you don't want to share
      it with everyone.<br>
      <br>
      On 7/29/13 1:14 AM, Adrien RUFFIE wrote:<br>
    </div>
    <blockquote
cite="mid:747793AC722E0A4FB40F138D5BBAE0A21596D9F70C@edeal-xcg3.e-deal.com"
      type="cite">
      <meta http-equiv="Content-Type" content="text/html;
        charset=ISO-8859-1">
      <meta name="Generator" content="Microsoft Word 14 (filtered
        medium)">
      <!--[if !mso]><style>v\:* {behavior:url(#default#VML);}
o\:* {behavior:url(#default#VML);}
w\:* {behavior:url(#default#VML);}
.shape {behavior:url(#default#VML);}
</style><![endif]-->
      <style><!--
/* Font Definitions */
@font-face
	{font-family:"MS Mincho";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
	{font-family:"MS Mincho";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
	{font-family:Calibri;
	panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
	{font-family:Tahoma;
	panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
	{font-family:Consolas;
	panose-1:2 11 6 9 2 2 4 3 2 4;}
@font-face
	{font-family:"Lucida Sans";
	panose-1:2 11 6 2 3 5 4 2 2 4;}
@font-face
	{font-family:"\@MS Mincho";
	panose-1:2 2 6 9 4 2 5 8 3 4;}
@font-face
	{font-family:"Lucida Sans \, sans-serif";
	panose-1:0 0 0 0 0 0 0 0 0 0;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
	{margin:0cm;
	margin-bottom:.0001pt;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
a:link, span.MsoHyperlink
	{mso-style-priority:99;
	color:blue;
	text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
	{mso-style-priority:99;
	color:purple;
	text-decoration:underline;}
p
	{mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
	{mso-style-priority:99;
	mso-style-link:"Texte de bulles Car";
	margin:0cm;
	margin-bottom:.0001pt;
	font-size:8.0pt;
	font-family:"Tahoma","sans-serif";
	color:black;}
span.TextedebullesCar
	{mso-style-name:"Texte de bulles Car";
	mso-style-priority:99;
	mso-style-link:"Texte de bulles";
	font-family:"Tahoma","sans-serif";}
p.ecxmsonormal, li.ecxmsonormal, div.ecxmsonormal
	{mso-style-name:ecxmsonormal;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsoacetate, li.ecxmsoacetate, div.ecxmsoacetate
	{mso-style-name:ecxmsoacetate;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsolistparagraph, li.ecxmsolistparagraph, div.ecxmsolistparagraph
	{mso-style-name:ecxmsolistparagraph;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsochpdefault, li.ecxmsochpdefault, div.ecxmsochpdefault
	{mso-style-name:ecxmsochpdefault;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsonormal1, li.ecxmsonormal1, div.ecxmsonormal1
	{mso-style-name:ecxmsonormal1;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsoacetate1, li.ecxmsoacetate1, div.ecxmsoacetate1
	{mso-style-name:ecxmsoacetate1;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsochpdefault1, li.ecxmsochpdefault1, div.ecxmsochpdefault1
	{mso-style-name:ecxmsochpdefault1;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsonormal2, li.ecxmsonormal2, div.ecxmsonormal2
	{mso-style-name:ecxmsonormal2;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsoacetate2, li.ecxmsoacetate2, div.ecxmsoacetate2
	{mso-style-name:ecxmsoacetate2;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsolistparagraph1, li.ecxmsolistparagraph1, div.ecxmsolistparagraph1
	{mso-style-name:ecxmsolistparagraph1;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsochpdefault2, li.ecxmsochpdefault2, div.ecxmsochpdefault2
	{mso-style-name:ecxmsochpdefault2;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Times New Roman","serif";
	color:black;}
p.ecxmsonormal11, li.ecxmsonormal11, div.ecxmsonormal11
	{mso-style-name:ecxmsonormal11;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:11.0pt;
	font-family:"Calibri","sans-serif";
	color:black;}
p.ecxmsoacetate11, li.ecxmsoacetate11, div.ecxmsoacetate11
	{mso-style-name:ecxmsoacetate11;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:8.0pt;
	font-family:"Tahoma","sans-serif";
	color:black;}
p.ecxmsochpdefault11, li.ecxmsochpdefault11, div.ecxmsochpdefault11
	{mso-style-name:ecxmsochpdefault11;
	mso-style-priority:99;
	mso-margin-top-alt:auto;
	margin-right:0cm;
	mso-margin-bottom-alt:auto;
	margin-left:0cm;
	font-size:12.0pt;
	font-family:"Calibri","sans-serif";
	color:black;}
span.ecxmsohyperlink
	{mso-style-name:ecxmsohyperlink;}
span.ecxmsohyperlinkfollowed
	{mso-style-name:ecxmsohyperlinkfollowed;}
span.ecxmsohyperlink1
	{mso-style-name:ecxmsohyperlink1;}
span.ecxmsohyperlinkfollowed1
	{mso-style-name:ecxmsohyperlinkfollowed1;}
span.ecxemailstyle171
	{mso-style-name:ecxemailstyle171;}
span.ecxtextedebullescar1
	{mso-style-name:ecxtextedebullescar1;}
span.ecxemailstyle32
	{mso-style-name:ecxemailstyle32;}
span.ecxtextedebullescar
	{mso-style-name:ecxtextedebullescar;}
span.ecxmsohyperlink2
	{mso-style-name:ecxmsohyperlink2;
	color:blue;
	text-decoration:underline;}
span.ecxmsohyperlinkfollowed2
	{mso-style-name:ecxmsohyperlinkfollowed2;
	color:purple;
	text-decoration:underline;}
span.ecxmsohyperlink11
	{mso-style-name:ecxmsohyperlink11;
	color:blue;
	text-decoration:underline;}
span.ecxmsohyperlinkfollowed11
	{mso-style-name:ecxmsohyperlinkfollowed11;
	color:purple;
	text-decoration:underline;}
span.ecxemailstyle1711
	{mso-style-name:ecxemailstyle1711;
	font-family:"Calibri","sans-serif";
	color:windowtext;}
span.ecxtextedebullescar11
	{mso-style-name:ecxtextedebullescar11;
	font-family:"Tahoma","sans-serif";}
span.ecxemailstyle321
	{mso-style-name:ecxemailstyle321;
	font-family:"Calibri","sans-serif";
	color:#1F497D;}
span.ecxtextedebullescar2
	{mso-style-name:ecxtextedebullescar2;
	font-family:"Tahoma","sans-serif";}
span.EmailStyle50
	{mso-style-type:personal;
	font-family:"Calibri","sans-serif";
	color:#1F497D;}
span.EmailStyle51
	{mso-style-type:personal-reply;
	font-family:"Calibri","sans-serif";
	color:#1F497D;}
.MsoChpDefault
	{mso-style-type:export-only;
	font-size:10.0pt;}
@page WordSection1
	{size:612.0pt 792.0pt;
	margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.WordSection1
	{page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]-->
      <div class="WordSection1">
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
                
            lang="EN-US">No sorry I think isn&#8217;t the problem because, I
            haven&#8217;t out of memory and my JVM have 2GO \
&#8230;<o:p></o:p></span></p>  <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US"><o:p>&nbsp;</o:p></span></p>
        <div>
          <p class="MsoNormal"><span
              style="font-size:9.0pt;font-family:&quot;Lucida
              Sans&quot;,&quot;sans-serif&quot;;color:#0C3183">Bien
              cordialement,</span><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><br>
  <br>
            </span><b><span
                style="font-size:9.0pt;font-family:&quot;Lucida
                Sans&quot;,&quot;sans-serif&quot;;color:#7F7F7F">Adrien
                Ruffi&eacute;</span></b><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><br>
  </span><span style="font-size:8.0pt;font-family:&quot;Lucida
              Sans&quot;,&quot;sans-serif&quot;;color:#7F7F7F">LD : +33
              1 73 03 29 50<br>
              T&eacute;l : +33 1 73 03 29 80<br>
              <br>
              <a moz-do-not-send="true" href="http://www.e-deal.com/"
                title="Innover la Relation Client"><b><span
                    style="font-size:14.0pt;color:#0C3183;text-decoration:none">E-DEAL</span></b></a><br>
  Innover la Relation Client</span><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><o:p></o:p></span></p>
  </div>
        <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><o:p>&nbsp;</o:p></span></p>
  <div>
          <div style="border:none;border-top:solid #B5C4DF
            1.0pt;padding:3.0pt 0cm 0cm 0cm">
            <p class="MsoNormal"><b><span
style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:windowtext">De&nbsp;:</span></b><span
 style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;;color:windowtext">
                
                Luis Bernardo [<a class="moz-txt-link-freetext" \
                href="mailto:lmpmbernardo@gmail.com">mailto:lmpmbernardo@gmail.com</a>] \
                <br>
                <b>Envoy&eacute;&nbsp;:</b> dimanche 28 juillet 2013 14:14<br>
                <b>&Agrave;&nbsp;:</b> <a class="moz-txt-link-abbreviated" \
href="mailto:fop-users@xmlgraphics.apache.org">fop-users@xmlgraphics.apache.org</a><br>
  <b>Objet&nbsp;:</b> Re: Log trace<o:p></o:p></span></p>
          </div>
        </div>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
        <div>
          <p class="MsoNormal"><br>
            If the input FO file is very large then the memory
            consumption during the parsing phase will be large too. The
            limitation then is the memory your JVM is able to use.
            Increase it and it should improve things.<br>
            <br>
            On 7/26/13 11:20 AM, Adrien RUFFIE wrote:<o:p></o:p></p>
        </div>
        <blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">Yes very thank Robert,</span><o:p></o:p></p>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">&nbsp;</span><o:p></o:p></p>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">But I think my problem is more due to
              transformer.transform(src, result)</span><o:p></o:p></p>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">With a big src file wordML (1025ko) &#8230; the
              process block on transform without out of memory, very
              strange &#8230;</span><o:p></o:p></p>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">&nbsp;</span><o:p></o:p></p>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
                
              lang="EN-US">Ay one know this limitation?</span><o:p></o:p></p>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">&nbsp;</span><o:p></o:p></p>
          <div>
            <p class="MsoNormal"><span style="font-size:9.0pt">Bien
                cordialement,</span><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><br>
  <br>
              </span><b><span style="font-size:9.0pt">Adrien \
Ruffi&eacute;</span></b><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"><br>
  </span><span style="font-size:8.0pt">LD : +33 1 73 03 29
                50<br>
                T&eacute;l : +33 1 73 03 29 80<br>
                <br>
                <a moz-do-not-send="true" href="http://www.e-deal.com/"
                  title="Innover la Relation Client"><b><span
                      \
style="font-size:14.0pt;color:#0C3183;text-decoration:none">E-DEAL</span></b></a><br> \
Innover la Relation Client</span><o:p></o:p></p>  </div>
          <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">&nbsp;</span><o:p></o:p></p>
  <div>
            <div style="border:none;border-top:solid #B5C4DF
              1.0pt;padding:3.0pt 0cm 0cm 0cm">
              <p class="MsoNormal"><b><span
style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">De&nbsp;:</span></b><span
 style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">
                  Robert Meyer [<a moz-do-not-send="true"
                    href="mailto:rmeyer@hotmail.co.uk">mailto:rmeyer@hotmail.co.uk</a>]
  <br>
                  <b>Envoy&eacute;&nbsp;:</b> vendredi 26 juillet 2013 17:45<br>
                  <b>&Agrave;&nbsp;:</b> <a moz-do-not-send="true"
                    href="mailto:fop-users@xmlgraphics.apache.org">fop-users@xmlgraphics.apache.org</a><br>
  <b>Objet&nbsp;:</b> RE: Log trace</span><o:p></o:p></p>
            </div>
          </div>
          <p class="MsoNormal">&nbsp;<o:p></o:p></p>
          <div>
            <p class="MsoNormal" style="margin-bottom:12.0pt"><span
                style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">Hi
                Adrien,<br>
                <br>
                700 means that somewhere in the FO it is trying to
                reference a bold version of the Calibri font. Because
                the only font triplet defined is that of
                weight="normal", it is reverting back to normal (i.e.
                400). I am not sure for that particular font, but you
                need either to have another font entry for the
                calibri-bold.ttf font, or if the calibri.ttf supports
                bold, add a new triplet and define weight="bold".<br>
                <br>
                Regarding the overflow, this message is only usually
                displayed for the following reasons:<br>
                - It can't break the content e.g. a long string of
                characters (e.g. HHHHHHHHH) doesn't allow breaks, so it
                will just overflow.<br>
                - An image or other content which is larger than the
                maximum size of the block<br>
                The block width will extend to the full size of the page
                (or the maximum size it can given the layout). In this
                case, the warning informs us the content is greater than
                the maximum size. It will display the warning unless
                either the content is changed or the page size is made
                larger.<br>
                <br>
                Yes, the fo:marker is retrieved using that.<br>
                <br>
                I wouldn't say that these issues are related to the
                issue of waiting 2 or more hours though to complete
                though.<br>
                <br>
                Regards,<br>
                <br>
                Robert Meyer</span><o:p></o:p></p>
            <div>
              <div class="MsoNormal" style="text-align:center"
                align="center"><span
                  style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">
                  <hr align="center" size="2" width="100%"></span></div>
              <p class="MsoNormal" style="margin-bottom:12.0pt"><span
                  style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">From:
  <a moz-do-not-send="true"
                    href="mailto:a.ruffie@e-deal.com">a.ruffie@e-deal.com</a><br>
                  To: <a moz-do-not-send="true"
                    href="mailto:fop-users@xmlgraphics.apache.org">fop-users@xmlgraphics.apache.org</a><br>
  Date: Fri, 26 Jul 2013 12:49:29 +0200<br>
                  Subject: RE: Log trace</span><o:p></o:p></p>
              <div>
                <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">Ok
  thank Robert&nbsp;:</span><o:p></o:p></p>
                <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">&nbsp;</span><o:p></o:p></p>
  <p class="MsoNormal" style="text-indent:-18.0pt"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">-</span><span
                    style="font-size:7.0pt;color:#1F497D" \
lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  </span><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
                
                    lang="EN-US">For table your solution work \
correctly</span><o:p></o:p></p>  <p class="MsoNormal" \
style="text-indent:-18.0pt"><span \
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">-</span><span
                    style="font-size:7.0pt;color:#1F497D" \
lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  </span><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">For Calibri I have added Calibri.xml
                    and ttf in my fonts directory and add:</span><o:p></o:p></p>
                <p class="MsoNormal"
                  style="text-indent:35.4pt;text-autospace:none"><span
                    style="font-size:10.0pt;font-family:Consolas;color:teal"
                    lang="EN-US">&lt;</span><span
style="font-size:10.0pt;font-family:Consolas;color:#3F7F7F;background:silver"
                    lang="EN-US">font</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US"> </span><span
                    style="font-size:10.0pt;font-family:Consolas;color:#7F007F"
                    lang="EN-US">metrics-url</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">=</span><i><span
                      style="font-size:10.0pt;font-family:Consolas;color:#2A00FF"
                      lang="EN-US">"calibri.xml" </span></i><span
                    style="font-size:10.0pt;font-family:Consolas;color:#7F007F"
                    lang="EN-US">kerning</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">=</span><i><span
                      style="font-size:10.0pt;font-family:Consolas;color:#2A00FF"
                      lang="EN-US">"yes"</span></i><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US"> </span><span
                    style="font-size:10.0pt;font-family:Consolas;color:#7F007F"
                    lang="EN-US">embed-url</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">=</span><i><span
                      style="font-size:10.0pt;font-family:Consolas;color:#2A00FF"
                      lang="EN-US">"calibri.ttf"</span></i><span
                    style="font-size:10.0pt;font-family:Consolas;color:teal"
                    lang="EN-US">&gt;</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">&nbsp;&nbsp;&nbsp; </span><o:p></o:p></p>
                <p class="MsoNormal"
                  style="text-indent:35.4pt;text-autospace:none"><span
                    style="font-size:10.0pt;font-family:Consolas;color:teal"
                    lang="EN-US">&lt;</span><span
                    style="font-size:10.0pt;font-family:Consolas;color:#3F7F7F"
                    lang="EN-US">font-triplet</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US"> </span><span
                    style="font-size:10.0pt;font-family:Consolas;color:#7F007F"
                    lang="EN-US">name</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">=</span><i><span
                      style="font-size:10.0pt;font-family:Consolas;color:#2A00FF"
                      lang="EN-US">"Calibri"</span></i><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US"> </span><span
                    style="font-size:10.0pt;font-family:Consolas;color:#7F007F"
                    lang="EN-US">style</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">=</span><i><span
                      style="font-size:10.0pt;font-family:Consolas;color:#2A00FF"
                      lang="EN-US">"normal" </span></i><span
                    style="font-size:10.0pt;font-family:Consolas;color:#7F007F"
                    lang="EN-US">weight</span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">=</span><i><span
                      style="font-size:10.0pt;font-family:Consolas;color:#2A00FF"
                      lang="EN-US">"normal"</span></i><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US"> </span><span
                    style="font-size:10.0pt;font-family:Consolas;color:teal"
                    lang="EN-US">/&gt;</span><o:p></o:p></p>
                <p class="MsoNormal"><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
                    style="font-size:10.0pt;font-family:Consolas;color:teal"
                    lang="EN-US">&lt;/</span><span
style="font-size:10.0pt;font-family:Consolas;color:#3F7F7F;background:silver"
                    lang="EN-US">font</span><span
                    style="font-size:10.0pt;font-family:Consolas;color:teal"
                    lang="EN-US">&gt;</span><o:p></o:p></p>
                <p class="MsoNormal" style="text-indent:35.4pt"><span
                    style="font-size:9.0pt" lang="EN-US">In my *.xconf
                    but now the trace as changed&nbsp;: </span><span
                    style="font-size:10.0pt;font-family:Consolas"
                    lang="EN-US">Font 'Calibri,normal,700' not found.
                    Substituting with 'Calibri,normal,400'.</span><o:p></o:p></p>
                <p class="MsoNormal" style="text-indent:35.4pt"><span
                    style="font-size:9.0pt" lang="EN-US">What is the
                    different between Calibri, normal,700 and 400 ?
                    Where I can change this value ?</span><o:p></o:p></p>
                <p class="MsoNormal" style="text-indent:-18.0pt"><span
style="font-size:9.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#0C3183"
  lang="EN-US">-</span><span
                    style="font-size:7.0pt;color:#0C3183" \
lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  </span><span \
style="font-size:9.0pt" lang="EN-US">For  the overflow how and where I can specify a \
                larger
                    size than that already specified ?</span><o:p></o:p></p>
                <p class="MsoNormal" style="text-indent:-18.0pt"><span
style="font-size:9.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#0C3183"
  lang="EN-US">-</span><span
                    style="font-size:7.0pt;color:#0C3183" \
lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  </span><span \
                style="font-size:9.0pt" lang="EN-US">For
                    block size I can avoid this trace ?</span><o:p></o:p></p>
                <p class="MsoNormal" style="text-indent:-18.0pt"><span
style="font-size:9.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#0C3183"
  lang="EN-US">-</span><span
                    style="font-size:7.0pt;color:#0C3183" \
lang="EN-US">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  </span><span \
                style="font-size:9.0pt" lang="EN-US">For
                    fo:retrieve-marker&nbsp; the linked fo:marker is retrieve
                    from retrieve-class-name property ? like&nbsp; </span><span
style="font-size:10.0pt;font-family:Consolas;color:#7F007F" \
lang="EN-US">retrieve-class-name</span><span  \
style="font-size:10.0pt;font-family:Consolas"  \
lang="EN-US">="odd-page-footer"</span><o:p></o:p></p>  <p class="MsoNormal"><span \
style="font-size:9.0pt"  lang="EN-US">&nbsp;</span><o:p></o:p></p>
                <p class="MsoNormal"><span style="font-size:9.0pt"
                    lang="EN-US">I think is it small problem, but I have
                    one principal (my pdf generation doesn&#8217;t finish
                    after 2hour waiting &#8230;), and I just would like try if
                    this is not due to these previous small \
errors</span><o:p></o:p></p>  <p class="MsoNormal"><span style="font-size:9.0pt"
                    lang="EN-US">&nbsp;</span><o:p></o:p></p>
                <div>
                  <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D"
  lang="EN-US">Great thank</span><o:p></o:p></p>
                </div>
                <p class="MsoNormal"><span
style="font-size:11.0pt;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;color:#1F497D">&nbsp;</span><o:p></o:p></p>
  <div>
                  <div style="border:none;border-top:solid #B5C4DF
                    1.0pt;padding:3.0pt 0cm 0cm 0cm">
                    <p class="MsoNormal"><b><span
style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">De&nbsp;:</span></b><span
 style="font-size:10.0pt;font-family:&quot;Tahoma&quot;,&quot;sans-serif&quot;">
                        Robert Meyer [<a moz-do-not-send="true"
                          \
href="mailto:rmeyer@hotmail.co.uk">mailto:rmeyer@hotmail.co.uk</a>]  <br>
                        <b>Envoy&eacute;&nbsp;:</b> vendredi 26 juillet 2013 \
10:55<br>  <b>&Agrave;&nbsp;:</b> <a moz-do-not-send="true"
                          \
href="mailto:fop-users@xmlgraphics.apache.org">fop-users@xmlgraphics.apache.org</a><br>
                
                        <b>Objet&nbsp;:</b> RE: Log trace</span><o:p></o:p></p>
                  </div>
                </div>
                <p class="MsoNormal"><span
                    style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">&nbsp;</span><o:p></o:p></p>
  <div>
                  <p class="MsoNormal"><span
                      \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">Hi  Adrien,<br>
                      <br>
                      - The first warning is because FOP doesn't support
                      a table-layout with a value of "auto". It will
                      default to fixed anyway, so change it to use
                      table-layout="fixed" to resolve the warning.<br>
                      - FOP can't find the Calibri font you've specified
                      to use. You might want to check your *.xconf to
                      ensure it's configured correctly and pointing to
                      the correct location of the font.<br>
                      - The overflow warning basically means that the
                      breaking algorithm is unable to break the content
                      of the block adequately. Either that or the
                      content is too large to fit it in the given size.
                      5-8k mpt is relatively small though, so you may
                      not see anything wrong.<br>
                      - The final warning relates to use the
                      fo:retrieve-marker used for running page headers /
                      footers. If an fo:retrieve-marker has been
                      specified, but there is no matching fo:marker set
                      then it will likely cause this warning.<br>
                      <br>
                      Regards,<br>
                      <br>
                      Robert Meyer</span><o:p></o:p></p>
                  <div>
                    <div class="MsoNormal" style="text-align:center"
                      align="center"><span
                        \
                style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">
                        <hr align="center" size="2" width="100%"></span></div>
                    <p class="MsoNormal"><span
                        \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">From:  <a \
                moz-do-not-send="true"
                          \
href="mailto:a.ruffie@e-deal.com">a.ruffie@e-deal.com</a><br>  To: <a \
                moz-do-not-send="true"
                          \
href="mailto:fop-users@xmlgraphics.apache.org">fop-users@xmlgraphics.apache.org</a><br>
  Date: Fri, 26 Jul 2013 08:51:19 +0200<br>
                        Subject: Log trace</span><o:p></o:p></p>
                    <div>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">Hello  \
all,</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">&nbsp;</span><o:p></o:p></p>
  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  lang="EN-US">My \
                application create a pdf doc
                          from a wordml mod&egrave;le (in attachment), my pdf
                          is correctly generated but several warning
                          appears. Do you know these problems ?</span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">&nbsp;</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
                lang="EN-US">2013-07-25 18:39:15,585 799671
                          [http-8080-5] WARN&nbsp; org.apache.fop.fo.FONode&nbsp;
                          - Warning(Unknown location): fo:table,
                          table-layout="auto" is currently not supported
                          by FOP</span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">2013-07-25 18:39:15,951 800037  [http-8080-5] WARN&nbsp;
                          org.apache.fop.fonts.FontInfo&nbsp; - Font
                          'Calibri,normal,400' not found. Substituting
                          with 'any,normal,400'.</span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">2013-07-25 18:39:16,033 800119  [http-8080-5] WARN&nbsp;
                          org.apache.fop.fonts.FontInfo&nbsp; - Font
                          'Calibri,normal,700' not found. Substituting
                          with 'any,normal,700'.</span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">2013-07-25 18:39:16,047 800133  [http-8080-5] WARN&nbsp;
                          org.apache.fop.layoutmgr.BreakingAlgorithm&nbsp; -
                          Line 1 of a paragraph overflows the available
                          area by 5162mpt. (fo:block, \
"Strength")</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">2013-07-25 18:39:16,048 800134  [http-8080-5] WARN&nbsp;
                          org.apache.fop.layoutmgr.BreakingAlgorithm&nbsp; -
                          Line 1 of a paragraph overflows the available
                          area by 8490mpt. (fo:block, \
"Disponibilit&eacute;")</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">&#8230;</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">2013-07-25 18:39:16,274 800360  [http-8080-5] WARN&nbsp;
                          org.apache.fop.layoutmgr.BreakingAlgorithm&nbsp; -
                          Line 1 of a paragraph overflows the available
                          area by 4898mpt. (fo:block, \
"azdazdaz")</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
                lang="EN-US">2013-07-25 18:39:16,337 800423
                          [http-8080-5] INFO&nbsp; org.apache.fop.fo.FONode&nbsp;
                          - Empty marker retrieved...</span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
                lang="EN-US">2013-07-25 18:39:16,337 800423
                          [http-8080-5] INFO&nbsp; org.apache.fop.fo.FONode&nbsp;
                          - Empty marker retrieved...</span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">&nbsp;</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
                style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"
                          lang="EN-US">Great thank and best \
regards.</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"  \
lang="EN-US">&nbsp;</span><o:p></o:p></p>  <p class="MsoNormal"><span
                          style="font-size:10.0pt;font-family:&quot;Lucida
                          Sans , sans-serif&quot;,&quot;serif&quot;">Bien
                          cordialement,<br>
                          &nbsp;</span><o:p></o:p></p>
                      <table class="MsoNormalTable"
                        style="width:271.0pt;border:solid #7584AD 1.0pt"
                        border="1" cellpadding="0" width="361">
                        <tbody>
                          <tr>
                            <td style="border:none;padding:.75pt 3.0pt
                              .75pt 3.0pt" valign="top">
                              <p class="MsoNormal"><a
                                  moz-do-not-send="true"
                                  href="http://e-deal.biz/kd/9eZ"
                                  target="_blank" title="Innover la
                                  Relation Client"><span
                                    style="text-decoration:none"><img
                                      id="ecxImage_x0020_1"
                                      src="cid:part11.03030103.01050703@gmail.com"
                                      alt="E-DEAL" border="0"
                                      height="45" \
width="180"></span></a><o:p></o:p></p>  </td>
                            <td style="border:none;padding:0cm 3.0pt
                              .75pt 3.0pt" valign="top">
                              <p class="MsoNormal"
                                style="text-align:right" align="right"><a
                                  moz-do-not-send="true"
                                  href="http://e-deal.biz/kd/UOh"
                                  target="_blank" title="Innover la
                                  Relation Client"><span
                                    style="text-decoration:none"><img
                                      id="ecxImage_x0020_2"
                                      src="cid:part13.07040507.00010603@gmail.com"
                                      alt="Twitter" border="0"
                                      height="24" width="24"></span></a><a
                                  moz-do-not-send="true"
                                  href="http://e-deal.biz/kd/X9Q"
                                  target="_blank" title="Innover la
                                  Relation Client"><span
                                    style="text-decoration:none"><img
                                      id="ecxImage_x0020_3"
                                      src="cid:part15.04060101.00080900@gmail.com"
                                      alt="Facebook" border="0"
                                      height="24" width="24"></span></a><a
                                  moz-do-not-send="true"
                                  href="http://e-deal.biz/kd/bTG"
                                  target="_blank" title="Innover la
                                  Relation Client"><span
                                    style="text-decoration:none"><img
                                      id="ecxImage_x0020_4"
                                      src="cid:part17.02040809.08030909@gmail.com"
                                      alt="RSS" border="0" height="24"
                                      width="24"></span></a><o:p></o:p></p>
                            </td>
                          </tr>
                          <tr>
                            <td colspan="2"
                              style="border:none;padding:0cm 0cm 0cm
                              0cm">
                              <p class="MsoNormal"
                                style="text-align:right" align="right"><b><span
                                    style="font-size:10.0pt;font-family:&quot;Lucida
                                    Sans ,
                                    sans-serif&quot;,&quot;serif&quot;">Adrien
                                    RUFFIE</span></b><span
                                  style="font-size:10.0pt;font-family:&quot;Lucida
                                  Sans ,
                                  sans-serif&quot;,&quot;serif&quot;"><br>
                                  <i>Ing&eacute;nieur R&amp;D</i> \
</span><o:p></o:p></p>  </td>
                          </tr>
                          <tr>
                            <td style="border:none;padding:.75pt 3.0pt
                              .75pt 3.0pt" valign="bottom">
                              <p class="MsoNormal"><span
                                  style="font-size:9.0pt;font-family:&quot;Lucida
                                  Sans ,
                                  sans-serif&quot;,&quot;serif&quot;">40,
                                  rue du Village d&#8217;Entreprises<br>
                                  31670 Lab&egrave;ge<br>
                                </span><span style="font-size:9.0pt"><a
                                    moz-do-not-send="true"
                                    href="http://www.e-deal.com/"
                                    target="_blank" title="Innover la
                                    Relation Client"><b><span
                                        \
style="color:#0C3183">www.e-deal.com</span></b></a></span>  <o:p></o:p></p>
                            </td>
                            <td style="border:none;padding:.75pt 3.0pt
                              .75pt 3.0pt" valign="bottom">
                              <p class="MsoNormal"
                                style="text-align:right" align="right"><span
                                  style="font-size:7.5pt;font-family:&quot;Lucida
                                  Sans ,
                                  sans-serif&quot;,&quot;serif&quot;">&nbsp;<br>
                                </span><span
                                  style="font-size:7.5pt;font-family:&quot;Lucida
                                  Sans ,
                                  sans-serif&quot;,&quot;serif&quot;"
                                  lang="EN-US">LD : +33 1 73 03 29 50<br>
                                  Std : +33 1 73 03 29 80<br>
                                  Fax : +33 1 73 01 69 77<br>
                                </span><b><span style="font-size:9.0pt"><a
                                      moz-do-not-send="true"
                                      href="mailto:a.ruffie@e-deal.com"><span
                                        lang="EN-US">a.ruffie@e-deal.com</span><span
                                        style="font-weight:normal"
                                        lang="EN-US"> \
</span></a></span></b><o:p></o:p></p>  </td>
                          </tr>
                        </tbody>
                      </table>
                      <p class="MsoNormal"><span
                          style="font-size:10.0pt;font-family:&quot;Lucida
                          Sans , sans-serif&quot;,&quot;serif&quot;"
                          lang="EN-US"><br>
                        </span><span style="font-size:8.0pt">E-DEAL
                          soutient le <a moz-do-not-send="true"
                            href="http://e-deal.biz/kd/mPQ"
                            target="_blank" title="e-mail"><span
                              style="color:#009900">Pacte Mondial de
                              l'ONU</span></a></span><o:p></o:p></p>
                      <p class="MsoNormal"><span
                          \
style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;">&nbsp;</span><o:p></o:p></p>
  </div>
                    <p class="MsoNormal"><span
                        \
                style="font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;"><br>
                        \
---------------------------------------------------------------------  To \
unsubscribe, e-mail: <a  moz-do-not-send="true"
                          \
href="mailto:fop-users-unsubscribe@xmlgraphics.apache.org">fop-users-unsubscribe@xmlgraphics.apache.org</a>
  For additional commands, e-mail: <a
                          moz-do-not-send="true"
                          \
href="mailto:fop-users-help@xmlgraphics.apache.org">fop-users-help@xmlgraphics.apache.org</a></span><o:p></o:p></p>
  </div>
                </div>
              </div>
            </div>
          </div>
        </blockquote>
        <p class="MsoNormal"><o:p>&nbsp;</o:p></p>
      </div>
    </blockquote>
    <br>
  </body>
</html>


[Attachment #6 (image/png)]
[Attachment #7 (image/png)]
[Attachment #8 (image/png)]
[Attachment #9 (image/png)]

[prev in list] [next in list] [prev in thread] [next in thread] 

Configure | About | News | Add a list | Sponsored by KoreLogic