Author: adelmelle
Date: Fri Jul 10 19:57:52 2009
New Revision: 793095

URL: http://svn.apache.org/viewvc?rev=793095&view=rev
Log:
Bugzilla 47508: Fix error while writing TLE's attribute qualifier in the 
output. Thanks to Bharat Attaluri.

Modified:
    
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java
    xmlgraphics/fop/trunk/status.xml

Modified: 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java?rev=793095&r1=793094&r2=793095&view=diff
==============================================================================
--- 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java 
(original)
+++ 
xmlgraphics/fop/trunk/src/java/org/apache/fop/afp/modca/TagLogicalElement.java 
Fri Jul 10 19:57:52 2009
@@ -64,7 +64,7 @@
 
     /**
      * Construct a tag logical element with the name and value specified.
-     * 
+     *
      * @param name the name of the tag logical element
      * @param value the value of the tag logical element
      * @param tleID unique identifier for TLE within AFP stream
@@ -135,7 +135,7 @@
             data[pos++] = tleByteValue[i];
         }
         // attribute qualifier
-        data[pos++] = 0x10;
+        data[pos++] = 0x0A;
         data[pos++] = (byte)0x80;
         byte[] id = BinaryUtils.convert(tleID, 4);
         for (int i = 0; i < id.length; i++) {

Modified: xmlgraphics/fop/trunk/status.xml
URL: 
http://svn.apache.org/viewvc/xmlgraphics/fop/trunk/status.xml?rev=793095&r1=793094&r2=793095&view=diff
==============================================================================
--- xmlgraphics/fop/trunk/status.xml (original)
+++ xmlgraphics/fop/trunk/status.xml Fri Jul 10 19:57:52 2009
@@ -58,6 +58,9 @@
       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="AD" type="fix" fixes-bug="47508" 
due-to="Bharat Attaluri">
+        Bugfix: Error while writing TLE's attribute qualifier in the output.
+      </action>
       <action context="Renderers" dev="CB" type="fix">
         Bugfix: support justified text in AFP Renderer (already working in AFP 
Painter)
       </action>



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to