AW: svn commit: r372916 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java

2006-01-29 Thread Peter Herweg
 Right now, it works, and it enhances our RTF output, so there's no  
 need to revert, but I'm wondering if there isn't an alternative  
 solution that would look/feel better.

Yes, but it does not work very good. There is no exception anymore, but
column width are not calculated correctly.
I would not mind to remove usage of TableLayoutManager and simply
pass a SimplePercentBaseContext with base length always being 0, until
we find a better solution.

Kind regards,
Peter Herweg

-Ursprungliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]
Auftrag von Andreas L Delmelle
Gesendet: Freitag, 27. Januar 2006 18:28
An: fop-dev@xmlgraphics.apache.org
Betreff: Re: svn commit: r372916 -
/xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.jav
a


On Jan 27, 2006, at 18:10, [EMAIL PROTECTED] wrote:

Hi Peter and others,

I really don't mean to be a pest, but this somehow doesn't feel  
right. I just wonder if any of you share the same concern, or can  
offer me some solid justification...

Although I do see the necessity of it to make percentage values work  
right, it seems a bit hybrid (if you catch the drift) to bypass the  
whole layoutengine for RTF output on the one hand, and on the other  
hand import classes from the layoutmgr package into the RTFHandler.

Right now, it works, and it enhances our RTF output, so there's no  
need to revert, but I'm wondering if there isn't an alternative  
solution that would look/feel better.

Any thoughts?

Cheers,

Andreas

 Author: pherweg
 Date: Fri Jan 27 09:10:31 2006
 New Revision: 372916

 URL: http://svn.apache.org/viewcvs?rev=372916view=rev
 Log:
 RTF: testcase 'tableunits.fo' failed because there was no  
 PercentBaseContext passed.

 Modified:
 xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
 RTFHandler.java

 Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
 RTFHandler.java
 URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/ 
 org/apache/fop/render/rtf/RTFHandler.java? 
 rev=372916r1=372915r2=372916view=diff
 == 
 
 --- xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
 RTFHandler.java (original)
 +++ xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
 RTFHandler.java Fri Jan 27 09:10:31 2006
 @@ -63,6 +63,8 @@
  import org.apache.fop.fo.pagination.StaticContent;
  import org.apache.fop.fo.Constants;
  import org.apache.fop.fo.FOText;
 +import org.apache.fop.layoutmgr.table.TableContentLayoutManager;
 +import org.apache.fop.layoutmgr.table.TableLayoutManager;



Re: svn commit: r372916 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java

2006-01-27 Thread Andreas L Delmelle

On Jan 27, 2006, at 18:10, [EMAIL PROTECTED] wrote:

Hi Peter and others,

I really don't mean to be a pest, but this somehow doesn't feel  
right. I just wonder if any of you share the same concern, or can  
offer me some solid justification...


Although I do see the necessity of it to make percentage values work  
right, it seems a bit hybrid (if you catch the drift) to bypass the  
whole layoutengine for RTF output on the one hand, and on the other  
hand import classes from the layoutmgr package into the RTFHandler.


Right now, it works, and it enhances our RTF output, so there's no  
need to revert, but I'm wondering if there isn't an alternative  
solution that would look/feel better.


Any thoughts?

Cheers,

Andreas


Author: pherweg
Date: Fri Jan 27 09:10:31 2006
New Revision: 372916

URL: http://svn.apache.org/viewcvs?rev=372916view=rev
Log:
RTF: testcase 'tableunits.fo' failed because there was no  
PercentBaseContext passed.


Modified:
xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
RTFHandler.java


Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
RTFHandler.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/ 
org/apache/fop/render/rtf/RTFHandler.java? 
rev=372916r1=372915r2=372916view=diff
== 

--- xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
RTFHandler.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/ 
RTFHandler.java Fri Jan 27 09:10:31 2006

@@ -63,6 +63,8 @@
 import org.apache.fop.fo.pagination.StaticContent;
 import org.apache.fop.fo.Constants;
 import org.apache.fop.fo.FOText;
+import org.apache.fop.layoutmgr.table.TableContentLayoutManager;
+import org.apache.fop.layoutmgr.table.TableLayoutManager;




Re: svn commit: r372916 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java

2006-01-27 Thread Andreas L Delmelle

On Jan 27, 2006, at 18:28, Andreas L Delmelle wrote:



Right now, it works, and it enhances our RTF output, so there's no  
need to revert, but I'm wondering if there isn't an alternative  
solution that would look/feel better.


Since I started this...

I'm thinking in the direction of using the PercentBaseContext  
interface here, instead of the layoutmgr specific classes that  
implement it. IOW: approach the percentage resolution as something  
that is shared between structural and non-structural renderers,  
instead of the non-structural renderer borrowing functionality from  
the structural one.


Does this make sense?

Cheers,

Andreas



Re: svn commit: r372916 - /xmlgraphics/fop/trunk/src/java/org/apache/fop/render/rtf/RTFHandler.java

2006-01-27 Thread Simon Pepping
On Fri, Jan 27, 2006 at 06:56:21PM +0100, Andreas L Delmelle wrote:
 On Jan 27, 2006, at 18:28, Andreas L Delmelle wrote:
 
 
 Right now, it works, and it enhances our RTF output, so there's no  
 need to revert, but I'm wondering if there isn't an alternative  
 solution that would look/feel better.
 
 Since I started this...
 
 I'm thinking in the direction of using the PercentBaseContext  
 interface here, instead of the layoutmgr specific classes that  
 implement it. IOW: approach the percentage resolution as something  
 that is shared between structural and non-structural renderers,  
 instead of the non-structural renderer borrowing functionality from  
 the structural one.
 
 Does this make sense?

I share your objections against the mixing of packages.

Regards, Simon

-- 
Simon Pepping
home page: http://www.leverkruid.nl