You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-commits@xmlgraphics.apache.org by je...@apache.org on 2005/12/05 15:05:23 UTC

svn commit: r354075 - in /xmlgraphics/fop/trunk: src/java/org/apache/fop/fo/flow/Table.java status.xml

Author: jeremias
Date: Mon Dec  5 06:05:16 2005
New Revision: 354075

URL: http://svn.apache.org/viewcvs?rev=354075&view=rev
Log:
The border-collapse property on fo:table is now forced to the value "separate" until the collapsing border has been implemented.

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/Table.java
    xmlgraphics/fop/trunk/status.xml

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/Table.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/Table.java?rev=354075&r1=354074&r2=354075&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/Table.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/fo/flow/Table.java Mon Dec  5 06:05:16 2005
@@ -129,8 +129,11 @@
         defaultColumn.bind(colPList);
 
         if (borderCollapse != EN_SEPARATE) {
-            attributeWarning("The collapsing border model on an fo:table "
-                    + "is currently not supported by FOP");
+            //TODO Remove once the collapsing border is at least marginally working.
+            borderCollapse = EN_SEPARATE;
+            log.debug("A table has been forced to use the separate border model"
+                    + " (border-collapse=\"separate\") as the collapsing border model"
+                    + " is not implemented, yet.");
         }
         if (tableLayout == EN_AUTO) {
             attributeWarning("table-layout=\"auto\" is currently not supported by FOP");

Modified: xmlgraphics/fop/trunk/status.xml
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/trunk/status.xml?rev=354075&r1=354074&r2=354075&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/status.xml (original)
+++ xmlgraphics/fop/trunk/status.xml Mon Dec  5 06:05:16 2005
@@ -27,6 +27,10 @@
 
   <changes>
     <release version="FOP Trunk">
+      <action context="Code" dev="JM" type="update">
+        The border-collapse property on fo:table is now forced to the value "separate" until the collapsing
+        border has been implemented.
+      </action>
       <action context="Code" dev="JM" type="add">
         font-family list still not fully supported but a comma-separated list is now properly tokenized.
         FOP will now go through all fonts in the list to find one that is available, but it doesn't 



---------------------------------------------------------------------
To unsubscribe, e-mail: fop-commits-unsubscribe@xmlgraphics.apache.org
For additional commands, e-mail: fop-commits-help@xmlgraphics.apache.org