source: main/trunk/greenstone3/web/interfaces/oran/transform/layouts/xml-to-gui.xsl@ 22829

Last change on this file since 22829 was 22829, checked in by sjb48, 14 years ago
File size: 18.8 KB
Line 
1<!--
2Copyright (c) 2001-2009, Evan Lenz
3All rights reserved.
4
5Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
6
7 * Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
8 * Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
9 * Neither the name of Lenz Consulting Group nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
10
11 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
12
13Recent changes:
14
152010-06-10: Added the $force-exclude-all-namespaces parameter
162009-10-19: Added the $exclude-these-namespaces parameter
172009-10-08: Added $att-value parameter and template name to template rule for attributes.
18
19-->
20<xsl:stylesheet version="1.0"
21 xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
22 xmlns:gsf="http://www.greenstone.org/greenstone3/schema/ConfigFormat"
23 xmlns:exsl="http://exslt.org/common"
24 extension-element-prefixes="exsl" >
25
26 <xsl:output omit-xml-declaration="yes"/>
27
28 <xsl:template name="xml-to-gui">
29 <xsl:param name="node-set" select="."/>
30 <xsl:param name="metadataSets" select="."/>
31
32 <xsl:value-of select="metadataSets[@name]"/>
33 <xsl:apply-templates select="$node-set" mode="xml-to-gui">
34 <xsl:with-param name="depth" select="1"/>
35 <xsl:with-param name="metadataSets" select="$metadataSets"/>
36 </xsl:apply-templates>
37 </xsl:template>
38
39 <xsl:template match="/" mode="xml-to-gui">
40 <xsl:param name="depth"/>
41 <xsl:param name="metadataSets"/>
42
43 <xsl:apply-templates mode="xml-to-gui">
44 <xsl:with-param name="depth" select="$depth"/>
45 <xsl:with-param name="metadataSets" select="$metadataSets"/>
46 </xsl:apply-templates>
47 </xsl:template>
48 <!-- **************************************************************************** -->
49
50 <!-- **************************************************************************** -->
51 <!-- COMBO BOX CREATION -->
52 <!-- **************************************************************************** -->
53
54 <xsl:template name="meta-to-combo">
55 <xsl:param name="metadataSets" select='.'/>
56 <xsl:param name="current" select='.'/>
57
58 <xsl:variable name="current_mod">
59 <xsl:choose>
60 <xsl:when test="contains($current,'.')"><xsl:value-of select="$current"/></xsl:when>
61 <xsl:otherwise>ex.<xsl:value-of select="$current"/></xsl:otherwise>
62 </xsl:choose>
63 </xsl:variable>
64
65 <select>
66 <option value ="{$current_mod}" disabled="disabled" selected="{$current_mod}"><xsl:value-of select="$current_mod"/></option>
67
68 <xsl:apply-templates select="$metadataSets" mode="meta-to-combo">
69 <xsl:with-param name="current" select="$current_mod"/>
70 </xsl:apply-templates>
71 </select>
72 </xsl:template>
73
74 <xsl:template match="metadataSet" mode="meta-to-combo">
75 <xsl:param name="current"/>
76
77 <xsl:apply-templates mode="meta-to-combo">
78 <xsl:with-param name="set" select="@name"/>
79 <xsl:with-param name="current" select="$current"/>
80 </xsl:apply-templates>
81 </xsl:template>
82
83 <xsl:template match="metadata" mode="meta-to-combo">
84 <xsl:param name="set"/>
85 <xsl:param name="current"/>
86
87 <xsl:variable name="meta"><xsl:value-of select="$set"/>.<xsl:value-of select="@name"/></xsl:variable>
88
89 <!-- if this is the current value, then set combo box to this value -->
90 <xsl:choose>
91 <xsl:when test="$current = $meta">
92 <option value ="{$meta}" selected="{$meta}"><xsl:value-of select="$meta"/></option>
93 </xsl:when>
94 <xsl:otherwise>
95 <option value ="{$meta}"><xsl:value-of select="$meta"/></option>
96 </xsl:otherwise>
97 </xsl:choose>
98 </xsl:template>
99
100 <xsl:template match="*" mode="meta-to-combo">
101 <xsl:param name="current"/>
102 <xsl:apply-templates mode="meta-to-combo">
103 <xsl:with-param name="current" select="$current"/>
104 </xsl:apply-templates>
105 </xsl:template>
106
107
108 <!-- **************************************************************************** -->
109
110 <!-- **************************************************************************** -->
111 <!-- GSF STATEMENTS -->
112 <!-- **************************************************************************** -->
113
114
115 <!-- ********** GSF:CHOOSE-METADATA ********** -->
116 <xsl:template match="gsf:choose-metadata" mode="xml-to-gui">
117 <xsl:param name="depth"/>
118 <xsl:param name="metadataSets"/>
119
120 <div class="gsf_choose_metadata css_gsf_choose_metadata block" title="gsf:choose-metadata">
121 <table class="header"><tbody><tr><td>CHOOSE</td><td><a href="#" class="minmax ui-icon ui-icon-minusthick" title="Click me to expand">[-]</a></td><td><a href="#" class="remove ui-icon ui-icon-closethick" title="Click me to remove"/></td></tr></tbody></table>
122 <xsl:apply-templates mode="xml-to-gui">
123 <xsl:with-param name="depth" select="$depth"/>
124 <xsl:with-param name="metadataSets" select="$metadataSets"/>
125 </xsl:apply-templates>
126 </div>
127 </xsl:template>
128
129
130 <!-- ********** GSF:METADATA ********** -->
131 <xsl:template match="gsf:metadata" mode="xml-to-gui">
132 <xsl:param name="depth"/>
133 <xsl:param name="metadataSets"/>
134
135 <div class="gsf_metadata css_gsf_metadata block leaf" title="gsf:metadata">
136 <xsl:variable name="combo">
137 <xsl:call-template name="meta-to-combo">
138 <xsl:with-param name="metadataSets" select="$metadataSets"/>
139 <xsl:with-param name="current" select="@name"/>
140 </xsl:call-template>
141 </xsl:variable>
142 <table class="header"><tbody><tr><td><xsl:copy-of select="$combo"/></td><td><a href="#" class="remove ui-icon ui-icon-closethick" title="Click me to remove"/></td></tr></tbody></table>
143 </div>
144 </xsl:template>
145
146
147 <!-- ********** GSF:LINK ********** -->
148 <xsl:template match="gsf:link" mode="xml-to-gui">
149 <xsl:param name="depth"/>
150 <xsl:param name="metadataSets"/>
151
152 <div class="gsf_link css_gsf_link block" title="gsf:link">
153 <xsl:variable name="link">
154 LINK[type=
155 <select>
156 <xsl:choose>
157 <xsl:when test="@type='document'">
158 <option value = "document" selected = "document">Document</option>
159 <option value = "classifier">Classifier</option>
160 <option value = "source">Source</option>
161 </xsl:when>
162 <xsl:when test="@type='classifier'">
163 <option value = "classifier" selected = "classifier">Classifier</option>
164 <option value = "document">Document</option>
165 <option value = "source">Source</option>
166 </xsl:when>
167 <xsl:when test="@type='source'">
168 <option value = "source" selected = "source">Source</option>
169 <option value ="document">Document</option>
170 <option value ="classifier">Classifier</option>
171 </xsl:when>
172 <xsl:when test="@type='horizontal'">
173 <option value = "horizontal" selected = "horizontal">Horizontal</option>
174 <option value = "source" selected = "source">Source</option>
175 <option value ="document">Document</option>
176 <option value ="classifier">Classifier</option>
177 </xsl:when>
178 </xsl:choose>
179 </select>]
180 </xsl:variable>
181 <table class="header"><tbody><tr><td><xsl:copy-of select="$link"/></td><td><a href="#" class="minmax ui-icon ui-icon-minusthick" title="Click me to expand">[-]</a></td><td><a href="#" class="remove ui-icon ui-icon-closethick" title="Click me to remove"/></td></tr></tbody></table>
182 <xsl:apply-templates mode="xml-to-gui">
183 <xsl:with-param name="depth" select="$depth"/>
184 <xsl:with-param name="metadataSets" select="$metadataSets"/>
185 </xsl:apply-templates>
186 </div>
187 </xsl:template>
188
189
190 <!-- ********** GSF:TEMPLATE ********** -->
191 <xsl:template match="gsf:template" mode="xml-to-gui">
192 <xsl:param name="depth"/>
193 <xsl:param name="metadataSets"/>
194
195 <!-- CHILD = <xsl:value-of select="child[1]/@name"/> -->
196 <!-- CHILD = <xsl:value-of select="child::*[name()][1]"/> -->
197
198
199 <!-- <xsl:for-each select="child::*"> -->
200 <!-- <xsl:value-of select="name()"/> -->
201 <!-- </xsl:for-each> -->
202
203
204 <div class="gsf_template css_gsf_template block" title="gsf:template">
205 <xsl:variable name="mode">
206 <xsl:choose>
207 <xsl:when test="not(@mode)"> <!-- parameter has not been supplied -->
208 </xsl:when>
209 <xsl:otherwise>MODE=<input type="text" name="rawtextinput" size="10" value="{@mode}"/></xsl:otherwise>
210 </xsl:choose>
211 </xsl:variable>
212
213 <!-- <a href="#" class="minmax">[+]</a><a href="#" class="remove">[x]</a><a href="#" class="remove"><img src="interfaces/oran/images/green_button_close.png" alt="[x]" title="Click me to remove"/></a><a href="[myhref]" class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-home" style="float:left;"></span>Home</a> -->
214 <table class="header"><tbody><tr><td>MATCH=<input type="text" name="rawtextinput" size="10" value="{@match}"/></td><td><xsl:copy-of select="$mode"/></td><td><a href="#" class="minmax ui-icon ui-icon-plusthick" title="Click me to expand">[+]</a></td><td><a href="#" class="remove ui-icon ui-icon-closethick" title="Click me to remove"/></td></tr></tbody></table>
215
216 <table class="table" border="1">
217 <tbody>
218 <tr class="tr">
219 <td class="droppable" width="10px"></td>
220 <xsl:apply-templates mode="xml-to-gui">
221 <xsl:with-param name="depth" select="$depth"/>
222 <xsl:with-param name="metadataSets" select="$metadataSets"/>
223 </xsl:apply-templates>
224 </tr>
225 </tbody>
226 </table>
227 </div><br/>
228 </xsl:template>
229
230 <!-- ********** GSF:SWITCH ********** -->
231 <xsl:template match="gsf:switch" mode="xml-to-gui">
232 <xsl:param name="depth"/>
233 <xsl:param name="metadataSets"/>
234
235 <div class="gsf_switch css_gsf_switch block" title="gsf:switch">
236 <table class="header"><tbody><tr><td>SWITCH</td><td><a href="#" class="minmax ui-icon ui-icon-minusthick">[-]</a></td><td><a href="[myhref]" class="ui-icon ui-icon-closethick"/></td></tr></tbody></table>
237 <xsl:apply-templates mode="xml-to-gui">
238 <xsl:with-param name="depth" select="$depth"/>
239 <xsl:with-param name="metadataSets" select="$metadataSets"/>
240 </xsl:apply-templates>
241 </div>
242 </xsl:template>
243
244
245 <!-- ********** GSF:WHEN ********** -->
246 <xsl:template match="gsf:when" mode="xml-to-gui">
247 <xsl:param name="depth"/>
248 <xsl:param name="metadataSets"/>
249
250 <div class="gsf_when css_gsf_when block" title="gsf:when">
251 <table class="header"><tbody><tr><td>WHEN[test=<xsl:value-of select="@test"/>]</td><td><a href="#" class="minmax ui-icon ui-icon-minusthick">[-]</a></td><td><a href="[myhref]" class="ui-icon ui-icon-closethick"/></td></tr></tbody></table>
252 <xsl:apply-templates mode="xml-to-gui">
253 <xsl:with-param name="depth" select="$depth"/>
254 <xsl:with-param name="metadataSets" select="$metadataSets"/>
255 </xsl:apply-templates>
256 </div>
257 </xsl:template>
258
259
260 <!-- ********** GSF:OTHERWISE ********** -->
261 <xsl:template match="gsf:otherwise" mode="xml-to-gui">
262 <xsl:param name="depth"/>
263 <xsl:param name="metadataSets"/>
264
265 <div class="gsf_otherwise css_gsf_otherwise block" title="gsf:otherwise">
266 <table><tbody><tr><td>OTHERWISE</td><td><a href="#" class="minmax ui-icon ui-icon-minusthick">[-]</a></td><td><a href="#" class="remove">[x]</a></td><td><a href="[myhref]" class="ui-icon ui-icon-closethick"/></td></tr></tbody></table>
267 <xsl:apply-templates mode="xml-to-gui">
268 <xsl:with-param name="depth" select="$depth"/>
269 <xsl:with-param name="metadataSets" select="$metadataSets"/>
270 </xsl:apply-templates>
271 </div>
272 </xsl:template>
273
274
275 <!-- ********** GSF:ICON ********** -->
276 <xsl:template match="gsf:icon" mode="xml-to-gui">
277 <xsl:param name="depth"/>
278 <xsl:param name="metadataSets"/>
279
280 <div class="gsf_icon css_gsf_icon block leaf" title="gsf:icon">
281 <xsl:variable name="icon">
282 ICON[type=
283 <select>
284 <xsl:choose>
285 <xsl:when test="@type='document'">
286 <option value = "document" selected = "document">Document</option>
287 <option value = "classifier">Classifier</option>
288 <option value = "source">Source</option>
289 </xsl:when>
290 <xsl:when test="@type='classifier'">
291 <option value = "classifier" selected = "classifier">Classifier</option>
292 <option value = "document">Document</option>
293 <option value = "source">Source</option>
294 </xsl:when>
295 <xsl:when test="@type='source'">
296 <option value = "source" selected = "source">Source</option>
297 <option value ="document">Document</option>
298 <option value ="classifier">Classifier</option>
299 </xsl:when>
300 </xsl:choose>
301 </select>]
302 </xsl:variable>
303 <table class="header"><tbody><tr><td><xsl:copy-of select="$icon"/></td><td><a href="#" class="remove ui-icon ui-icon-closethick" title="Click me to remove"/></td></tr></tbody></table>
304 </div>
305 </xsl:template>
306
307
308 <!-- ********** GSF:DEFAULT ********** -->
309 <xsl:template match="gsf:default" mode="xml-to-gui">
310 <xsl:param name="depth"/>
311 <xsl:param name="metadataSets"/>
312
313 <div class="block" title="gsf:default">
314 <table class="header"><tbody><tr><td>DEFAULT</td><td><a href="#" class="minmax ui-icon ui-icon-minusthick" title="Click me to expand">[-]</a></td><td><a href="[myhref]" class="ui-icon ui-icon-closethick"/></td></tr></tbody></table>
315 <xsl:apply-templates mode="xml-to-gui">
316 <xsl:with-param name="depth" select="$depth"/>
317 <xsl:with-param name="metadataSets" select="$metadataSets"/>
318 </xsl:apply-templates>
319 </div>
320 </xsl:template>
321
322
323 <!-- ********** TEXT ********** -->
324 <xsl:template match="text()" mode="xml-to-gui">
325 <xsl:param name="depth"/>
326 <xsl:param name="metadataSets"/>
327
328 <div class="block leaf" title="gsf:text">
329 <xsl:variable name="rawtext"><xsl:value-of select="."/></xsl:variable>
330 <table class="header"><tbody><tr><td><input type="text" name="rawtextinput" size="10" value="{$rawtext}"/></td><td><a href="[myhref]" class="ui-icon ui-icon-closethick"/></td></tr></tbody></table>
331 </div>
332 </xsl:template>
333
334
335 <!-- ********** TABLE ********** -->
336 <xsl:template match="td" mode="xml-to-gui">
337 <xsl:param name="depth"/>
338 <xsl:param name="metadataSets"/>
339
340
341 <!-- <td class="td block resizable" title="td" valign="{@valign}" style='overflow: hidden;'> -->
342 <td valign="{@valign}" title="td">
343 <div class="td-div block" title="td-div">
344 <div class="neverempty block" style="height:50px">NEVER EMPTY</div>
345
346 <!-- <xsl:text>&lt;td</xsl:text>valign=<xsl:value-of select="@valign"/><xsl:text>&gt;</xsl:text><a href="#" class="minmax">[-]</a><a href="#" class="remove">[x]</a> -->
347 <xsl:apply-templates mode="xml-to-gui">
348 <xsl:with-param name="depth" select="$depth"/>
349 <xsl:with-param name="metadataSets" select="$metadataSets"/>
350 </xsl:apply-templates>
351 <!-- <xsl:text>&lt;/td&gt;</xsl:text><br/><br/> -->
352 </div>
353 </td>
354 <td class="droppable" width="10px" title="Drag a new column on to me"/>
355 </xsl:template>
356
357
358 <!-- ********** BREAK ********** -->
359 <xsl:template match="br" mode="xml-to-gui">
360 <xsl:param name="depth"/>
361 <xsl:param name="metadataSets"/>
362
363 <xsl:text>&lt;br/&gt;</xsl:text> <br/>
364
365 <xsl:apply-templates mode="xml-to-gui">
366 <xsl:with-param name="depth" select="$depth"/>
367 <xsl:with-param name="metadataSets" select="$metadataSets"/>
368 </xsl:apply-templates>
369 </xsl:template>
370
371
372 <!-- ********** MATCH ALL ********** -->
373 <xsl:template match="*" mode="xml-to-gui">
374 <xsl:param name="depth"/>
375 <xsl:param name="metadataSets"/>
376
377 <xsl:apply-templates mode="xml-to-gui">
378 <xsl:with-param name="depth" select="$depth"/>
379 <xsl:with-param name="metadataSets" select="$metadataSets"/>
380 </xsl:apply-templates>
381 </xsl:template>
382
383</xsl:stylesheet>
Note: See TracBrowser for help on using the repository browser.