~ubuntu-branches/ubuntu/raring/scilab/raring-proposed

« back to all changes in this revision

Viewing changes to modules/console/etc/XConfiguration-general.xsl

  • Committer: Package Import Robot
  • Author(s): Sylvestre Ledru
  • Date: 2012-08-30 14:42:38 UTC
  • mfrom: (1.4.7)
  • Revision ID: package-import@ubuntu.com-20120830144238-c1y2og7dbm7m9nig
Tags: 5.4.0-beta-3-1~exp1
* New upstream release
* Update the scirenderer dep
* Get ride of libjhdf5-java dependency

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
<xsl:stylesheet version ="1.0"
3
3
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
4
4
                >
5
 
    <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
6
 
                      ::
7
 
                      ::     M A I N   P A N E L :   G E N E R A L
8
 
                      ::
9
 
                 -->
10
 
    <xsl:template match="environment" mode="tooltip">Settings environment</xsl:template>
11
 
    <xsl:template match="environment">
12
 
        <Title text="Environment">
13
 
            <Grid>
14
 
                <Label gridx="1" gridy="1" weightx="0" text="_(Floating point exception (ieee): )"/>
15
 
                <Panel gridx="2" gridy="1" weightx="1"/>
16
 
                <Select gridx="3" gridy="1" listener="ActionListener">
17
 
                    <xsl:variable name="fpe" select="@fpe"/>
18
 
                    <actionPerformed choose="fpe">
19
 
                        <xsl:call-template name="context"/>
20
 
                    </actionPerformed>
21
 
                    <xsl:for-each select="fpe">
22
 
                        <option value="{@floating-point-exception}" key="{@code}">
23
 
                            <xsl:if test="@code=$fpe">
24
 
                                <xsl:attribute name="selected">selected</xsl:attribute>
25
 
                            </xsl:if>
26
 
                        </option>
27
 
                    </xsl:for-each>
28
 
                </Select>
29
 
 
30
 
                <Label gridx="1" gridy="2" weightx="0" text="_(Printing format: )"/>
31
 
                <Select gridx="3" gridy="2" listener="ActionListener">
32
 
                    <xsl:variable name="pf" select="@printing-format"/>
33
 
                    <actionPerformed choose="printing-format">
34
 
                        <xsl:call-template name="context"/>
35
 
                    </actionPerformed>
36
 
                    <xsl:for-each select="printing-format">
37
 
                        <option value="{@format}" key="{@code}">
38
 
                            <xsl:if test="@code=$pf">
39
 
                                <xsl:attribute name="selected">selected</xsl:attribute>
40
 
                            </xsl:if>
41
 
                        </option>
42
 
                    </xsl:for-each>
43
 
                </Select>
44
 
                <Label gridx="1" gridy="3" weightx="0" text="_(Width: )"/>
45
 
                <NumericalSpinner gridx="3"
46
 
                                  gridy="3"
47
 
                                  weightx="0"
48
 
                                  min-value="2"
49
 
                                  max-value="25"
50
 
                                  increment="1"
51
 
                                  length="3"
52
 
                                  listener="ActionListener"
53
 
                                  value="{@width}">
54
 
                    <actionPerformed choose="width">
55
 
                        <xsl:call-template name="context"/>
56
 
                    </actionPerformed>
57
 
                </NumericalSpinner>
58
 
            </Grid>
59
 
        </Title>
60
 
    </xsl:template>
61
 
 
62
 
    <xsl:template match="languages">
63
 
        <xsl:if test="$OS='Windows'">
64
 
            <VSpace height="10"/>
65
 
            <Title text="_(Language setting)">
66
 
                <Grid>
67
 
                    <Label text="_(Default language: )" gridx="1" gridy="1" anchor="baseline" weightx="0"/>
68
 
                    <Panel gridx="2" gridy="1" weightx="1"/>
69
 
                    <Select gridx="3" gridy="1" listener="ActionListener">
70
 
                        <actionPerformed choose="lang">
71
 
                            <xsl:call-template name="context"/>
72
 
                        </actionPerformed>
73
 
                        <xsl:variable name="code" select="@lang"/>
74
 
                        <xsl:for-each select="language">
75
 
                            <option value="{@desc}" key="{@code}">
