aboutsummaryrefslogtreecommitdiffstats
path: root/src/java/org/apache/fop
diff options
context:
space:
mode:
authorAndreas L. Delmelle <adelmelle@apache.org>2006-02-16 09:11:43 +0000
committerAndreas L. Delmelle <adelmelle@apache.org>2006-02-16 09:11:43 +0000
commit6f740e614aeefd7c895163e426d32440f41ec498 (patch)
tree09473c22e6e231ad2a941b342c23c8c79bb34df7 /src/java/org/apache/fop
parent9d382c1d90116ce27917af5020608be1225e3f8b (diff)
downloadxmlgraphics-fop-6f740e614aeefd7c895163e426d32440f41ec498.tar.gz
xmlgraphics-fop-6f740e614aeefd7c895163e426d32440f41ec498.zip
Trivial update:
Change the wording of a few attributeWarnings -- properties aren't ignored (possible inheritance, property value function calls...) see: http://marc.theaimsgroup.com/?l=fop-dev&m=114001378911300&w=2 git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@378206 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/java/org/apache/fop')
-rw-r--r--src/java/org/apache/fop/fo/flow/TableFObj.java11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/java/org/apache/fop/fo/flow/TableFObj.java b/src/java/org/apache/fop/fo/flow/TableFObj.java
index 560b008cb..729d5a5c2 100644
--- a/src/java/org/apache/fop/fo/flow/TableFObj.java
+++ b/src/java/org/apache/fop/fo/flow/TableFObj.java
@@ -1,5 +1,5 @@
/*
- * Copyright 2005 The Apache Software Foundation.
+ * Copyright 2005-2006 The Apache Software Foundation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -82,16 +82,15 @@ public abstract class TableFObj extends FObj {
&& getTable().isSeparateBorderModel()
&& getCommonBorderPaddingBackground().hasBorderInfo()) {
attributeWarning("In the separate border model (border-collapse=\"separate\")"
- + ", borders cannot be specified on a " + getName()
- + ", but a non-zero value for border was found. The border will be ignored. ");
+ + ", borders are not applicable to " + getName()
+ + ", but a non-zero value for border was found.");
}
if (getNameId() != FO_TABLE //Separate check for fo:table in Table.java
&& getNameId() != FO_TABLE_CELL
&& getCommonBorderPaddingBackground().hasPadding(
ValidationPercentBaseContext.getPseudoContextForValidationPurposes())) {
- attributeWarning(getName() + " does not have padding"
- + " (see the property list for " + getName() + " in XSL 1.0)"
- + ", but a non-zero value for padding was found. The padding will be ignored.");
+ attributeWarning("padding-* properties are not applicable to " + getName()
+ + ", but a non-zero value for padding was found.");
}
}