You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fop-dev@xmlgraphics.apache.org by bu...@apache.org on 2003/04/03 00:20:53 UTC

DO NOT REPLY [Bug 18629] New: - when blocks are nested, the whole contents of the parent block is repeated several times

DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18629>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=18629

when blocks are nested, the whole contents of the parent block is repeated several times

           Summary: when blocks are nested, the whole contents of the parent
                    block is repeated several times
           Product: Fop
           Version: 0.20.5
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: pdf renderer
        AssignedTo: fop-dev@xml.apache.org
        ReportedBy: ckarras@capella.org


I use empty "<fo:block />" nested inside other blocks for line breaks. With 
previous versions of FOP, it worked fine, but with version 0.20.5-rc2, the 
contents of the whole block gets repeated on every line. For example:

<fo:block font-family="Helvetica">
  <fo:block>
    Line 1
    <fo:block/>
    Line 2
    <fo:block/>
    Line 3
  </fo:block>
</fo:block>

In previous FOP versions, this was rendered as
Line 1
Line 2
Line 3

However, in 0.25-rc2, it is rendered as
Line 1 Line 2 Line 3
Line 1 Line 2 Line 3
Line 1 Line 2 Line 3

---------------------------------------------------------------------
To unsubscribe, e-mail: fop-dev-unsubscribe@xml.apache.org
For additional commands, email: fop-dev-help@xml.apache.org