76
 
                                <xsl:if test="@code=$SCILAB_LANGUAGE or @code=$code">
77
 
                                    <xsl:attribute name="selected">selected</xsl:attribute>
78
 
                                </xsl:if>
79
 
                            </option>
80
 
                        </xsl:for-each>
81
 
                    </Select>
82
 
                    <Label text="_((This requires a restart of Scilab))" font-face="bold" gridx="1" gridy="2" anchor="west" weightx="0"/>
83
 
                    <Panel gridx="2" gridy="2" weightx="1" fill="both"/>
84
 
                </Grid>
85
 
            </Title>
86
 
        </xsl:if>
87
 
    </xsl:template>
88
 
 
89
 
    <xsl:template match="java-heap-memory" mode="tooltip"> and java heap size.</xsl:template>
90
 
    <xsl:template match="java-heap-memory">
91
 
        <VSpace height="10"/>
92
 
        <Title text="_(Java Heap Memory)">
93
 
            <Grid>
94
 
                <Label text="_(Select the memory (in MB) available in Java: )" gridx="1" gridy="1" anchor="baseline" weightx="0"/>
95
 
                <Panel gridx="2" gridy="1" weightx="1"/>
96
 
                <NumericalSpinner min-value="0"
97
 
                                  increment="128"
98
 
                                  length="6"
99
 
                                  listener="ActionListener"
100
 
                                  value="{@heap-size}"
101
 
                                  gridx="3" gridy="1" anchor="baseline" weightx="0">
102
 
                    <actionPerformed choose="heap-size">
103
 
                        <xsl:call-template name="context"/>
104
 
                    </actionPerformed>
105
 
                </NumericalSpinner>
106
 
                <Label text="_((This requires a restart of Scilab))" font-face="bold" gridx="1" gridy="2" anchor="west" weightx="0"/>
107
 
                <Panel gridx="2" gridy="2" weightx="1" fill="both"/>
108
 
            </Grid>
109
 
        </Title>
110
 
 
111
 
    </xsl:template>
112
 
 
113
 
    <xsl:template match="tools">
114
 
        <Title text="_(Confirmation dialogs)">
115
 
            <Grid>
116
 
                <xsl:for-each select="tool">
117
 
                    <Checkbox
118
 
                        gridy="{position() + 1}"
119
 
                        gridx="1"
120
 
                        listener="ActionListener"
121
 
                        checked="{@state}"
122
 
                        text="{@description}">
123
 
                        <actionPerformed choose="state">
124
 
                            <xsl:call-template name="context"/>
125
 
                        </actionPerformed>
126
 
                    </Checkbox>
127
 
                </xsl:for-each>
128
 
            </Grid>
129
 
        </Title>
130
 
    </xsl:template>
131
 
 
132
 
    <xsl:template match="layouts">
133
 
        <xsl:variable name="id" select="@id"/>
134
 
        <Title text="_(Desktop Layout)">
135
 
            <Grid>
136
 
                <Label gridx="1" gridy="1" weightx="0" text="_(Select a layout)"/>
137
 
                <Panel gridx="2" gridy="1" gridheight="1" fill="both"/>
138
 
                <Select gridx="3" gridy="1" listener="ActionListener">
139
 
                    <actionPerformed choose="id">
140
 
                        <xsl:call-template name="context"/>
141
 
                    </actionPerformed>
142
 
                    <xsl:for-each select="layout">
143
 
                        <option value="{@name}" key="{@id}">
144
 
                            <xsl:if test="@id=$id">
145
 
                                <xsl:attribute name="selected">selected</xsl:attribute>
146
 
                            </xsl:if>
147
 
                        </option>
148
 
                    </xsl:for-each>
149
 
                </Select>
150
 
                <Label text="_((Modify the layout requires to restart Scilab))" font-face="bold" gridx="1" gridy="2" anchor="west" weightx="0"/>
151
 
                <Panel gridx="1" gridy="3">
152
 
                    <VSpace height="10"/>
153
 
                </Panel>
154
 
                <Image gridx="1" gridy="4" gridwidth="3">
155
 
                    <xsl:attribute name="url">
156
 
                        <xsl:value-of select="layout[@id=$id]/@image"/>
157
 
                    </xsl:attribute>
158
 
                </Image>
