Re: cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2005-01-17 Thread Jeremias Maerki
No problem. I stumbled upon it when I realized that I wasn't handling space-before|after correctly in in-flow block-containers. I'll see if I can do something about it. On 17.01.2005 20:17:35 Glen Mazza wrote: > Yes, I think that's my fault. I believe that was > related to the space-before and spa

Re: cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2005-01-17 Thread Glen Mazza
Yes, I think that's my fault. I believe that was related to the space-before and space-after properties which I was trying (unsuccessfully) to fix. This is a very complex portion of the code. Glen --- [EMAIL PROTECTED] wrote: > jeremias2005/01/17 10:59:50 > > Modified:src/java/org/ap

cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2003-12-30 Thread gmazza
gmazza 2003/12/30 15:11:00 Modified:src/java/org/apache/fop/layoutmgr BlockLayoutManager.java Log: Bug #25813 (Patch by Finn Bock): Calculation change in setBlockTextInfo(). Revision ChangesPath 1.11 +1 -1 xml-fop/src/java/org/apache/fop/layoutmgr/BlockLayout

Re: cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2003-11-11 Thread J.Pietschmann
Glen Mazza wrote: Also, just to make sure I understand clearly--when you say "force" I think you're referring to "conditionality" (retain/discard), Yes. IIRC, by default, space-after is discarded if it would be placed at the end of a reference area (something not properly done in 0.20.5). Thanks fo

Re: cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2003-11-11 Thread Glen Mazza
I don't think I wrote that clearly--our current implementation in BLM: (1) in addAreas(), adds empty blocks to represent space-before & space-after in one method, and (2) in getNextBreakPoss(), reduces the "stackSize" (BPD or "vertical" allowable writing area) to compensate for (1) above when g

Re: cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2003-11-11 Thread J.Pietschmann
[EMAIL PROTECTED] wrote: 2.) The space-after of a block ending at the bottom of the page is not currently being added to the beginning of the subsequent page. It shouldn't unless it is explicitely forced. J.Pietschmann

cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java

2003-11-11 Thread gmazza
gmazza 2003/11/11 05:50:00 Modified:src/java/org/apache/fop/layoutmgr BlockLayoutManager.java Log: Partial implementation of space-after functionality--mostly working, but some remaining problems: 1.) relying on a static variable to carry space-after value from previous blo

cvs commit: xml-fop/src/java/org/apache/fop/layoutmgr BlockLayoutManager.java BlockStackingLayoutManager.java

2003-11-10 Thread gmazza
gmazza 2003/11/10 20:40:12 Modified:src/java/org/apache/fop/layoutmgr BlockLayoutManager.java BlockStackingLayoutManager.java Log: fo:block space-before property now activated only on the first Area.Block object used in rendering the fo:block. (Previous im