Browse Source

FOP-2311: revert changes from FOP-1069 that regresses shorthand property handling.

git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1538062 13f79535-47bb-0310-9956-ffa450edef68
tags/fop-2_0
Glenn Adams 10 years ago
parent
commit
6714301a9c
2 changed files with 5 additions and 1 deletions
  1. 2
    1
      src/java/org/apache/fop/fo/properties/GenericShorthandParser.java
  2. 3
    0
      status.xml

+ 2
- 1
src/java/org/apache/fop/fo/properties/GenericShorthandParser.java View File

@@ -88,7 +88,8 @@ public class GenericShorthandParser implements ShorthandParser {
while (iprop.hasNext() && prop == null) {
Property p = (Property)iprop.next();
prop = maker.convertShorthandProperty(propertyList, p, null);
propertyList.validatePropertyValue(p.getNCname(), prop, property);
// The following produces a regression, about which see FOP-2311.
// propertyList.validatePropertyValue(p.getNCname(), prop, property);
}
return prop;
}

+ 3
- 0
status.xml View File

@@ -59,6 +59,9 @@
documents. Example: the fix of marks layering will be such a case when it's done.
-->
<release version="FOP Trunk" date="01 November 2013">
<action context="Code" dev="GA" type="fix" fixes-bug="FOP-2311">
Eliminate regression to shorthand properties from Bugzilla 37114 (FOP-1069).
</action>
<action context="Renderers" dev="GA" type="add" fixes-bug="FOP-2301">
Enable support for PDF sub-page transitions.
</action>

Loading…
Cancel
Save