159
 
 
160
 
            </Grid>
161
 
        </Title>
162
 
    </xsl:template>
163
 
 
164
 
    <xsl:template match="actions">
165
 
        <xsl:variable name="name" select="@name"/>
166
 
        <xsl:variable name="current-item" select="action-folder[@name=$name]/action[number(@item)]"/>
167
 
        <Title text="_(Keys binding)" fixed-height="false">
168
 
            <VBox fixed-height="false">
169
 
                <Grid>
170
 
                    <Label gridy="1" gridx="1" gridwidth="2" text="_(Filter on action name: )"/>
171
 
                    <Entry gridy="2" gridx="1" gridwidth="2" text="{@filter}" listener="EntryListener">
172
 
                        <entryChanged choose="filter">
173
 
                            <xsl:call-template name="context"/>
174
 
                        </entryChanged>
175
 
                    </Entry>
176
 
                </Grid>
177
 
                <VSpace height="10"/>
178
 
                <Grid>
179
 
                    <VBox gridx="1" gridy="1" weightx="0" anchor="north">
180
 
                        <Label text="_(Component)"/>
181
 
                        <List item="{@name}" nb-visible-rows="4" listener="ActionListener">
182
 
                            <actionPerformed choose="name">
183
 
                                <xsl:call-template name="context"/>
184
 
                            </actionPerformed>
185
 
                            <xsl:for-each select="action-folder">
186
 
                                <listElement name="{@name}"/>
187
 
                            </xsl:for-each>
188
 
                        </List>
189
 
                    </VBox>
190
 
                    <Panel gridx="2" gridy="1" weightx="0" width="30" height="1" fixed-width="true"/>
191
 
                    <Grid gridx="3" gridy="1" weightx="1" anchor="north">
192
 
                        <Label gridx="1" gridy="1" weightx="0" weighty="0" anchor="north" text="_(Name: )"/>
193
 
                        <Label gridx="2" gridy="1" weightx="0" weighty="0" anchor="west">
194
 
                            <xsl:attribute name="text">
195
 
                                <xsl:value-of select="$current-item/@name"/>
196
 
                            </xsl:attribute>
197
 
                        </Label>
198
 
                        <Label gridx="1" gridy="2" weightx="0" weighty="0" anchor="north" text="_(Description: )"/>
199
 
                        <TextArea gridx="2" gridy="2" weightx="1" weighty="0" anchor="west" editable="false" rows="4">
200
 
                            <xsl:attribute name="text">
201
 
                                <xsl:value-of select="$current-item/@description"/>
202
 
                            </xsl:attribute>
203
 
                        </TextArea>
204
 
                        <Label gridx="1" gridy="3" weightx="0" weighty="0" anchor="baseline" text="_(Binding: )"/>
205
 
                        <Entry gridx="2" gridy="3" weightx="0" weighty="0" anchor="baseline" listener="ActionListener">
206
 
                            <xsl:attribute name="text">
207
 
                                <xsl:value-of select="$current-item/@key"/>
208
 
                            </xsl:attribute>
209
 
                            <actionPerformed choose="key">
210
 
                                <xsl:attribute name="context">
211
 
                                    <xsl:for-each select="$current-item/ancestor-or-self::*">
212
 
                                        <xsl:if test="not(.=/)">
213
 
                                            <xsl:value-of select="count(preceding-sibling::*)+1"/>
214
 
                                            <xsl:text>/</xsl:text>
215
 
                                        </xsl:if>
216
 
                                    </xsl:for-each>
217
 
                                </xsl:attribute>
218
 
                            </actionPerformed>
219
 
                        </Entry>
220
 
                    </Grid>
221
 
                </Grid>
222
 
                <VSpace height="10"/>
223
 
                <Table mode="select" listener="TableListener" fixed-height="false">
224
 
                    <!-- we change this useless attribute (which is not an actuator) to force the table reload) -->
225
 
                    <xsl:attribute name="name">
226
 
                        <xsl:value-of select="concat($name,@filter)"/>
227
 
                    </xsl:attribute>
228
 
                    <tableSelect choose="item">
229
 
                        <xsl:call-template name="context"/>
230
 
                    </tableSelect>
231
 
                    <xsl:for-each select="action-folder[@name=$name]/action[contains(
 
