1
|
<?xml version="1.0"?>
|
2
|
<!--
|
3
|
* '$RCSfile$'
|
4
|
* Authors: Matt Jones, CHad Berkley
|
5
|
* Copyright: 2000 Regents of the University of California and the
|
6
|
* National Center for Ecological Analysis and Synthesis
|
7
|
* For Details: http://www.nceas.ucsb.edu/
|
8
|
*
|
9
|
* '$Author: leinfelder $'
|
10
|
* '$Date: 2008-09-30 14:45:55 -0700 (Tue, 30 Sep 2008) $'
|
11
|
* '$Revision: 4411 $'
|
12
|
*
|
13
|
* This program is free software; you can redistribute it and/or modify
|
14
|
* it under the terms of the GNU General Public License as published by
|
15
|
* the Free Software Foundation; either version 2 of the License, or
|
16
|
* (at your option) any later version.
|
17
|
*
|
18
|
* This program is distributed in the hope that it will be useful,
|
19
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
20
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
21
|
* GNU General Public License for more details.
|
22
|
*
|
23
|
* You should have received a copy of the GNU General Public License
|
24
|
* along with this program; if not, write to the Free Software
|
25
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
26
|
*
|
27
|
* This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to
|
28
|
* convert an XML file showing the resultset of a query
|
29
|
* into an HTML format suitable for rendering with modern web browsers.
|
30
|
-->
|
31
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
|
32
|
|
33
|
<xsl:output method="html"/>
|
34
|
<xsl:param name="sessid"/>
|
35
|
<xsl:param name="qformat">default</xsl:param>
|
36
|
<xsl:param name="enableediting">false</xsl:param>
|
37
|
<xsl:param name="contextURL"/>
|
38
|
<xsl:template match="/">
|
39
|
<script language="JavaScript">
|
40
|
<![CDATA[
|
41
|
submitform = function(action,docid,form_ref) {
|
42
|
form_ref.action.value=action;
|
43
|
form_ref.docid.value=docid;
|
44
|
form_ref.sessionid.value="]]><xsl:value-of select="$sessid" /><![CDATA[";
|
45
|
form_ref.qformat.value="first";
|
46
|
form_ref.insertTemplate.value="1";
|
47
|
form_ref.submit();
|
48
|
}
|
49
|
setSelect = function(form_ref, checkBoxName, checked) {
|
50
|
var formElements = form_ref.elements;
|
51
|
for (var i=0; i<formElements.length; i++) {
|
52
|
var myElement = formElements[i];
|
53
|
if (myElement.name == checkBoxName) {
|
54
|
myElement.checked = checked;
|
55
|
}
|
56
|
}
|
57
|
}
|
58
|
]]>
|
59
|
</script>
|
60
|
<script type="text/javascript" language="Javascript">
|
61
|
<![CDATA[
|
62
|
downloadMergedResponseData = function(formId, fieldFormId) {
|
63
|
|
64
|
if (!areItemsSelected('docid')) {
|
65
|
alert("Please select at least one dataset");
|
66
|
return false;
|
67
|
}
|
68
|
|
69
|
//transfer the assessmentItemId to this form
|
70
|
//document.getElementById("questionId").value = document.getElementById("assessmentItemId").value;
|
71
|
//alert("questionId: " + document.getElementById("questionId").value);
|
72
|
|
73
|
var submitFormObj = document.getElementById(formId);
|
74
|
submitFormObj.qformat.value = 'csv';
|
75
|
submitFormObj.action.value = 'dataquery';
|
76
|
|
77
|
//the form that holds the metadata field mappings - but in the header!
|
78
|
var fieldFormObj =
|
79
|
window.document.getElementById("iframeheaderclass").contentDocument.getElementById(fieldFormId);
|
80
|
//alert("fieldFormObj: " + fieldFormObj);
|
81
|
|
82
|
multipleAssessmentSearch(submitFormObj, fieldFormObj);
|
83
|
|
84
|
submitFormObj.submit();
|
85
|
}
|
86
|
editCart = function(formId, operation) {
|
87
|
|
88
|
var metacatURL = "]]><xsl:value-of select="$contextURL" /><![CDATA[/metacat";
|
89
|
if (!areItemsSelected('docid')) {
|
90
|
alert("Please select at least one dataset");
|
91
|
return false;
|
92
|
}
|
93
|
|
94
|
var submitFormObj = document.getElementById(formId);
|
95
|
submitFormObj.qformat.value = 'first';
|
96
|
submitFormObj.action.value = 'editcart';
|
97
|
submitFormObj.operation.value = operation;
|
98
|
|
99
|
var myUpdate = new Ajax.Request(
|
100
|
metacatURL,
|
101
|
{ method: 'post',
|
102
|
parameters: Form.serialize(submitFormObj),
|
103
|
evalScripts: true,
|
104
|
onSuccess: function(transport) {
|
105
|
//alert('Cart changes saved: ' + operation);
|
106
|
//if we are in the cart, we should refresh the entire page
|
107
|
if (document.getElementById("ajaxCartResults")) {
|
108
|
window.location.reload();
|
109
|
}
|
110
|
else {
|
111
|
window.document.getElementById("iframeheaderclass").src=window.document.getElementById("iframeheaderclass").src;
|
112
|
}
|
113
|
},
|
114
|
onFailure: function(transport) {alert('failure making ajax call');}
|
115
|
});
|
116
|
|
117
|
}
|
118
|
read = function(formId, docid, divId) {
|
119
|
|
120
|
//alert("divId: " + divId);
|
121
|
|
122
|
var metacatURL = "]]><xsl:value-of select="$contextURL" /><![CDATA[/metacat";
|
123
|
|
124
|
var submitFormObj = document.getElementById(formId);
|
125
|
submitFormObj.qformat.value = 'first';
|
126
|
submitFormObj.action.value = 'read';
|
127
|
submitFormObj.docid.value = docid;
|
128
|
submitFormObj.insertTemplate.value = '0';
|
129
|
|
130
|
var myUpdate = new Ajax.Updater(
|
131
|
divId,
|
132
|
metacatURL,
|
133
|
{ method: 'post',
|
134
|
parameters: Form.serialize(submitFormObj),
|
135
|
evalScripts: true,
|
136
|
onSuccess: function(transport) {showDiv(divId); },
|
137
|
onFailure: function(transport) {alert('failure making ajax call');}
|
138
|
});
|
139
|
|
140
|
}
|
141
|
areItemsSelected = function(checkBoxName) {
|
142
|
var checkBoxes = document.getElementsByName(checkBoxName);
|
143
|
|
144
|
for (var i=0; i< checkBoxes.length; i++) {
|
145
|
if (checkBoxes[i].checked == true) {
|
146
|
return true;
|
147
|
}
|
148
|
}
|
149
|
//alert("please select a checkbox: " + checkBoxName);
|
150
|
return false;
|
151
|
|
152
|
}
|
153
|
setControlVisibility = function() {
|
154
|
if (document.getElementById("ajaxCartResults")) {
|
155
|
new Effect.Appear("removeCart");
|
156
|
//new Effect.Fade("addCart");
|
157
|
}
|
158
|
else {
|
159
|
new Effect.Appear("addCart");
|
160
|
//new Effect.Fade("removeCart");
|
161
|
}
|
162
|
}
|
163
|
|
164
|
hideDiv = function(divId) {
|
165
|
new Effect.Fade(divId);
|
166
|
//Element.hide(divId);
|
167
|
}
|
168
|
showDiv = function(divId) {
|
169
|
new Effect.Appear(divId)
|
170
|
//Element.show(divId);
|
171
|
}
|
172
|
]]>
|
173
|
</script>
|
174
|
|
175
|
<p class="emphasis">Assessments found: <xsl:number value="count(resultset/document)" /></p>
|
176
|
|
177
|
<!-- This tests to see if there are returned documents,
|
178
|
if there are not then don't show the query results -->
|
179
|
|
180
|
<xsl:if test="count(resultset/document) > 0">
|
181
|
<script type="text/javascript" language="Javascript">
|
182
|
<![CDATA[
|
183
|
//call on load
|
184
|
setControlVisibility();
|
185
|
]]>
|
186
|
</script>
|
187
|
<p>
|
188
|
<a>
|
189
|
<xsl:attribute name="href">javascript:{}</xsl:attribute>
|
190
|
<xsl:attribute name="onclick">javascript:downloadMergedResponseData('assessmentForm', 'fieldForm')</xsl:attribute>
|
191
|
<img border="none">
|
192
|
<xsl:attribute name="src">
|
193
|
<xsl:value-of select="$contextURL" />
|
194
|
<xsl:text>/style/images/page_white_put.png</xsl:text>
|
195
|
</xsl:attribute>
|
196
|
</img>
|
197
|
<xsl:text> Download Selection (.csv)</xsl:text>
|
198
|
</a>
|
199
|
</p>
|
200
|
<div id="addCart" style="display:none;">
|
201
|
<p/>
|
202
|
<p>
|
203
|
<a>
|
204
|
<xsl:attribute name="href">javascript:{}</xsl:attribute>
|
205
|
<xsl:attribute name="onclick">javascript:editCart('assessmentForm', 'add')</xsl:attribute>
|
206
|
<img border="none">
|
207
|
<xsl:attribute name="src">
|
208
|
<xsl:value-of select="$contextURL" />
|
209
|
<xsl:text>/style/images/fav.gif</xsl:text>
|
210
|
</xsl:attribute>
|
211
|
</img>
|
212
|
<xsl:text> Add Selection to Cart</xsl:text>
|
213
|
</a>
|
214
|
</p>
|
215
|
</div>
|
216
|
<div id="removeCart" style="display:none;">
|
217
|
<p/>
|
218
|
<p>
|
219
|
<a>
|
220
|
<xsl:attribute name="href">javascript:{}</xsl:attribute>
|
221
|
<xsl:attribute name="onclick">javascript:editCart('assessmentForm', 'remove')</xsl:attribute>
|
222
|
<!-- <xsl:text>Remove </xsl:text> -->
|
223
|
<img border="none">
|
224
|
<xsl:attribute name="src">
|
225
|
<xsl:value-of select="$contextURL" />
|
226
|
<xsl:text>/style/images/delete.gif</xsl:text>
|
227
|
</xsl:attribute>
|
228
|
</img>
|
229
|
<xsl:text> Remove Selection from Cart</xsl:text>
|
230
|
</a>
|
231
|
</p>
|
232
|
</div>
|
233
|
|
234
|
<!-- for reading the assessment details -->
|
235
|
<form action="{$contextURL}/metacat" method="POST" id="readForm" name="readForm" >
|
236
|
<input type="hidden" name="qformat" value="first" />
|
237
|
<input type="hidden" name="sessionid">
|
238
|
<xsl:attribute name="value">
|
239
|
<xsl:value-of select="$sessid" />
|
240
|
</xsl:attribute>
|
241
|
</input>
|
242
|
<input type="hidden" name="action" value="read" />
|
243
|
<input type="hidden" name="docid" />
|
244
|
<input type="hidden" name="insertTemplate" value="1"/>
|
245
|
</form>
|
246
|
|
247
|
<!-- for managing the ajax actions -->
|
248
|
<form action="{$contextURL}/metacat" method="POST" id="assessmentForm" name="assessmentForm" >
|
249
|
<input type="hidden" name="qformat" value="first" />
|
250
|
<input type="hidden" name="sessionid">
|
251
|
<xsl:attribute name="value">
|
252
|
<xsl:value-of select="$sessid" />
|
253
|
</xsl:attribute>
|
254
|
</input>
|
255
|
<input type="hidden" name="action" value="read" />
|
256
|
<input type="hidden" name="dataquery" />
|
257
|
<input type="hidden" name="operation" />
|
258
|
<xsl:element name="input">
|
259
|
<xsl:attribute name="type">hidden</xsl:attribute>
|
260
|
<xsl:attribute name="id">questionId</xsl:attribute>
|
261
|
<xsl:attribute name="name">questionId</xsl:attribute>
|
262
|
<xsl:attribute name="value"></xsl:attribute>
|
263
|
</xsl:element>
|
264
|
|
265
|
<table width="95%" align="left" border="0" cellpadding="0"
|
266
|
cellspacing="0">
|
267
|
<tr>
|
268
|
<th style="text-align: left">
|
269
|
<input type="checkbox">
|
270
|
<xsl:attribute name="onclick">setSelect(document.assessmentForm, 'docid', this.checked)</xsl:attribute>
|
271
|
</input>
|
272
|
</th>
|
273
|
<th style="text-align: left">
|
274
|
Assessment Title
|
275
|
</th>
|
276
|
<th style="text-align: left">
|
277
|
Course Title
|
278
|
</th>
|
279
|
<th style="text-align: left">
|
280
|
Instructor[s]
|
281
|
</th>
|
282
|
<th style="text-align: left">
|
283
|
Organization[s]
|
284
|
</th>
|
285
|
<th style="text-align: left">
|
286
|
Keywords
|
287
|
</th>
|
288
|
</tr>
|
289
|
|
290
|
<xsl:for-each select="resultset/document">
|
291
|
<xsl:sort select="./param[@name='assessment/@id']" />
|
292
|
<xsl:variable name="divId">
|
293
|
<xsl:text>ajaxDiv</xsl:text><xsl:value-of select="./docid" />
|
294
|
</xsl:variable>
|
295
|
<tr valign="top" class="subpanel">
|
296
|
<xsl:attribute name="class">
|
297
|
<xsl:choose>
|
298
|
<xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
|
299
|
<xsl:when test="position() mod 2 = 0">roweven</xsl:when>
|
300
|
</xsl:choose>
|
301
|
</xsl:attribute>
|
302
|
|
303
|
<td class="text_plain">
|
304
|
<input type="checkbox" name="docid">
|
305
|
<xsl:attribute name="value">
|
306
|
<xsl:value-of select="./docid" />
|
307
|
</xsl:attribute>
|
308
|
</input>
|
309
|
</td>
|
310
|
<td>
|
311
|
|
312
|
<a>
|
313
|
<xsl:attribute name="href">javascript:submitform('read','<xsl:value-of select="./docid" />',document.readForm)</xsl:attribute>
|
314
|
<xsl:text>» </xsl:text>
|
315
|
<xsl:value-of select="./param[@name='assessment/@title']" />
|
316
|
</a>
|
317
|
(<xsl:value-of select="./docid" />)
|
318
|
|
319
|
<br />
|
320
|
|
321
|
<!--include question ids here -->
|
322
|
<xsl:for-each select="./param[@name='assessmentItems/assessmentItem/assessmentItemId']" >
|
323
|
<input type="hidden">
|
324
|
<xsl:attribute name="name">
|
325
|
<xsl:value-of select="../docid" />
|
326
|
</xsl:attribute>
|
327
|
<xsl:attribute name="value">
|
328
|
<xsl:value-of select="." />
|
329
|
</xsl:attribute>
|
330
|
</input>
|
331
|
</xsl:for-each>
|
332
|
|
333
|
<br/>
|
334
|
|
335
|
</td>
|
336
|
|
337
|
<td class="text_plain">
|
338
|
<xsl:for-each
|
339
|
select="./param[@name='lom/general/title/string']">
|
340
|
<xsl:value-of select="." />
|
341
|
<br />
|
342
|
</xsl:for-each>
|
343
|
</td>
|
344
|
<td class="text_plain">
|
345
|
<xsl:for-each
|
346
|
select="./param[@name='individualName/surName']">
|
347
|
<xsl:value-of select="." />
|
348
|
<br />
|
349
|
</xsl:for-each>
|
350
|
</td>
|
351
|
<td class="text_plain">
|
352
|
<xsl:for-each
|
353
|
select="./param[@name='organizationName']">
|
354
|
<xsl:value-of select="." />
|
355
|
<br />
|
356
|
</xsl:for-each>
|
357
|
</td>
|
358
|
|
359
|
<td class="text_plain">
|
360
|
<xsl:for-each
|
361
|
select="./param[@name='keyword']">
|
362
|
<xsl:value-of select="." />
|
363
|
<br />
|
364
|
</xsl:for-each>
|
365
|
<xsl:for-each
|
366
|
select="./param[@name='lom/general/keyword/string']">
|
367
|
<xsl:value-of select="." />
|
368
|
<br />
|
369
|
</xsl:for-each>
|
370
|
|
371
|
</td>
|
372
|
|
373
|
</tr>
|
374
|
|
375
|
<tr>
|
376
|
<td width="30"> </td>
|
377
|
<td colspan="5">
|
378
|
Details
|
379
|
<a>
|
380
|
<xsl:attribute name="href">javascript:read('readForm', '<xsl:value-of select="./docid" />', '<xsl:value-of select="$divId" />')</xsl:attribute>
|
381
|
<img border="none">
|
382
|
<xsl:attribute name="src">
|
383
|
<xsl:value-of select="$contextURL" />
|
384
|
<xsl:text>/style/images/next.gif</xsl:text>
|
385
|
</xsl:attribute>
|
386
|
</img>
|
387
|
</a>
|
388
|
/
|
389
|
<a>
|
390
|
<xsl:attribute name="href">javascript:hideDiv('<xsl:value-of select="$divId" />')</xsl:attribute>
|
391
|
<img border="none">
|
392
|
<xsl:attribute name="src">
|
393
|
<xsl:value-of select="$contextURL" />
|
394
|
<xsl:text>/style/images/previous.gif</xsl:text>
|
395
|
</xsl:attribute>
|
396
|
</img>
|
397
|
</a>
|
398
|
|
399
|
</td>
|
400
|
</tr>
|
401
|
|
402
|
<tr>
|
403
|
<td> </td>
|
404
|
<td colspan="5">
|
405
|
<div style="display:none;">
|
406
|
<xsl:attribute name="id">
|
407
|
<xsl:value-of select="$divId" />
|
408
|
</xsl:attribute>
|
409
|
Assessment details...
|
410
|
</div>
|
411
|
</td>
|
412
|
</tr>
|
413
|
|
414
|
<tr class="searchresultsdivider">
|
415
|
<td colspan="6">
|
416
|
<img
|
417
|
src="{$contextURL}/style/skins/default/images/transparent1x1.gif"
|
418
|
width="1" height="1" />
|
419
|
</td>
|
420
|
</tr>
|
421
|
|
422
|
</xsl:for-each>
|
423
|
|
424
|
</table>
|
425
|
|
426
|
</form>
|
427
|
|
428
|
</xsl:if>
|
429
|
</xsl:template>
|
430
|
|
431
|
</xsl:stylesheet>
|