Author: jeremias
Date: Thu Apr 16 09:11:21 2009
New Revision: 765526
URL: http://svn.apache.org/viewvc?rev=765526&view=rev
Log:
Bugfix for navigation elements when parsing intermediate content.
Modified:
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/render/intermediate/IFSerializer.java
Modified:
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/render/intermediate/IFSerializer.java
URL:
http://svn.apache.org/viewvc/xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/render/intermediate/IFSerializer.java?rev=765526&r1=765525&r2=765526&view=diff
==============================================================================
---
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/render/intermediate/IFSerializer.java
(original)
+++
xmlgraphics/fop/branches/Temp_Accessibility/src/java/org/apache/fop/render/intermediate/IFSerializer.java
Thu Apr 16 09:11:21 2009
@@ -366,7 +366,6 @@
public void startPageTrailer() throws IFException {
try {
handler.startElement(EL_PAGE_TRAILER);
- commitNavigation();
} catch (SAXException e) {
throw new IFException("SAX error in startPageTrailer()", e);
}
@@ -375,6 +374,7 @@
/** {...@inheritdoc} */
public void endPageTrailer() throws IFException {
try {
+ commitNavigation();
handler.endElement(EL_PAGE_TRAILER);
} catch (SAXException e) {
throw new IFException("SAX error in endPageTrailer()", e);
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]