I'm getting the following messages using fop-0.20.5rc3a:

[INFO] area contents overflows area in line Data1:
[INFO] area contents overflows area in line Data2:

This is the relevant xsl:

header:
<?xml version="1.0" encoding="UTF-8" ?>
 <xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform";
xmlns:fo="http://www.w3.org/1999/XSL/Format";>
 <xsl:template match="report">
 <fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format";>


Code which is generating the error messages:

- <fo:list-block font-size="12pt" font-weight="bold" line-height="16pt"
margin-left="8pt" margin-right="8pt" margin-bottom="8pt">
- <fo:list-item>
- <fo:list-item-label end-indent="label-end()">
- <fo:block text-align="left">
  Data1:
  <xsl:value-of select="Data1" />
  <fo:block />
  Data2:
  <xsl:value-of select="Data2" />
  </fo:block>
  </fo:list-item-label>
- <fo:list-item-body start-indent="body-start()">
- <fo:block text-align="right">
  Data3
  <xsl:value-of select="Data3" />
  <fo:block />
  Data 4
  <xsl:value-of select="Data4" />
  </fo:block>
  </fo:list-item-body>
  </fo:list-item>
  </fo:list-block>



What is happening in the pdf output is that carriage returns are being
inserted where they shouldn't be. I.e., instead of "one two three", I'm
getting

one
two
three

This worked fine in fop-0.20.4. If anybody has any ideas on how to fix
this, I'd appreciate it.

Thanks,

Clyde





---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to