From ed18821511f2a5be10434072250e69dcf7fde171 Mon Sep 17 00:00:00 2001 From: Jeremias Maerki Date: Tue, 25 Oct 2005 19:49:46 +0000 Subject: Removed 0.90 again and created a "trunk" instead. When a release is done, trunk can be copied to the version number. FOP Trunk documentation added. Fixed all broken internal links. git-svn-id: https://svn.apache.org/repos/asf/xmlgraphics/fop/trunk@328462 13f79535-47bb-0310-9956-ffa450edef68 --- .../content/xdocs/trunk/extensions.xml | 106 +++++++++++++++++++++ 1 file changed, 106 insertions(+) create mode 100644 src/documentation/content/xdocs/trunk/extensions.xml (limited to 'src/documentation/content/xdocs/trunk/extensions.xml') diff --git a/src/documentation/content/xdocs/trunk/extensions.xml b/src/documentation/content/xdocs/trunk/extensions.xml new file mode 100644 index 000000000..71fff1e09 --- /dev/null +++ b/src/documentation/content/xdocs/trunk/extensions.xml @@ -0,0 +1,106 @@ + + + + + +
+ Standard FOP Extensions + $Revision$ +
+ +

+ By "extension", we mean any data that can be placed in the input XML document that + is not addressed by the XSL-FO standard. + By having a mechanism for supporting extensions, FOP is able to add features that + are not covered in the specification. +

+

+ The extensions documented here are included with FOP, and are automatically available + to you. If you wish to add an extension of your own to FOP, please see the + Developers' Extension Page. +

+ All extensions required the correct use of an appropriate namespace in your input document. +
+ SVG +

+ Please see the SVG documentation for more details. +

+
+
+ FO Extensions +
+ Namespace +

+ By convention, FO extensions in FOP use the "fox" namespace prefix. + To use any of the FO extensions, add a namespace entry for + http://xml.apache.org/fop/extensions to the root element: +

+ ]]> + Currently, no extensions are implemented in FOP Trunk which use the FOP extension namespace. +
+
+ PDF Bookmarks +

+ In previous versions of Apache FOP there was a fox:outline element + which was used to create outlines in PDF files. The redesigned code makes use + of the new bookmark feature defined in the latest XSL 1.1 working draft. +

+
+
+ Anchors or Named Destinations +

This extension element hasn't been reimplemented for the redesigned code, yet.

+ +
+
+ Table Continuation Label +

This extension element hasn't been reimplemented for the redesigned code, yet.

+ +
+
+ +
+ -- cgit v1.2.3 pache/fop/fo/flow/TableColumn.java'>
path: root/src/java/org/apache/fop/fo/flow/TableColumn.java
blob: 19b79c67ea64c70b9c371e71d1b454c47d83976a (plain)
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