Project

General

Profile

1
<?xml version="1.0"?>
2
<!--
3
	*  '$RCSfile$'
4
	*      Authors: Matt Jones, Chad Berkley
5
	*    Copyright: 2000-2007 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: walbridge $'
10
	*     '$Date: 2007-11-06 13:13:54 -0800 (Tue, 06 Nov 2007) $'
11
	* '$Revision: 3581 $'
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"
32
	version="1.0">
33
									
34
    <xsl:template name="resultstable">
35
			<body leftmargin="0" topmargin="0" marginwidth="0"
36
				marginheight="0">
37

    
38
				<p class="emphasis">
39
					<xsl:number value="count(resultset/document)" />
40
					data packages found
41
				</p>
42

    
43
				<!-- This tests to see if there are returned documents,
44
					if there are not then don't show the query results -->
45
				<xsl:if test="count(resultset/document) &gt; 0">
46

    
47
					<table class="resultstable" width="95%" align="center" border="0"
48
						cellpadding="0" cellspacing="0">
49
						<tr>
50
							<th class="tablehead_lcorner" align="right"
51
								valign="top">
52
								<img
53
									src="@style-skins-path@/default/images/transparent1x1.gif"
54
									width="1" height="1" />
55
							</th>
56
							<th class="tablehead"
57
								style="text-align: left">
58
								Title
59
							</th>
60
							<th width="15%" class="tablehead"
61
								style="text-align: left">
62
								Contacts
63
							</th>
64
							<th width="15%" class="tablehead"
65
								style="text-align: left">
66
								Organization
67
							</th>
68
							<th width="15%" class="tablehead"
69
								style="text-align: left">
70
								Keywords
71
							</th>
72
							<xsl:if test="$enableediting = 'true'">
73
								<th width="10%" class="tablehead"
74
									style="text-align: middle">
75
									Actions
76
								</th>
77
							</xsl:if>
78
							<th class="tablehead_rcorner" align="right"
79
								valign="top">
80
								<img
81
									src="@style-skins-path@/default/images/transparent1x1.gif"
82
									width="1" height="1" />
83
							</th>
84
						</tr>
85

    
86
						<xsl:for-each select="resultset/document">
87
							<xsl:sort
88
								select="./param[@name='dataset/title']" />
89
							<tr valign="top" class="subpanel">
90
								<xsl:attribute name="class">
91
									<xsl:choose>
92
										<xsl:when
93
											test="position() mod 2 = 1">
94
											rowodd
95
										</xsl:when>
96
										<xsl:when
97
											test="position() mod 2 = 0">
98
											roweven
99
										</xsl:when>
100
									</xsl:choose>
101
								</xsl:attribute>
102

    
103
								<td width="10">&#160;</td>
104
								<td class="text_plain">
105
									<form action="@servlet-path@"
106
										method="POST">
107
										<xsl:attribute name="name"><xsl:value-of
108
												select="translate(./docid, '()-.', '____')" /></xsl:attribute>
109

    
110
										<input type="hidden"
111
											name="qformat" />
112
										<input type="hidden"
113
											name="sessionid" />
114
										<xsl:if
115
											test="$enableediting = 'true'">
116
											<input type="hidden"
117
												name="enableediting" value="{$enableediting}" />
118
										</xsl:if>
119
										<input type="hidden"
120
											name="action" value="read" />
121
										<input type="hidden"
122
											name="docid">
123
											<xsl:attribute
124
												name="value"><xsl:value-of
125
												select="./docid" /></xsl:attribute>
126
										</input>
127
										<xsl:for-each
128
											select="./relation">
129
											<input type="hidden"
130
												name="docid">
131
												<xsl:attribute
132
													name="value"><xsl:value-of
133
														select="./relationdoc" /></xsl:attribute>
134
											</input>
135
										</xsl:for-each>
136

    
137
										<a>
138
											<xsl:attribute
139
												name="href">javascript:submitform('read',document.<xsl:value-of
140
													select="translate(./docid, '()-.', '____')" />)</xsl:attribute>
141
											<xsl:text>
142
												&#187;&#160;
143
											</xsl:text>
144
											<xsl:choose>
145
												<xsl:when test="./param[@name='dataset/title']!=''"><xsl:value-of
146
														select="./param[@name='dataset/title']" />
147
												</xsl:when>
148
												<xsl:otherwise>
149
													<xsl:value-of
150
														select="./param[@name='citation/title']" />
