fop/test/xml/bugtests/header_footer.fo
Glen Mazza db67408851 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
2004-08-25 05:03:08 +00:00

138 lines
6.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<fo:root xmlns:fo="http://www.w3.org/1999/XSL/Format">
<fo:layout-master-set>
<fo:simple-page-master master-name="simplePM"
page-height="25cm"
page-width="18cm"
margin-top="1cm"
margin-bottom="1cm"
margin-left="1.5cm"
margin-right="1.5cm">
<fo:region-body margin-top="4cm" margin-bottom="3cm"/>
<fo:region-before extent="3cm"/>
<fo:region-after extent="3cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="simplePM">
<!-- header -->
<fo:static-content flow-name="xsl-region-before">
<fo:block-container width="5cm" height="3cm" position="absolute" background-color="#22CC55">
<fo:block text-align="start">
Left
</fo:block>
</fo:block-container>
<fo:block-container width="5cm" height="3cm" left="5cm" position="absolute" background-color="#55AA55">
<fo:block text-align="center">
Center
</fo:block>
</fo:block-container>
<fo:block-container width="5cm" height="3cm" left="10cm" position="absolute" background-color="#FFCCFF">
<fo:block text-align="end">
Right
</fo:block>
</fo:block-container>
</fo:static-content>
<!-- footer -->
<fo:static-content flow-name="xsl-region-after">
<fo:block-container width="5cm" height="3cm" position="absolute">
<fo:block text-align="start">
Left
</fo:block>
</fo:block-container>
<fo:block-container width="5cm" height="3cm" left="5cm" position="absolute">
<fo:block text-align="center">
Center
</fo:block>
</fo:block-container>
<fo:block-container width="5cm" height="3cm" left="10cm" position="absolute">
<fo:block text-align="end">
Right
</fo:block>
</fo:block-container>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block>
There is top-margin for body region.This is bcos margin-top for body is greater than extent of region-before.
</fo:block>
<fo:block>
There is NO bottom-margin for body region. Bcos margin-bottom for body = extent for region-after.
</fo:block>
<fo:block>
</fo:block>
<fo:block>
The fo:static-content formatting object holds a sequence or a tree of formatting objects that is to be presented in a single region or repeated in like-named regions on one or more pages in the page-sequence. Its common use is for repeating or running headers and footers.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
This content is repeated, in its entirety, on every page to which it is assigned.
</fo:block>
<fo:block>
The fo:static-content formatting object does not generate any areas. The fo:static-content formatting object returns the sequence of areas created by concatenating the sequences of areas returned by each of the children of the fo:static-content. The order of concatenation is the same order as the children are ordered under the fo:static-content.
</fo:block>
<fo:block>
The fo:static-content formatting object does not generate any areas. The fo:static-content formatting object returns the sequence of areas created by concatenating the sequences of areas returned by each of the children of the fo:static-content. The order of concatenation is the same order as the children are ordered under the fo:static-content.
</fo:block>
<fo:block>
The fo:static-content formatting object does not generate any areas. The fo:static-content formatting object returns the sequence of areas created by concatenating the sequences of areas returned by each of the children of the fo:static-content. The order of concatenation is the same order as the children are ordered under the fo:static-content.
</fo:block>
<fo:block>
The fo:static-content formatting object does not generate any areas. The fo:static-content formatting object returns the sequence of areas created by concatenating the sequences of areas returned by each of the children of the fo:static-content. The order of concatenation is the same order as the children are ordered under the fo:static-content.
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>