You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-users@xmlgraphics.apache.org by ALI <ac...@yahoo.fr> on 2011/02/09 18:31:21 UTC

Re: How to tell line# in input file that is generating error

 Hi Steve

I found a solution to your problem.
En fact in demo/fo/cfg/fo/attrs/commons-attr.xsl file the <p> properites are 
bad :
        <xsl:attribute name="space-after">0.6em</xsl:attribute>
        <xsl:attribute name="space-after.optimum">3pt</xsl:attribute>
space-after == space-after.minimum.... so there are two incompatible values

I try 
        <xsl:attribute name="space-after">0.6em</xsl:attribute>
        <xsl:attribute name="space-after.optimum">0.6em</xsl:attribute>
which may succeed.

Enjoy


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-help@xmlgraphics.apache.org


Re: How to tell line# in input file that is generating error

Posted by daveg <gr...@gmail.com>.
This solution worked for me.

I was staring at those attributes in the commons-attr.xsl file wondering if, and 
what, id have to do to these attributes to fix the problem, then I found your 
reply! thanks a lot! I've had to sort out reams of errors and this was the last 
one so thanks again.

Dave


---------------------------------------------------------------------
To unsubscribe, e-mail: fop-users-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-users-help@xmlgraphics.apache.org