diff options
author | Glen Mazza <gmazza@apache.org> | 2004-08-13 00:03:49 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-08-13 00:03:49 +0000 |
commit | c3b3f698406cac5c801bff65a6cb3b4e7ef04753 (patch) | |
tree | 09bb0388f789a65bea17d4984ab98d162a739ace /examples/fo | |
parent | 89db98aa88db50f99cc106202e43d9c4ff73f180 (diff) | |
download | xmlgraphics-fop-c3b3f698406cac5c801bff65a6cb3b4e7ef04753.tar.gz xmlgraphics-fop-c3b3f698406cac5c801bff65a6cb3b4e7ef04753.zip |
1.) Layout initialization logic for fo:table, fo:table-header, and fo:table-footer
moved from AddLMVisitor to fo.Table.
2.) Layout logic for fo:external-graphic moved from fo.ExternalGraphic to
layoutmgr.ExternalGraphicLayoutManager.
3.) Partial implementation of validateChildNode() for fo:footnote.
4.) fox:destination commented out from images.fo sample until purpose, content
model better defined. Also needs a Maker class. (Does not appear to work
in either maintenance or HEAD.)
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197867 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'examples/fo')
-rw-r--r-- | examples/fo/basic/images.fo | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/examples/fo/basic/images.fo b/examples/fo/basic/images.fo index 72529dddb..12db1237f 100644 --- a/examples/fo/basic/images.fo +++ b/examples/fo/basic/images.fo @@ -48,35 +48,35 @@ <fo:flow flow-name="xsl-region-body"> <fo:block font-size="18pt" font-weight="bold">1. FOP test for images</fo:block> <fo:block id="N2531"> - <fox:destination internal-destination="N2531"/> + <!--fox:destination internal-destination="N2531"/--> <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A GIF image in FOP</fo:block> <fo:block> <fo:external-graphic src="file:../graphics/xml_feather.gif"/> </fo:block> </fo:block> <fo:block id="N2535"> - <fox:destination internal-destination="N2535"/> + <!--fox:destination internal-destination="N2535"/--> <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A transparent GIF image in FOP</fo:block> <fo:block> <fo:external-graphic src="file:../graphics/xml_feather_transparent.gif"/> </fo:block> </fo:block> <fo:block id="N2545"> - <fox:destination internal-destination="N2545"/> + <!--fox:destination internal-destination="N2545"/--> <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A JPEG image in FOP</fo:block> <fo:block> <fo:external-graphic src="file:../graphics/fop.jpg"/> </fo:block> </fo:block> <fo:block id="N2550"> - <fox:destination internal-destination="N2550"/> + <!--fox:destination internal-destination="N2550"/--> <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em">A BMP image in FOP</fo:block> <fo:block> <fo:external-graphic src="file:../graphics/linux.bmp"/> </fo:block> </fo:block> <fo:block id="N2559"> - <fox:destination internal-destination="N2559"/> + <!--fox:destination internal-destination="N2559"/--> <fo:block font-size="16pt" font-weight="bold" space-before.minimum="1em" space-before.optimum="1.5em" space-before.maximum="2em"/> This section is only required to show that the layout still works. </fo:block> @@ -94,7 +94,7 @@ <fo:flow flow-name="xsl-region-body"> <fo:block id="AppendixA" font-size="18pt" font-weight="bold">A. Appendix</fo:block> - <fox:destination internal-destination="AppendixA"/> + <!--fox:destination internal-destination="AppendixA"/--> </fo:flow> </fo:page-sequence> |