https://issues.apache.org/bugzilla/show_bug.cgi?id=44434
--- Comment #3 from Andreas L. Delmelle <[EMAIL PROTECTED]> 2008-03-10
11:22:37 PST ---
(In reply to comment #2)
> I've increased the java heap size but still i'm getting memory error. I'm
> pasting the XML and fo file here. Please let me know what is the problem
<snip />
> <fo:table-cell padding-top="3mm" padding-left="1cm">
> <fo:block>
> <xsl:for-each select="benchmark">
> <xsl:for-each select="LINE">
> <fo:block>
> <xsl:value-of select="."/>
> </fo:block>
> </xsl:for-each>
> </xsl:for-each>
Try:
<fo:table-cell...>
<fo:block linefeed-treatment="preserve">
<xsl:for-each select="benchmark">
<xsl:for-each select="LINE">
<xsl:value-of select="."/>
<xsl:text>
</xsl:text>
</xsl:for-each>
</xsl:for-each>
Please let us know if this alleviates the problem. I suspect so, but I'm not
100% certain.
Thanks!
--
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.