1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
|
<?xml version="1.0"?>
<!--
Copyright 1999-2004 The Apache Software Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<!-- $Id$ -->
<!DOCTYPE formattingObjects [
<!ELEMENT formattingObjects (title,usage,category+,notes?)>
<!ELEMENT title (#PCDATA)>
<!ELEMENT usage (para)*>
<!ELEMENT para (#PCDATA|em|term)*>
<!ELEMENT em (#PCDATA)>
<!ELEMENT term (#PCDATA)>
<!ELEMENT category (object)+>
<!ATTLIST category
class CDATA #REQUIRED>
<!ELEMENT object (name,baseClass,specContent,generatedAreas,breaksKeeps?)>
<!ATTLIST object
implemented (true|false) "true">
<!ELEMENT name (#PCDATA)>
<!ELEMENT baseClass (#PCDATA)>
<!ELEMENT specContent (#PCDATA)>
<!ELEMENT generatedAreas (type,multiplicity,currentLayout)?>
<!ATTLIST generatedAreas
isReference (true|false) "false">
<!ELEMENT type (class,stacking)>
<!ELEMENT class (#PCDATA)>
<!ELEMENT stacking (#PCDATA)>
<!ELEMENT multiplicity (#PCDATA)>
<!ELEMENT currentLayout (#PCDATA)>
<!ATTLIST currentLayout
intoParentArea (true|false) "false">
<!ELEMENT breaksKeeps (#PCDATA)>
<!ELEMENT notes (note)+>
<!ELEMENT note (#PCDATA)>
]>
<formattingObjects>
<title>FOP Implementation of Layout Formatting Objects</title>
<usage>
<para>
This table displays information concerning FOP implementation
of XSL formatting objects of the layout type.
</para>
<para>
The category classes refer to the XSL specification notation
<term>%block;</term> and <term>%inline;</term>. These
classifications are rather less useful in practical terms than
one might initially suppose.
</para>
<para>
The <em>Base Class</em> of each object is the FOP implementation
class.
</para>
<para>
The <em>Spec Content</em> is the BNF grammar describing
the content of each FO, as taken from the XSL specification.
</para>
<para>
The <em>Breaks and Keeps</em> describes what breaks and keeps apply
to each FO. <em>All</em> means all breaks and keeps, <em>All Keeps</em>
indicates that <term>keep-together</term>, <term>keep-with-next</term>,
and <term>keep-with-previous</term> all apply. The abbreviations
<term>kt</term>, <term>kwn</term>, and <term>kwp</term> specify
individual keep properties.
</para>
<para>
The information on generated areas describes what type of areas are
<em>generated</em> by a given FO, how many there are, whether or not
they are reference areas, and what FOP area class is being used for layout.
In some cases content is laid-out into the parent area; in others, the
content is laid-out in new areas that are constructed as required, then
added to the parent area - this is also noted in the table. In practise,
we should see that FOs that do not generate areas should layout into the
parent.
</para>
<para>
The Name, Spec Content, and Breaks & Keeps information is definite.
The type and multiplicity of generated areas is definite, as well as whether
the generated areas are reference areas or not. The BaseClass and the
layout area information is FOP-implementation dependent.
</para>
<para><em>Note:</em> Numbers in parentheses refer to Notes. A * after
an FO name indicates that the object is not yet implemented.</para>
</usage>
<category class="block-level">
<object>
<name>block</name>
<baseClass>FObjMixed</baseClass>
<specContent><![CDATA[(#PCDATA|%inline;|%block;)*]]></specContent>
<generatedAreas>
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>BlockArea</currentLayout>
</generatedAreas>
<breaksKeeps>All (2)</breaksKeeps>
</object>
<object>
<name>block-container</name>
<baseClass>FObj</baseClass>
<specContent><![CDATA[(%block;)+]]></specContent>
<generatedAreas isReference="true">
<type><class>viewport/ref</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>AreaContainer</currentLayout>
</generatedAreas>
<breaksKeeps>All</breaksKeeps>
</object>
<object implemented="false">
<name>table-and-caption</name>
<baseClass>FObj (1)</baseClass>
<specContent>(table-caption?,table)</specContent>
<generatedAreas>
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>AreaContainer</currentLayout>
</generatedAreas>
<breaksKeeps>All keeps</breaksKeeps>
</object>
<object>
<name>table</name>
<baseClass>FObj</baseClass>
<specContent>(table-column*,table-header?, table-footer?,table-body+)</specContent>
<generatedAreas isReference="true">
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>AreaContainer</currentLayout>
</generatedAreas>
<breaksKeeps>All</breaksKeeps>
</object>
<object>
<name>list-block</name>
<baseClass>FObj</baseClass>
<specContent>(list-item+)</specContent>
<generatedAreas>
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>BlockArea</currentLayout>
</generatedAreas>
<breaksKeeps>All</breaksKeeps>
</object>
</category>
<category class="inline-level">
<object implemented="false">
<name>bidi-override</name>
<baseClass>FObjMixed (1)</baseClass>
<specContent><![CDATA[(#PCDATA|%inline;|%block;)*]]></specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout/>
</generatedAreas>
<breaksKeeps/>
</object>
<object>
<name>character</name>
<baseClass>FObj</baseClass>
<specContent>EMPTY</specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1</multiplicity>
<currentLayout intoParentArea="true">BlockArea</currentLayout>
</generatedAreas>
<breaksKeeps>kwn, kwp</breaksKeeps>
</object>
<object>
<name>external-graphic</name>
<baseClass>FObj</baseClass>
<specContent>EMPTY</specContent>
<generatedAreas>
<type><class>viewport/ref</class><stacking>inline</stacking></type>
<multiplicity>1</multiplicity>
<currentLayout>ImageArea</currentLayout>
</generatedAreas>
<breaksKeeps>kwn, kwp</breaksKeeps>
</object>
<object implemented="false">
<name>initial-property-set</name>
<baseClass>FObj (1)</baseClass>
<specContent>EMPTY</specContent>
<generatedAreas/>
<breaksKeeps/>
</object>
<object>
<name>instream-foreign-object</name>
<baseClass>FObj</baseClass>
<specContent>XML</specContent>
<generatedAreas>
<type><class>viewport/ref</class><stacking>inline</stacking></type>
<multiplicity>1</multiplicity>
<currentLayout>ForeignObjectArea</currentLayout>
</generatedAreas>
<breaksKeeps>kwn, kwp</breaksKeeps>
</object>
<object>
<name>inline</name>
<baseClass>FObjMixed</baseClass>
<specContent><![CDATA[(#PCDATA|%inline;|%block;)*]]></specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout intoParentArea="true">Area</currentLayout>
</generatedAreas>
<breaksKeeps>All keeps</breaksKeeps>
</object>
<object implemented="false">
<name>inline-container</name>
<baseClass>FObj (1)</baseClass>
<specContent><![CDATA[(%block;)+]]></specContent>
<generatedAreas isReference="true">
<type><class>viewport/ref</class><stacking>inline</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout/>
</generatedAreas>
<breaksKeeps>All keeps</breaksKeeps>
</object>
<object>
<name>leader</name>
<baseClass>FObjMixed</baseClass>
<specContent><![CDATA[(#PCDATA|%inline;)*]]></specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1</multiplicity>
<currentLayout intoParentArea="true">BlockArea</currentLayout>
</generatedAreas>
<breaksKeeps/>
</object>
<object>
<name>page-number</name>
<baseClass>FObj</baseClass>
<specContent>EMPTY</specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1</multiplicity>
<currentLayout intoParentArea="true">BlockArea (4)</currentLayout>
</generatedAreas>
<breaksKeeps>kwn, kwp</breaksKeeps>
</object>
<object>
<name>page-number-citation</name>
<baseClass>FObj</baseClass>
<specContent>EMPTY</specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1</multiplicity>
<currentLayout intoParentArea="true">BlockArea (4)</currentLayout>
</generatedAreas>
<breaksKeeps>kwn, kwp</breaksKeeps>
</object>
<object>
<name>basic-link</name>
<baseClass>FObjMixed</baseClass>
<specContent><![CDATA[(#PCDATA|%inline;|%block;)*]]></specContent>
<generatedAreas>
<type><class>normal</class><stacking>inline</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout intoParentArea="true">Area (4)</currentLayout>
</generatedAreas>
<breaksKeeps>All keeps</breaksKeeps>
</object>
</category>
<category class="other">
<object>
<name>list-item-body</name>
<baseClass>FObj</baseClass>
<specContent><![CDATA[(%block;)+]]></specContent>
<generatedAreas>
<type><class>None</class><stacking>None</stacking></type>
<multiplicity/>
<currentLayout intoParentArea="true">Area</currentLayout>
</generatedAreas>
<breaksKeeps>kt</breaksKeeps>
</object>
<object>
<name>list-item</name>
<baseClass>FObj</baseClass>
<specContent>(list-item-label,list-item-body)</specContent>
<generatedAreas>
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>BlockArea</currentLayout>
</generatedAreas>
<breaksKeeps>All</breaksKeeps>
</object>
<object>
<name>list-item-label</name>
<baseClass>FObj</baseClass>
<specContent><![CDATA[(%block;)*]]></specContent>
<generatedAreas>
<type><class>None</class><stacking>None</stacking></type>
<multiplicity/>
<currentLayout intoParentArea="true">Area</currentLayout>
</generatedAreas>
<breaksKeeps>kt</breaksKeeps>
</object>
<object>
<name>table-body</name>
<baseClass>FObj</baseClass>
<specContent>(table-row+|table-cell+)</specContent>
<generatedAreas>
<type><class>None</class><stacking>None</stacking></type>
<multiplicity/>
<currentLayout>AreaContainer (3)</currentLayout>
</generatedAreas>
<breaksKeeps/>
</object>
<object implemented="false">
<name>table-caption</name>
<baseClass>FObj (1)</baseClass>
<specContent><![CDATA[(%block;)+]]></specContent>
<generatedAreas>
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout/>
</generatedAreas>
<breaksKeeps>kt</breaksKeeps>
</object>
<object>
<name>table-cell</name>
<baseClass>FObj</baseClass>
<specContent><![CDATA[(%block;)+]]></specContent>
<generatedAreas isReference="true">
<type><class>normal</class><stacking>block</stacking></type>
<multiplicity>1..*</multiplicity>
<currentLayout>AreaContainer</currentLayout>
</generatedAreas>
<breaksKeeps/>
</object>
<object>
<name>table-column</name>
<baseClass>FObj</baseClass>
<specContent>EMPTY</specContent>
<generatedAreas/>
<breaksKeeps/>
</object>
<object>
<name>table-footer</name>
<baseClass>TableBody</baseClass>
<specContent>(table-row+|table-cell+)</specContent>
<generatedAreas>
<type><class>None</class><stacking>None</stacking></type>
<multiplicity/>
<currentLayout>AreaContainer (3)</currentLayout>
</generatedAreas>
<breaksKeeps/>
</object>
<object>
<name>table-header</name>
<baseClass>TableBody</baseClass>
<specContent>(table-row+|table-cell+)</specContent>
<generatedAreas>
<type><class>None</class><stacking>None</stacking></type>
<multiplicity/>
<currentLayout>AreaContainer (3)</currentLayout>
</generatedAreas>
<breaksKeeps/>
</object>
<object>
<name>table-row</name>
<baseClass>FObj</baseClass>
<specContent>(table-cell+)</specContent>
<generatedAreas/>
<breaksKeeps>All</breaksKeeps>
</object>
</category>
<notes>
<note>not yet implemented; suggested base class</note>
<note>also widows & orphans</note>
<note>This is being generated in FOP, but an fo:table-body, or fo:table-header,
or fo:table-footer, generate no areas.</note>
<note>Should generate an area.</note>
</notes>
</formattingObjects>
|