DO NOT REPLY [Bug 44434] FO java Memory Error

2012-04-04 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434

Glenn Adams gl...@skynav.com changed:

   What|Removed |Added

 Status|NEW |RESOLVED
 Resolution||DUPLICATE

--- Comment #11 from Glenn Adams gl...@skynav.com 2012-04-04 22:13:17 UTC ---


*** This bug has been marked as a duplicate of bug 1063 ***

-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-14 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #10 from Andreas L. Delmelle [EMAIL PROTECTED]  2008-03-14 
11:26:16 PST ---

FWIW: Nathan just confirmed to me off-list that a slightly tweaked version of
the original stylesheet, using preserved linefeeds instead of nested blocks,
renders fine with FOP 0.94 and does not cause memory issues with default heap
settings.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-13 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #8 from Yoganathan Kaliyaperumal [EMAIL PROTECTED]  2008-03-13 
11:27:23 PST ---
Can anyone suggest me what do i need to do in order to print the multi-records
in seperate lines within a table-cell?

Thanks,
Nathan


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-13 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #9 from Yoganathan Kaliyaperumal [EMAIL PROTECTED]  2008-03-13 
12:39:07 PST ---
Created an attachment (id=21664)
 -- (https://issues.apache.org/bugzilla/attachment.cgi?id=21664)
xmlandxsl

I've attached the zip file. Please review it and let me know.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-10 Thread bugzilla
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#x0A;/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.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #4 from Yoganathan Kaliyaperumal [EMAIL PROTECTED]  2008-03-10 
11:41:12 PST ---
Your solution didn't give any memory error. Thank you so much. But all the
records in 3rd column are wrapped in single line as follows:

column1   column2  column3
 comp1comp1 strat  From: 30/09/1990 Standard  Poor's 500 Index

But i want the record to be displayed in multi-line as below.

column1   column2  column3
comp1  comp1 strat From: 30/09/1990 
   Standard  Poor's 500 Index

Can you suggest something which can display the records in multi-line.

Thanks,
Nathan






-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #5 from Andreas L. Delmelle [EMAIL PROTECTED]  2008-03-10 
11:51:28 PST ---
(In reply to comment #4)
 Your solution didn't give any memory error. Thank you so much. But all the
 records in 3rd column are wrapped in single line as follows:
 
 column1   column2  column3
  comp1comp1 strat  From: 30/09/1990 Standard  Poor's 500 Index
 
 But i want the record to be displayed in multi-line as below.
 
 column1   column2  column3
 comp1  comp1 strat From: 30/09/1990 
Standard  Poor's 500 Index
 
 Can you suggest something which can display the records in multi-line.

That's what the linefeed character (#x0A;) is for. That should work, unless...
Do you have a keep-together or keep-with-next/-previous specified on the rows
or the table. In that case, you probably want to change this to an explicit
keep-together.within-page, keep-with-previous.within-page. If the component
'within-page' is not explicitly used, then keep-together also means
keep-together.within-line, which overrides preserved linefeeds.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #6 from Andreas L. Delmelle [EMAIL PROTECTED]  2008-03-10 
11:54:10 PST ---
(In reply to comment #5)
 
 That's what the linefeed character (#x0A;) is for. That should work, 
 unless...

Just noticed that I did not yet ask: which FOP version?
linefeed-treatment=preserve does not work in FOP 0.20.5. In case you're still
using that version, it's time to upgrade...


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] FO java Memory Error

2008-03-10 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Comment #7 from Yoganathan Kaliyaperumal [EMAIL PROTECTED]  2008-03-10 
11:56:10 PST ---
I'm using FOP 0.14 version fo xalan commandline.


-- 
Configure bugmail: https://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug.


DO NOT REPLY [Bug 44434] - FO java Memory Error

2008-02-15 Thread bugzilla
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
http://issues.apache.org/bugzilla/show_bug.cgi?id=44434.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=44434





--- Additional Comments From [EMAIL PROTECTED]  2008-02-15 14:36 ---
First: FOP 0.14 is ancient, you are advised to update to a more recent release,
even if though it probably causes much pain due to adapting to the standard.

Second: The hints here 
http://xmlgraphics.apache.org/fop/0.94/running.html#memory
also apply.

Third: if the problem persists for the latest FOP release and further fine
tuning, you'll need to provide more details about your task and your
environment, preferably including the FO file causing the memory overflow.

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
--- You are receiving this mail because: ---
You are the assignee for the bug, or are watching the assignee.