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: 2010-12-14 15:30:56 -0800 (Tue, 14 Dec 2010) $'
|
11
|
* '$Revision: 5737 $'
|
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
|
32
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
33
|
xmlns:sms="http://ecoinformatics.org/sms/annotation.0.9"
|
34
|
version="1.0">
|
35
|
<xsl:import href="annotation-root.xsl"/>
|
36
|
|
37
|
<xsl:output method="html" />
|
38
|
<xsl:param name="sessid" />
|
39
|
<xsl:param name="qformat">semtools</xsl:param>
|
40
|
<xsl:param name="enableediting">false</xsl:param>
|
41
|
<xsl:param name="contextURL"/>
|
42
|
<xsl:template match="/">
|
43
|
<html>
|
44
|
<head>
|
45
|
<title>Search Results</title>
|
46
|
<link rel="stylesheet" type="text/css"
|
47
|
href="/knb/style/skins/{$qformat}/{$qformat}.css" />
|
48
|
<script language="Javascript" type="text/JavaScript"
|
49
|
src="/knb/style/skins/{$qformat}/{$qformat}.js" />
|
50
|
<script language="Javascript" type="text/JavaScript"
|
51
|
src="/knb/style/common/branding.js" />
|
52
|
</head>
|
53
|
|
54
|
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
55
|
<script language="JavaScript">
|
56
|
insertTemplateOpening('<xsl:value-of select="$contextURL" />'); insertSearchBox('<xsl:value-of select="$contextURL" />');
|
57
|
</script>
|
58
|
|
59
|
<div id="content_wrapper">
|
60
|
|
61
|
<table style="width:100%;" align="center" border="0"
|
62
|
cellpadding="5" cellspacing="0">
|
63
|
<tr>
|
64
|
<td align="left">
|
65
|
<p class="emphasis">
|
66
|
<xsl:number
|
67
|
value="count(resultset/document)" />
|
68
|
total records found
|
69
|
</p>
|
70
|
</td>
|
71
|
</tr>
|
72
|
</table>
|
73
|
|
74
|
<table align="left" border="0" cellpadding="0" cellspacing="5" width="100%">
|
75
|
<tr valign="top">
|
76
|
|
77
|
<!-- EML HERE -->
|
78
|
<xsl:if test="count(resultset/document[docname='eml']) > 0">
|
79
|
<td>
|
80
|
<xsl:call-template name="emlResults"/>
|
81
|
</td>
|
82
|
</xsl:if>
|
83
|
|
84
|
</tr>
|
85
|
</table>
|
86
|
|
87
|
</div>
|
88
|
|
89
|
<script language="JavaScript">
|
90
|
insertTemplateClosing('<xsl:value-of select="$contextURL" />');
|
91
|
</script>
|
92
|
</body>
|
93
|
</html>
|
94
|
</xsl:template>
|
95
|
|
96
|
<xsl:template name="emlResults">
|
97
|
|
98
|
<div id="results">
|
99
|
|
100
|
<xsl:for-each
|
101
|
select="resultset/document[docname='eml']">
|
102
|
<xsl:sort
|
103
|
select="./param[@name='dataset/title']" />
|
104
|
|
105
|
<!-- the header portion of the result -->
|
106
|
<div>
|
107
|
<xsl:attribute name="class">
|
108
|
<xsl:choose>
|
109
|
<xsl:when test="position() mod 2 = 1">rowodd accordian</xsl:when>
|
110
|
<xsl:when test="position() mod 2 = 0">roweven accordian</xsl:when>
|
111
|
</xsl:choose>
|
112
|
</xsl:attribute>
|
113
|
|
114
|
<a>
|
115
|
<xsl:attribute name="href">
|
116
|
<xsl:value-of select="$tripleURI"/><xsl:value-of select="./docid"/>
|
117
|
</xsl:attribute>
|
118
|
<b>
|
119
|
<xsl:value-of select="./param[@name='dataset/title']"/>
|
120
|
</b>
|
121
|
</a>
|
122
|
(<xsl:value-of select="./docid" />)
|
123
|
</div>
|
124
|
|
125
|
<!-- the content part -->
|
126
|
<div>
|
127
|
<xsl:attribute name="class">
|
128
|
<xsl:choose>
|
129
|
<xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
|
130
|
<xsl:when test="position() mod 2 = 0">roweven</xsl:when>
|
131
|
</xsl:choose>
|
132
|
</xsl:attribute>
|
133
|
|
134
|
<table class="onehundred_percent">
|
135
|
|
136
|
<tr>
|
137
|
<td colspan="2">
|
138
|
<!-- citation -->
|
139
|
<xsl:call-template name="citation"/>
|
140
|
</td>
|
141
|
</tr>
|
142
|
|
143
|
<tr>
|
144
|
|
145
|
<!-- annotation section -->
|
146
|
<td width="50%">
|
147
|
<!-- render the annotation -->
|
148
|
<xsl:for-each select="./*[local-name()='annotation']">
|
149
|
<xsl:call-template name="annotation">
|
150
|
<xsl:with-param name="showAll" select="'true'"/>
|
151
|
</xsl:call-template>
|
152
|
</xsl:for-each>
|
153
|
</td>
|
154
|
|
155
|
<!-- EML section (div for padding) -->
|
156
|
<td>
|
157
|
<div class="subGroup">
|
158
|
<xsl:call-template name="emlDetails"/>
|
159
|
</div>
|
160
|
</td>
|
161
|
|
162
|
</tr>
|
163
|
|
164
|
</table>
|
165
|
|
166
|
</div>
|
167
|
|
168
|
</xsl:for-each>
|
169
|
|
170
|
</div>
|
171
|
|
172
|
</xsl:template>
|
173
|
|
174
|
<xsl:template name="citation">
|
175
|
<table class="subGroup subGroup_border onehundred_percent">
|
176
|
<tr>
|
177
|
<td class="rowodd">
|
178
|
Citation:
|
179
|
</td>
|
180
|
<td class="roweven">
|
181
|
<!-- the author -->
|
182
|
<xsl:choose>
|
183
|
<xsl:when test="count(./param[@name='creator/individualName/surName']) > 0">
|
184
|
<xsl:for-each select="./param[@name='creator/individualName/surName']">
|
185
|
<xsl:value-of select="." />
|
186
|
<xsl:if test="position() != last()">, </xsl:if>
|
187
|
</xsl:for-each>
|
188
|
</xsl:when>
|
189
|
<xsl:otherwise>
|
190
|
<xsl:for-each select="./param[@name='creator/organizationName']">
|
191
|
<xsl:value-of select="." />
|
192
|
<xsl:if test="position() != last()">, </xsl:if>
|
193
|
</xsl:for-each>
|
194
|
</xsl:otherwise>
|
195
|
</xsl:choose>
|
196
|
<xsl:text>. </xsl:text>
|
197
|
<!-- the pubdate -->
|
198
|
<xsl:value-of select="substring(string(./param[@name='dataset/pubDate']),1,4)"/>
|
199
|
<xsl:if test="substring(string(./param[@name='dataset/pubDate']),1,4) != ''">. </xsl:if>
|
200
|
<!-- the link -->
|
201
|
<a>
|
202
|
<xsl:attribute name="href">
|
203
|
<xsl:value-of select="$tripleURI"/><xsl:value-of select="./docid"/>
|
204
|
</xsl:attribute>
|
205
|
<xsl:value-of select="$contextURL" /><![CDATA[/metacat/]]><xsl:value-of select="./docid"/><![CDATA[/]]><xsl:value-of select="$qformat" />
|
206
|
</a>
|
207
|
</td>
|
208
|
</tr>
|
209
|
</table>
|
210
|
</xsl:template>
|
211
|
|
212
|
<xsl:template name="emlDetails">
|
213
|
<!-- render the DP details -->
|
214
|
<table class="subGroup subGroup_border onehundred_percent">
|
215
|
<tr>
|
216
|
<th>
|
217
|
Owner[s]
|
218
|
</th>
|
219
|
<th>
|
220
|
Organizations[s]
|
221
|
</th>
|
222
|
<th>
|
223
|
Keyword[s]
|
224
|
</th>
|
225
|
</tr>
|
226
|
<tr>
|
227
|
<td>
|
228
|
<xsl:for-each
|
229
|
select="./param[@name='creator/individualName/surName']">
|
230
|
<xsl:value-of select="." />
|
231
|
<br/>
|
232
|
</xsl:for-each>
|
233
|
</td>
|
234
|
<td>
|
235
|
<xsl:for-each
|
236
|
select="./param[@name='creator/organizationName']">
|
237
|
<xsl:value-of select="." />
|
238
|
<br/>
|
239
|
</xsl:for-each>
|
240
|
</td>
|
241
|
<td>
|
242
|
<xsl:for-each
|
243
|
select="./param[@name='keyword']">
|
244
|
<xsl:value-of select="." />
|
245
|
<br/>
|
246
|
</xsl:for-each>
|
247
|
</td>
|
248
|
</tr>
|
249
|
</table>
|
250
|
</xsl:template>
|
251
|
|
252
|
|
253
|
</xsl:stylesheet>
|