diff options
author | Glen Mazza <gmazza@apache.org> | 2004-08-25 05:03:08 +0000 |
---|---|---|
committer | Glen Mazza <gmazza@apache.org> | 2004-08-25 05:03:08 +0000 |
commit | bca058d18435025bf06fe5c828be82854f1f57b9 (patch) | |
tree | 3888deedcbb056a017a93b745d83b743b599d55d /examples | |
parent | eda42c18ad7dc3f9adef28693bfe0925d0af4e3d (diff) | |
download | xmlgraphics-fop-bca058d18435025bf06fe5c828be82854f1f57b9.tar.gz xmlgraphics-fop-bca058d18435025bf06fe5c828be82854f1f57b9.zip |
1. Implemented validateChildNode() for fo:simple-page-master. This may cause some stress with the user community--as any declared fo:region-xxxx children must follow a specific ordering.
2. Modified several of our sample and test FO files to be compliant with the XSL spec with respect to the change above.
3. @todo's added to FO's still missing validateChildNode()
4. New FONode missingPropertyError() method created, for the major cases where missing properties should halt processing.
5. Various cleanup in our layout-master-set and region classes, including the removal of error checks that are no longer needed due to validateChildNode() being implemented.
git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@197889 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'examples')
-rw-r--r-- | examples/fo/svg/embedding.fo | 2 | ||||
-rw-r--r-- | examples/fo/svg/external.fo | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/fo/svg/embedding.fo b/examples/fo/svg/embedding.fo index 4cd7b2bf7..4ecae2ae9 100644 --- a/examples/fo/svg/embedding.fo +++ b/examples/fo/svg/embedding.fo @@ -9,8 +9,8 @@ page-width="21cm" page-height="29.7cm" master-name="first"> - <fo:region-before extent="1cm"/> <fo:region-body margin-top="1cm"/> + <fo:region-before extent="1cm"/> <fo:region-after extent="1.5cm"/> </fo:simple-page-master> </fo:layout-master-set> diff --git a/examples/fo/svg/external.fo b/examples/fo/svg/external.fo index bd21cdddb..eaa76788c 100644 --- a/examples/fo/svg/external.fo +++ b/examples/fo/svg/external.fo @@ -8,8 +8,8 @@ margin-top="1cm" page-width="21cm" page-height="29.7cm"> - <fo:region-before extent="1cm"/> <fo:region-body margin-top="1cm"/> + <fo:region-before extent="1cm"/> <fo:region-after extent="1.5cm"/> </fo:simple-page-master> </fo:layout-master-set> |