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 Roges Grandi <ro...@intra.procergs.com.br> on 2000/10/16 19:52:03 UTC

fo:footnote

People

I tried to use fo:footnote with fop 0.14 and it didn't recognized the element.
Does anyone know if it is a bug?

Roges



Getting newest FOP working with Cocoon 1.8 -- what would it take?

Posted by Scott Jones <sc...@izio.com>.
Hello,

What would it take to get the most recent version of FOP working with Cocoon
1.8?  I know that Steve Coffman told me earlier on that:

> Yeah, FOP 0.14 and later don't work with Cocoon 1.x. "FOP 0.15CVS" does
work
> with Cocoon 2.0, also only available in CVS. Of course I'm running the
> latest and greatest. :)

Would this be possible?  I would really like to be able to take advantage of
new features like the "text-decoration that was just sent out by Christian
Geisert...  :)  Otherwise, I suppose that I may begin using Cocoon 2.0...

In addition, I'm getting some weird behavior with nested lists on FOP
0.13...  Just using the sample code in "extensive.fo" on FOP 0.13 I see that
the nested list's bullet points overlap the text for the bullet point
itself...   Is this because there is a mistake in the code (see below), or
perhaps was it a bug that has since been fixed?  (or does it still need
fixing?).

Thanks!

-Scott

Code from FOP 0.13 extensive.fo:
=======================
<fo:list-block provisional-distance-between-starts="12pt"
space-before.optimum="12pt">
        <fo:list-item>

<fo:list-item-label><fo:block>&#x2022;</fo:block></fo:list-item-label>
          <fo:list-item-body><fo:block>A block in a
list-item-body</fo:block></fo:list-item-body>
        </fo:list-item>
        <fo:list-item>

<fo:list-item-label><fo:block>&#x2022;</fo:block></fo:list-item-label>
          <fo:list-item-body>
            <fo:list-block provisional-distance-between-starts="12pt">
              <fo:list-item>

<fo:list-item-label><fo:block>&#x2022;</fo:block></fo:list-item-label>
                <fo:list-item-body><fo:block>This is a list item in a list
that is itself a list item</fo:block></fo:list-item-body>
              </fo:list-item>
            </fo:list-block>
          </fo:list-item-body>
        </fo:list-item>
      </fo:list-block>