diff options
author | Jeremias Maerki <jeremias@apache.org> | 2005-12-05 14:05:16 +0000 |
---|---|---|
committer | Jeremias Maerki <jeremias@apache.org> | 2005-12-05 14:05:16 +0000 |
commit | d8c4ed8c1be7deaf31bb2b184458599706c3522e (patch) | |
tree | e7f17aab12b1e46dec122a1eb6f7fe77133b99f9 | |
parent | 6c11d32f9f0fadba27ba8ae1a0bb5c4744cb847b (diff) | |
download | xmlgraphics-fop-d8c4ed8c1be7deaf31bb2b184458599706c3522e.tar.gz xmlgraphics-fop-d8c4ed8c1be7deaf31bb2b184458599706c3522e.zip |
The border-collapse property on fo:table is now forced to the value "separate" until the collapsing border has been implemented.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@354075 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | src/java/org/apache/fop/fo/flow/Table.java | 7 | ||||
-rw-r--r-- | status.xml | 4 |
2 files changed, 9 insertions, 2 deletions
diff --git a/src/java/org/apache/fop/fo/flow/Table.java b/src/java/org/apache/fop/fo/flow/Table.java index ee24dfd51..037316f5c 100644 --- a/src/java/org/apache/fop/fo/flow/Table.java +++ b/src/java/org/apache/fop/fo/flow/Table.java @@ -129,8 +129,11 @@ public class Table extends TableFObj { 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"); diff --git a/status.xml b/status.xml index ae285e105..3a82a8bb7 100644 --- a/status.xml +++ b/status.xml @@ -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 |