5
  <!-- = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
 
6
       ::
 
7
       ::     M A I N   P A N E L :   G E N E R A L
 
8
       ::
 
9
  -->
 
10
  <xsl:template match="environment" mode="tooltip">Settings environment</xsl:template>
 
11
  <xsl:template match="environment">
 
12
    <Title text="Environment">
 
13
      <Grid>
 
14
        <Label gridx="1" gridy="1" weightx="0" text="_(Floating point exception (ieee): )"/>
 
15
        <Panel gridx="2" gridy="1" weightx="1"/>
 
16
        <Select gridx="3" gridy="1" listener="ActionListener">
 
17
          <xsl:variable name="fpe" select="@fpe"/>
 
18
          <actionPerformed choose="fpe">
 
19
            <xsl:call-template name="context"/>
 
20
          </actionPerformed>
 
21
          <xsl:for-each select="fpe">
 
22
            <option value="{@floating-point-exception}" key="{@code}">
 
23
              <xsl:if test="@code=$fpe">
 
24
                <xsl:attribute name="selected">selected</xsl:attribute>
 
25
              </xsl:if>
 
26
            </option>
 
27
          </xsl:for-each>
 
28
        </Select>
 
29
 
 
30
        <Label gridx="1" gridy="2" weightx="0" text="_(Printing format: )"/>
 
31
        <Select gridx="3" gridy="2" listener="ActionListener">
 
32
          <xsl:variable name="pf" select="@printing-format"/>
 
33
          <actionPerformed choose="printing-format">
 
34
            <xsl:call-template name="context"/>
 
35
          </actionPerformed>
 
36
          <xsl:for-each select="printing-format">
 
37
            <option value="{@format}" key="{@code}">
 
38
              <xsl:if test="@code=$pf">
 
39
                <xsl:attribute name="selected">selected</xsl:attribute>
 
40
              </xsl:if>
 
41
            </option>
 
42
          </xsl:for-each>
 
43
        </Select>
 
44
        <Label gridx="1" gridy="3" weightx="0" text="_(Width: )"/>
 
45
        <NumericalSpinner gridx="3"
 
46
                          gridy="3"
 
47
                          weightx="0"
 
48
                          min-value="2"
 
49
                          max-value="25"
 
50
                          increment="1"
 
51
                          length="3"
 
52
                          listener="ActionListener"
 
53
                          value="{@width}">
 
54
          <actionPerformed choose="width">
 
55
            <xsl:call-template name="context"/>
 
56
          </actionPerformed>
 
57
        </NumericalSpinner>
 
58
      </Grid>
 
59
    </Title>
 
60
  </xsl:template>
 
61
 
 
62
  <xsl:template match="languages">
 
63
    <xsl:if test="$OS='Windows'">
 
64
      <VSpace height="10"/>
 
65
      <Title text="_(Language setting)">
 
66
        <Grid>
 
67
          <Label text="_(Default language: )" gridx="1" gridy="1" anchor="baseline" weightx="0"/>
 
68
          <Panel gridx="2" gridy="1" weightx="1"/>
 
69
          <Select gridx="3" gridy="1" listener="ActionListener">
 
70
            <actionPerformed choose="lang">
 
71
              <xsl:call-template name="context"/>
 
72
            </actionPerformed>
 
73
            <xsl:variable name="code" select="@lang"/>
 
74
            <xsl:for-each select="language">
 
75
              <option value="{@desc}" key="{@code}">
 
76
                <xsl:if test="@code=$SCILAB_LANGUAGE or @code=$code">
 
77
                  <xsl:attribute name="selected">selected</xsl:attribute>
 
78
                </xsl:if>
 
79
              </option>
 
80
            </xsl:for-each>
 
81
          </Select>
 
82
          <Label text="_((This requires a restart of Scilab))" font-face="bold" gridx="1" gridy="2" anchor="west" weightx="0"/>
 
83
          <Panel gridx="2" gridy="2" weightx="1" fill="both"/>
 
84
        </Grid>
 
85
      </Title>
 
86
    </xsl:if>
 
87
  </xsl:template>
 
88
 
 
89
  <xsl:template match="java-heap-memory" mode="tooltip"> and java heap size.</xsl:template>
 
90
  <xsl:template match="java-heap-memory">
 
