It's probably me...but since I installed 0.20.5rc2 my section headings have been repeating at the top and bottom of the block in the pdf. Here's a fragment of the xsl file, and a fragment of the xml it operates on.

Could someone better at fo tell me if it is my code or a change in fop?

xsl---------------
<xsl:template match="Section">
  <fo:block
          space-before="6pt"
          text-align="start"
          font-size="12pt"
          font-weight="bold" border=".2pt solid black">
    <xsl:value-of select="@id" />
    <fo:table table-layout="fixed" font-weight="normal">
      <fo:table-column column-width="40pt" />
      <fo:table-column column-width="30pt" />
      <fo:table-column column-width="200pt" />
      <fo:table-column column-width="250pt" />
      <fo:table-body>
        <xsl:apply-templates select="Item" />
      </fo:table-body>
    </fo:table>
  </fo:block>
</xsl:template>

xml-------------------
<Section id="Dwelling Condition">
        <Item id="lDCBldgPresent">
                <Label>Other Bldgs</Label>
                <Value>No</Value>
                <Score>0</Score>
        </Item>
        <Item id="lDCGaragePresent">
                <Label>Garage</Label>
                <Value>Yes</Value>
                <Score>0</Score>
        </Item>
</Section>

PDF output -----------
Dwelling Condition
0       Other Bldgs             No
0       Garage                  Yes
Dwelling Condition     <---- this line is new as of today.
-----------------------
Thanks

Roger,

Roger Roelofs                          Phone 616 574-0480 x246
Datacomp Appraisal Services            Fax   616 574-0486
3215 Eaglecrest Drive, NE  Suite 100   email [EMAIL PROTECTED]
Grand Rapids, MI  49525-4593           web   www.datacompusa.com


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



Reply via email to