]> source.dussan.org Git - xmlgraphics-fop.git/commitdiff
FOP-2498: Fix "last" page master usage with force-page-count=end-on-even/-odd
authorMatthias Reischenbacher <matthias@apache.org>
Mon, 13 Jul 2015 18:08:19 +0000 (18:08 +0000)
committerMatthias Reischenbacher <matthias@apache.org>
Mon, 13 Jul 2015 18:08:19 +0000 (18:08 +0000)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@1690781 13f79535-47bb-0310-9956-ffa450edef68

src/java/org/apache/fop/layoutmgr/PageSequenceLayoutManager.java
test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml [new file with mode: 0644]

index 7d84a91ffcec39906b8726dd5d2bfccf79229d99..2e2bd0a229a9b117a6a87b3c1b98a207ed3f7b4b 100644 (file)
@@ -225,14 +225,22 @@ public class PageSequenceLayoutManager extends AbstractPageSequenceLayoutManager
     protected int getForcedLastPageNum(final int lastPageNum) {
         int forcedLastPageNum = lastPageNum;
         int relativeLastPage = lastPageNum - startPageNum + 1;
-        if (relativeLastPage % 2 != 0
-                && (getPageSequence().getForcePageCount() ==  Constants.EN_EVEN
-                 || getPageSequence().getForcePageCount() ==  Constants.EN_END_ON_EVEN)) {
-            forcedLastPageNum++;
-        } else if (relativeLastPage % 2 == 0 && (
-                getPageSequence().getForcePageCount() ==  Constants.EN_ODD
-                ||  getPageSequence().getForcePageCount() ==  Constants.EN_END_ON_ODD)) {
-            forcedLastPageNum++;
+        if (getPageSequence().getForcePageCount() ==  Constants.EN_EVEN) {
+            if (relativeLastPage % 2 != 0) {
+                forcedLastPageNum++;
+            }
+        } else if (getPageSequence().getForcePageCount() ==  Constants.EN_ODD) {
+            if (relativeLastPage % 2 == 0) {
+                forcedLastPageNum++;
+            }
+        } else if (getPageSequence().getForcePageCount() ==  Constants.EN_END_ON_EVEN) {
+            if (lastPageNum % 2 != 0) {
+                forcedLastPageNum++;
+            }
+        } else if (getPageSequence().getForcePageCount() ==  Constants.EN_END_ON_ODD) {
+            if (lastPageNum % 2 == 0) {
+                forcedLastPageNum++;
+            }
         }
         return forcedLastPageNum;
     }
diff --git a/test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml b/test/layoutengine/standard-testcases/page-sequence-force-page-count-end-on-even.xml
new file mode 100644 (file)
index 0000000..42fa263
--- /dev/null
@@ -0,0 +1,77 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one or more
+  contributor license agreements.  See the NOTICE file distributed with
+  this work for additional information regarding copyright ownership.
+  The ASF licenses this file to You under the Apache License, Version 2.0
+  (the "License"); you may not use this file except in compliance with
+  the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing, software
+  distributed under the License is distributed on an "AS IS" BASIS,
+  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  See the License for the specific language governing permissions and
+  limitations under the License.
+-->
+<!-- $Id$ -->
+<testcase>
+  <info>
+    <p>
+      This checks that when force-page-count=end-on-even that the last simple-
+      page-master is used when a single page overflows to a second
+      page and the page count is forced to end-on-even.
+    </p>
+  </info>
+  <fo>
+<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
+    <fo:layout-master-set>
+        <fo:simple-page-master margin="2cm" master-name="last" page-height="297mm"
+        page-width="210mm">
+            <fo:region-body/>
+            <fo:region-after extent="22.5mm" region-name="after-last"/>
+        </fo:simple-page-master>
+        <fo:simple-page-master margin="2cm" master-name="any" page-height="297mm" 
+        page-width="210mm">
+            <fo:region-body/>
+        </fo:simple-page-master>
+        <fo:page-sequence-master master-name="master">
+            <fo:repeatable-page-master-alternatives>
+                <fo:conditional-page-master-reference master-reference="last" odd-or-even="any"
+                page-position="last"/>
+                <fo:conditional-page-master-reference master-reference="any" odd-or-even="any"
+                page-position="any"/>
+            </fo:repeatable-page-master-alternatives>
+        </fo:page-sequence-master>
+    </fo:layout-master-set>
+    <fo:page-sequence force-page-count="end-on-odd" master-reference="master">
+        <fo:static-content flow-name="after-last">
+            <fo:block-container background-color="rgb(209,211,212)" height="22.5mm">
+                <fo:block>Last-Page-3</fo:block>
+            </fo:block-container>
+        </fo:static-content>
+        <fo:flow flow-name="xsl-region-body">
+          <fo:block>Page 1</fo:block>
+          <fo:block break-before="page">Page 2</fo:block>
+        </fo:flow>
+    </fo:page-sequence>
+    <fo:page-sequence force-page-count="end-on-odd" master-reference="master">
+        <fo:static-content flow-name="after-last">
+            <fo:block-container background-color="rgb(209,211,212)" height="22.5mm">
+                <fo:block>Last-Page-5</fo:block>
+            </fo:block-container>
+        </fo:static-content>
+         <fo:flow flow-name="xsl-region-body">
+          <fo:block>Page-4</fo:block>
+        </fo:flow>
+    </fo:page-sequence>
+</fo:root>
+
+  </fo>
+  <checks>
+    <eval expected="Last-Page-3" xpath="(//pageViewport)[3]//regionAfter//word"/>
+               <eval expected="Last-Page-5" xpath="(//pageViewport)[5]//regionAfter//word"/>
+    <eval expected="5" xpath="count(//pageViewport)"/>
+  </checks>
+</testcase>