91
    <VSpace height="10"/>
 
92
    <Title text="_(Java Heap Memory)">
 
93
      <Grid>
 
94
        <Label text="_(Select the memory (in MB) available in Java: )" gridx="1" gridy="1" anchor="baseline" weightx="0"/>
 
95
        <Panel gridx="2" gridy="1" weightx="1"/>
 
96
        <NumericalSpinner min-value="0"
 
97
                          increment="128"
 
98
                          length="6"
 
99
                          listener="ActionListener"
 
100
                          value="{@heap-size}"
 
101
                          gridx="3" gridy="1" anchor="baseline" weightx="0">
 
102
          <actionPerformed choose="heap-size">
 
103
            <xsl:call-template name="context"/>
 
104
          </actionPerformed>
 
105
        </NumericalSpinner>
 
106
        <Label text="_((This requires a restart of Scilab))" font-face="bold" gridx="1" gridy="2" anchor="west" weightx="0"/>
 
107
        <Panel gridx="2" gridy="2" weightx="1" fill="both"/>
 
108
      </Grid>
 
109
    </Title>
 
110
 
 
111
  </xsl:template>
 
112
 
 
113
  <xsl:template match="tools">
 
114
    <Title text="_(Confirmation dialogs)">
 
115
      <Grid>
 
116
        <xsl:for-each select="tool">
 
117
          <Checkbox
 
118
              gridy="{position() + 1}"
 
119
              gridx="1"
 
120
              listener="ActionListener"
 
121
              checked="{@state}"
 
122
              text="{@description}">
 
123
            <actionPerformed choose="state">
 
124
              <xsl:call-template name="context"/>
 
125
            </actionPerformed>
 
126
          </Checkbox>
 
127
        </xsl:for-each>
 
128
      </Grid>
 
129
    </Title>
 
130
  </xsl:template>
 
131
 
 
132
  <xsl:template match="layouts">
 
133
    <xsl:variable name="id" select="@id"/>
 
134
    <Title text="_(Desktop Layout)">
 
135
      <Grid>
 
136
        <Label gridx="1" gridy="1" weightx="0" text="_(Select a layout)"/>
 
137
        <Panel gridx="2" gridy="1" gridheight="1" fill="both"/>
 
138
        <Select gridx="3" gridy="1" listener="ActionListener">
 
139
          <actionPerformed choose="id">
 
140
            <xsl:call-template name="context"/>
 
141
          </actionPerformed>
 
142
          <xsl:for-each select="layout">
 
143
            <option value="{@name}" key="{@id}">
 
144
              <xsl:if test="@id=$id">
 
145
                <xsl:attribute name="selected">selected</xsl:attribute>
 
146
              </xsl:if>
 
147
            </option>
 
148
          </xsl:for-each>
 
149
        </Select>
 
150
        <Label text="_((Modify the layout requires to restart Scilab))" font-face="bold" gridx="1" gridy="2" anchor="west" weightx="0"/>
 
151
        <Panel gridx="1" gridy="3">
 
152
          <VSpace height="10"/>
 
153
        </Panel>
 
154
        <Image gridx="1" gridy="4" gridwidth="3">
 
155
          <xsl:attribute name="url">
 
156
            <xsl:value-of select="layout[@id=$id]/@image"/>
 
157
          </xsl:attribute>
 
158
        </Image>
 
159
 
 
160
      </Grid>
 
161
    </Title>
 
162
  </xsl:template>
 
163
 
 
164
  <xsl:template match="actions">
 
165
    <xsl:variable name="name" select="@name"/>
 
166
    <xsl:variable name="current-item" select="action-folder[@name=$name]/action[number(@item)]"/>
 
167
    <Title text="_(Keys binding)" fixed-height="false">
 
168
      <VBox fixed-height="false">
 
169
        <Grid>
 
170
          <Label gridy="1" gridx="1" gridwidth="2" text="_(Filter on action name: )"/>
 
171
          <Entry gridy="2" gridx="1" gridwidth="2" text="{@filter}" listener="EntryListener">
 
172
            <entryChanged choose="filter">
 
173
              <xsl:call-template name="context"/>
 
174
            </entryChanged>
 
175
          </Entry>
 
176
        </Grid>
 
