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/11/19 10:16:30 UTC

DO NOT REPLY [Bug 24816] New: - Generate .TXT files with FOP - a posible solutions?

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=24816>.
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=24816

Generate .TXT files with FOP - a posible solutions?

           Summary: Generate .TXT files with FOP - a posible solutions?
           Product: Fop
           Version: 0.20.5
          Platform: All
        OS/Version: Other
            Status: NEW
          Severity: Major
          Priority: Other
         Component: general
        AssignedTo: fop-dev@xml.apache.org
        ReportedBy: florin.neagoe@gefco.fr
                CC: j3322ptm@yahoo.de


Hello,
I use FOP v 0.20.5 in command line.
I writed an BUG (BUG no 24791) and here is your answer. I have a questions: It 
is posible to make a table with a column, and in every cell of every row to met 
a <fo:block>. EX:

<fo:table> 
   <fo:table-column column-width="200mm"/>
      <fo:table-body>
	<fo:table-row>
          <fo:table-cell>
              <fo:block><xsl:value-of select = "...." /></fo:block> 
          </fo:table-cell>
        </fo:table-row>
	<fo:table-row>
          <fo:table-cell>
              <fo:block><xsl:value-of select = "...." /></fo:block> 
          </fo:table-cell>
        </fo:table-row>
.
.
.
.
.
etc
.
.
.

  </fo:table-body>
</fo:table>  

------- Additional Comments From j3322ptm@yahoo.de  2003-11-18 22:18 -------
It's not a bug, it's a feature.
Even if you output text, layout is done like for every other format. THe
TXT renderer then puts the laid out content on a coarse grid determined by
the characters-per-line and line-per-page parameters. It may happen that
lines fall on top of each other.