blob: 7a8cd1c50dc070e27d8e6a8d7dd17b5afc987d03 (
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
|
<?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
margin-right="1.5cm"
margin-left="1.5cm"
margin-bottom="2cm"
margin-top="1cm"
page-width="21cm"
page-height="29.7cm"
master-name="first">
<fo:region-before extent="1cm"/>
<fo:region-body margin-top="1cm"/>
<fo:region-after extent="1.5cm"/>
</fo:simple-page-master>
</fo:layout-master-set>
<fo:page-sequence master-reference="first">
<fo:static-content flow-name="xsl-region-before">
<fo:block line-height="14pt" font-size="10pt"
text-align="end">Plan Extension</fo:block>
</fo:static-content>
<fo:static-content flow-name="xsl-region-after">
<fo:block line-height="14pt" font-size="10pt"
text-align="end">Page <fo:page-number/></fo:block>
</fo:static-content>
<fo:flow flow-name="xsl-region-body">
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
The Plan Extension
</fo:block>
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
The plan extension is an addition to FOP that can be used to produce a
simple plan diagram with tasks etc.
</fo:block>
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
Options
</fo:block>
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
There a few basic options to specify the width, height and type of graph.
The start and end date to display is optional.
The locale specific information can also be specified.
All other options are set in the style attribute.
</fo:block>
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
Types of Graphs
</fo:block>
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
Sample Action Plan
</fo:block>
<fo:block space-before.optimum="3pt" space-after.optimum="15pt">
<fo:block space-after.optimum="5pt">
<fo:instream-foreign-object>
<plan xmlns="http://xml.apache.org/fop/plan" width="500" height="200" start="20020612" end="20020702">
<title>Example Plan</title>
<events>
<group name="Task Group">
<action type="grouping" id="gr1">
<label>First Task</label>
<owner>Team</owner>
<startdate>20020618</startdate>
<enddate>20020630</enddate>
</action>
<action type="task" belongs="gr1">
<label>Another Task</label>
<owner>Team</owner>
<startdate>20020620</startdate>
<enddate>20020627</enddate>
</action>
<action type="milestone" depends="gr1">
<label>Milestone</label>
<owner>Team</owner>
<startdate>20020628</startdate>
</action>
<action type="grouping">
<label>Task</label>
<owner>Team</owner>
<startdate>20020620</startdate>
<enddate>20020630</enddate>
</action>
<action type="task">
<label>Difficult Task</label>
<owner>individual</owner>
<startdate>20020620</startdate>
<enddate>20020630</enddate>
</action>
</group>
</events>
</plan>
</fo:instream-foreign-object>
</fo:block>
</fo:block>
<fo:block>
A plan as an external graphic.
</fo:block>
<fo:block>
<fo:external-graphic src="june.xml"/>
</fo:block>
</fo:flow>
</fo:page-sequence>
</fo:root>
|