177
        <VSpace height="10"/>
 
178
        <Grid>
 
179
          <VBox gridx="1" gridy="1" weightx="0" anchor="north">
 
180
            <Label text="_(Component)"/>
 
181
            <List item="{@name}" nb-visible-rows="4" listener="ActionListener">
 
182
              <actionPerformed choose="name">
 
183
                <xsl:call-template name="context"/>
 
184
              </actionPerformed>
 
185
              <xsl:for-each select="action-folder">
 
186
                <listElement name="{@name}"/>
 
187
              </xsl:for-each>
 
188
            </List>
 
189
          </VBox>
 
190
          <Panel gridx="2" gridy="1" weightx="0" width="30" height="1" fixed-width="true"/>
 
191
          <Grid gridx="3" gridy="1" weightx="1" anchor="north">
 
192
            <Label gridx="1" gridy="1" weightx="0" weighty="0" anchor="north" text="_(Name: )"/>
 
193
            <Label gridx="2" gridy="1" weightx="0" weighty="0" anchor="west">
 
194
              <xsl:attribute name="text">
 
195
                <xsl:value-of select="$current-item/@name"/>
 
196
              </xsl:attribute>
 
197
            </Label>
 
198
            <Label gridx="1" gridy="2" weightx="0" weighty="0" anchor="north" text="_(Description: )"/>
 
199
            <TextArea gridx="2" gridy="2" weightx="1" weighty="0" anchor="west" editable="false" rows="4">
 
200
              <xsl:attribute name="text">
 
201
                <xsl:value-of select="$current-item/@description"/>
 
202
              </xsl:attribute>
 
203
            </TextArea>
 
204
            <Label gridx="1" gridy="3" weightx="0" weighty="0" anchor="baseline" text="_(Binding: )"/>
 
205
            <Entry gridx="2" gridy="3" weightx="0" weighty="0" anchor="baseline" listener="EntryListener">
 
206
              <xsl:attribute name="text">
 
207
                <xsl:value-of select="$current-item/@key"/>
 
208
              </xsl:attribute>
 
209
              <entryChanged choose="key">
 
210
                <xsl:attribute name="context">
 
211
                  <xsl:for-each select="$current-item/ancestor-or-self::*">
 
212
                    <xsl:if test="not(.=/)">
 
213
                      <xsl:value-of select="count(preceding-sibling::*)+1"/>
 
214
                      <xsl:text>/</xsl:text>
 
215
                    </xsl:if>
 
216
                  </xsl:for-each>
 
217
                </xsl:attribute>
 
218
              </entryChanged>
 
219
            </Entry>
 
220
          </Grid>
 
221
        </Grid>
 
222
        <VSpace height="10"/>
 
223
        <Table mode="select" listener="TableListener" fixed-height="false">
 
224
          <!-- we change this useless attribute (which is not an actuator) to force the table reload) -->
 
225
          <xsl:attribute name="name">
 
226
            <xsl:value-of select="concat($name,@filter)"/>
 
227
          </xsl:attribute>
 
228
          <tableSelect choose="item">
 
229
            <xsl:call-template name="context"/>
 
230
          </tableSelect>
 
231
          <xsl:for-each select="action-folder[@name=$name]/action[contains(
232
232
                                translate(@name,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'),
233
233
                                translate(current()/@filter,'abcdefghijklmnopqrstuvwxyz','ABCDEFGHIJKLMNOPQRSTUVWXYZ'))]">
234
 
                        <tableRow binding="{@key}" command="{@name}"/>
235
 
                    </xsl:for-each>
236
 
                    <tableCol title="_(Action name)" attr="command"/>
237
 
                    <tableCol title="_(Key binding)" attr="binding"/>
238
 
                </Table>
239
 
                <Glue/>
240
 
            </VBox>
241
 
        </Title>
242
 
    </xsl:template>
 
234
            <tableRow binding="{@key}" command="{@name}"/>
 
235
          </xsl:for-each>
 
236
          <tableCol title="_(Action name)" attr="command"/>
 
237
          <tableCol title="_(Key binding)" attr="binding"/>
 
238
        </Table>
 
239
        <Glue/>
 
240
      </VBox>
 
241
    </Title>
 
242
  </xsl:template>
243
243
</xsl:stylesheet>