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 je...@apache.org on 2005/08/10 08:49:44 UTC

svn commit: r231178 - /xmlgraphics/fop/branches/inlineblock/src/java/org/apache/fop/render/xml/XMLRenderer.java

Author: jeremias
Date: Tue Aug  9 23:49:41 2005
New Revision: 231178

URL: http://svn.apache.org/viewcvs?rev=231178&view=rev
Log:
area size traits for text and inlineparent areas.

Modified:
    xmlgraphics/fop/branches/inlineblock/src/java/org/apache/fop/render/xml/XMLRenderer.java

Modified: xmlgraphics/fop/branches/inlineblock/src/java/org/apache/fop/render/xml/XMLRenderer.java
URL: http://svn.apache.org/viewcvs/xmlgraphics/fop/branches/inlineblock/src/java/org/apache/fop/render/xml/XMLRenderer.java?rev=231178&r1=231177&r2=231178&view=diff
==============================================================================
--- xmlgraphics/fop/branches/inlineblock/src/java/org/apache/fop/render/xml/XMLRenderer.java (original)
+++ xmlgraphics/fop/branches/inlineblock/src/java/org/apache/fop/render/xml/XMLRenderer.java Tue Aug  9 23:49:41 2005
@@ -604,6 +604,7 @@
             addAttribute("tlsadjust", text.getTextLetterSpaceAdjust());
         }
         addAttribute("vpos", text.getOffset());
+        addAreaAttributes(text);
         addTraitAttributes(text);
         startElement("text", atts);
         characters(text.getTextArea());
@@ -616,6 +617,7 @@
      */
     protected void renderInlineParent(InlineParent ip) {
         atts.clear();
+        addAreaAttributes(ip);
         addTraitAttributes(ip);
         startElement("inlineparent", atts);
         super.renderInlineParent(ip);



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