151
													<xsl:value-of
152
														select="./param[@name='software/title']" />
153
													<xsl:value-of
154
														select="./param[@name='protocol/title']" />
155
													<xsl:value-of
156
														select="./param[@name='idinfo/citation/citeinfo/title']" />
157
												</xsl:otherwise>
158
											</xsl:choose>
159
										</a>
160
										<br />
161
										<br />
162
										<p>
163
											<pre>ID: <xsl:value-of
164
													select="./docid" /></pre>
165
										</p>
166

    
167
									</form>
168
								</td>
169

    
170
								<td class="text_plain">
171
									<xsl:for-each
172
										select="./param[@name='originator/individualName/surName']">
173
										<xsl:value-of select="." />
174
										<br />
175
									</xsl:for-each>
176
									<xsl:for-each
177
										select="./param[@name='creator/individualName/surName']">
178
										<xsl:value-of select="." />
179
										<br />
180
									</xsl:for-each>
181
									<xsl:for-each
182
										select="./param[@name='idinfo/citation/citeinfo/origin']">
183
										<xsl:value-of select="." />
184
										<br />
185
									</xsl:for-each>
186

    
187
								</td>
188
								<td class="text_plain">
189
									<xsl:value-of
190
										select="./param[@name='originator/organizationName']" />
191
									<xsl:value-of
192
										select="./param[@name='creator/organizationName']" />
193

    
194
								</td>
195

    
196
								<td class="text_plain">
197
									<xsl:for-each
198
										select="./param[@name='keyword']">
199
										<xsl:value-of select="." />
200
										<br />
201
									</xsl:for-each>
202
									<xsl:for-each
203
										select="./param[@name='idinfo/keywords/theme/themekey']">
204
										<xsl:value-of select="." />
205
										<br />
206
									</xsl:for-each>
207

    
208
								</td>
209

    
210
								<xsl:if test="$enableediting = 'true'">
211
									<td class="text_plain">
212
										<form action="@servlet-path@"
213
											method="POST">
214
											<input type="hidden"
215
												name="action" value="read" />
216
											<input type="hidden"
217
												name="qformat" value="{$qformat}" />
218
											<input type="hidden"
219
												name="sessionid" value="{$sessid}" />
220
											<input type="hidden"
221
												name="docid">
222
												<xsl:attribute
223
													name="value">
224
													<xsl:value-of
225
														select="./docid" />
226
												</xsl:attribute>
227
											</input>
228
											<center>
229
												<input type="SUBMIT"
230
													value=" View " name="View">
231
												</input>
232
											</center>
233
										</form>
234
										<form
235
											action="@cgi-prefix@/register-dataset.cgi" method="POST">
236
											<input type="hidden"
237
												name="stage" value="modify" />
238
											<input type="hidden"
239
												name="cfg" value="{$qformat}" />
240
											<input type="hidden"
241
												name="sessionid" value="{$sessid}" />
242
											<input type="hidden"
243
												name="docid">
244
												<xsl:attribute
245
													name="value">
246
													<xsl:value-of
247
														select="./docid" />
248
												</xsl:attribute>
249
											</input>
250
											<center>
251
												<input type="SUBMIT"
252
													value=" Edit " name="Edit">
253
												</input>
254
											</center>
255
										</form>
256
										<form
257
											action="@cgi-prefix@/register-dataset.cgi" method="POST">
258
											<input type="hidden"
259
												name="stage" value="delete" />
260
											<input type="hidden"
261
												name="cfg" value="{$qformat}" />
262
											<input type="hidden"
263
												name="sessionid" value="{$sessid}" />
264
											<input type="hidden"
265
												name="docid">
266
												<xsl:attribute
267
													name="value">
268
													<xsl:value-of
269
														select="./docid" />
270
												</xsl:attribute>
271
											</input>
272
											<center>
273
												<input type="SUBMIT"
274
													value="Delete" name="Delete">
275
												</input>
276
											</center>
277
										</form>
278
									</td>
279
								</xsl:if>
280
								<td width="10">&#160;</td>
281
							</tr>
282
							<tr>
283
                <td width="10" class="searchresultslead"></td>
284
								<td colspan="5" class="searchresultsdivider">&#160;</td>
285
							</tr>
286

    
287
						</xsl:for-each>
288
					</table>
289

    
290
				</xsl:if>
291
			</body>
292
    </xsl:template>
293

    
294
</xsl:stylesheet>
(15-15/20)