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 cb...@apache.org on 2010/01/07 13:08:28 UTC

svn commit: r896856 - in /xmlgraphics/fop/trunk: src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java status.xml

Author: cbowditch
Date: Thu Jan  7 12:07:23 2010
New Revision: 896856

URL: http://svn.apache.org/viewvc?rev=896856&view=rev
Log:
Bugzilla #48376:
Bugfix in AFP output: Page Overlay not generated when using IF
Submitted by: Venkat Reddy <dvanukuri.venkat.at.googlemail.com>

Modified:
    xmlgraphics/fop/trunk/src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java
    xmlgraphics/fop/trunk/status.xml

Modified: xmlgraphics/fop/trunk/src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java?rev=896856&r1=896855&r2=896856&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java (original)
+++ xmlgraphics/fop/trunk/src/java/org/apache/fop/render/afp/extensions/AFPExtensionHandler.java Thu Jan  7 12:07:23 2010
@@ -90,6 +90,12 @@
                     throw new SAXException("Invalid URI: " + src, e);
                 }
                 this.returnedObject = formMap;
+            } else if (AFPElementMapping.INCLUDE_PAGE_OVERLAY.equals(localName)) {
+                this.returnedObject = new AFPPageOverlay();
+                String name = lastAttributes.getValue("name");
+                if (name != null) {
+                    returnedObject.setName(name);
+                }
             } else {
                 AFPPageSetup pageSetupExtn = null;
                 if (AFPElementMapping.INVOKE_MEDIUM_MAP.equals(localName)) {

Modified: xmlgraphics/fop/trunk/status.xml
URL: http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/status.xml?rev=896856&r1=896855&r2=896856&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/status.xml (original)
+++ xmlgraphics/fop/trunk/status.xml Thu Jan  7 12:07:23 2010
@@ -58,7 +58,10 @@
       documents. Example: the fix of marks layering will be such a case when it's done.
     -->
     <release version="FOP Trunk" date="TBD">
-      <action context="Renderers" dev="CB" type="fix" fixes-bug="48456">
+      <action context="Renderers" dev="CB" type="fix" fixes-bug="48376" due-to="Venkat Reddy">
+        Bugfix: AFP Renderer: Page Overlays not generated when using Intermediate Format
+      </action>	  
+	  <action context="Renderers" dev="CB" type="fix" fixes-bug="48456">
         Bugfix: AFP Renderer: Underline is incorrectly placed when reference-orientation != 0
       </action>
       <action context="Renderers" dev="CB" type="fix" fixes-bug="48453">



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