Re: Nightly builds requested

2010-08-30 Thread Simon Pepping
A test run of a nightly build was made with ant, default target. It failed in the junit tests. The stdout log is here: http://ci.apache.org/builders/fop-trunk/builds/0/steps/compile/logs/stdio. The errors seem to be solely due to the headless configuration. I want the target 'dist-bin' to be run,

DO NOT REPLY [Bug 49842] New: 1.0: not all events redirected

2010-08-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49842 Summary: 1.0: not all events redirected Product: Fop Version: 1.0 Platform: PC OS/Version: Windows XP Status: NEW Severity: normal Priority: P2 Compo

DO NOT REPLY [Bug 46048] Wrong images used (how to clear image cache?)

2010-08-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=46048 --- Comment #34 from M.H. 2010-08-30 05:28:09 EDT --- So, FOP 1.0 is out. I would like to test if the new URI handling in FOP 1.0 solves this issue. However, due to the randomness of this bug, I wonder how I can really test this and not jus

upcoming change to IFPainter.drawText()

2010-08-30 Thread Glenn Adams
Folks, I'd like to mention a change I will implement on IFPainter#drawText method in order to accommodate complex scripts (as well as non-complex script usage in a variety of written languages). I'm bringing this up now so there can be discussion ahead of time if needed. Basically, the change is

DO NOT REPLY [Bug 49801] Region-Body Column balancing incorrect if content is table with header

2010-08-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49801 Jeremias Maerki changed: What|Removed |Added OS/Version||All --- Comment #2 from Jeremias

DO NOT REPLY [Bug 49827] integration of barcode in fop 1.0

2010-08-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49827 Jeremias Maerki changed: What|Removed |Added Status|NEW |RESOLVED Resolution|

Re: upcoming change to IFPainter.drawText()

2010-08-30 Thread Glenn Adams
Perhaps it is useful to indicate how the existing dx[] adjustments map into the more generalized gpos[][] adjustments. Given a dx[] array or a gpos[][] array or neither, they are reconciled as follows: int[][] reconcileAdjustments(int[] dx, int[][] gpos) { if ( dx == null ) { return gpos;

Re: upcoming change to IFPainter.drawText()

2010-08-30 Thread Glenn Adams
Oops, that code snippet should read: int[][] reconcileAdjustments(int[] dx, int[][] gpos) { if ( dx == null ) { return gpos; } else { if ( gpos == null ) { gpos = new int[dx.length][4]; } for ( int i = 0; i < dx.length; i++ ) { int d = dx[i]; if ( *d* != 0 ) {

DO NOT REPLY [Bug 49848] New: keep-together.within-line="always" does not work with nested fo:inline

2010-08-30 Thread bugzilla
https://issues.apache.org/bugzilla/show_bug.cgi?id=49848 Summary: keep-together.within-line="always" does not work with nested fo:inline Product: Fop Version: 0.95 Platform: PC OS/Version: Linux Status: NEW