1 |
5385
|
leinfelder
|
<?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$'
|
10 |
|
|
* '$Date$'
|
11 |
|
|
* '$Revision$'
|
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 |
5536
|
leinfelder
|
<xsl:stylesheet
|
32 |
|
|
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
33 |
|
|
xmlns:sms="http://ecoinformatics.org/sms/annotation.0.9"
|
34 |
5385
|
leinfelder
|
version="1.0">
|
35 |
5541
|
leinfelder
|
<xsl:import href="annotation-root.xsl"/>
|
36 |
5385
|
leinfelder
|
|
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 |
5743
|
leinfelder
|
|
43 |
|
|
<xsl:param name="labelWidth">120</xsl:param>
|
44 |
|
|
|
45 |
5781
|
leinfelder
|
<xsl:param name="showAdd">true</xsl:param>
|
46 |
|
|
<xsl:param name="showRemove">true</xsl:param>
|
47 |
|
|
|
48 |
5385
|
leinfelder
|
<xsl:template match="/">
|
49 |
|
|
<html>
|
50 |
|
|
<head>
|
51 |
|
|
<title>Search Results</title>
|
52 |
|
|
<link rel="stylesheet" type="text/css"
|
53 |
|
|
href="/knb/style/skins/{$qformat}/{$qformat}.css" />
|
54 |
|
|
<script language="Javascript" type="text/JavaScript"
|
55 |
|
|
src="/knb/style/skins/{$qformat}/{$qformat}.js" />
|
56 |
|
|
<script language="Javascript" type="text/JavaScript"
|
57 |
|
|
src="/knb/style/common/branding.js" />
|
58 |
|
|
</head>
|
59 |
|
|
|
60 |
5574
|
leinfelder
|
<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
|
61 |
5385
|
leinfelder
|
<script language="JavaScript">
|
62 |
|
|
insertTemplateOpening('<xsl:value-of select="$contextURL" />'); insertSearchBox('<xsl:value-of select="$contextURL" />');
|
63 |
|
|
</script>
|
64 |
5574
|
leinfelder
|
|
65 |
|
|
<div id="content_wrapper">
|
66 |
|
|
|
67 |
5385
|
leinfelder
|
<table style="width:100%;" align="center" border="0"
|
68 |
|
|
cellpadding="5" cellspacing="0">
|
69 |
|
|
<tr>
|
70 |
|
|
<td align="left">
|
71 |
|
|
<p class="emphasis">
|
72 |
5784
|
leinfelder
|
<span class="resultCount">
|
73 |
|
|
<xsl:number
|
74 |
|
|
value="count(resultset/document)" />
|
75 |
|
|
</span>
|
76 |
5385
|
leinfelder
|
total records found
|
77 |
|
|
</p>
|
78 |
|
|
</td>
|
79 |
|
|
</tr>
|
80 |
|
|
</table>
|
81 |
|
|
|
82 |
5536
|
leinfelder
|
<table align="left" border="0" cellpadding="0" cellspacing="5" width="100%">
|
83 |
5385
|
leinfelder
|
<tr valign="top">
|
84 |
|
|
|
85 |
|
|
<!-- EML HERE -->
|
86 |
|
|
<xsl:if test="count(resultset/document[docname='eml']) > 0">
|
87 |
5533
|
leinfelder
|
<td>
|
88 |
5385
|
leinfelder
|
<xsl:call-template name="emlResults"/>
|
89 |
|
|
</td>
|
90 |
|
|
</xsl:if>
|
91 |
|
|
|
92 |
|
|
</tr>
|
93 |
|
|
</table>
|
94 |
|
|
|
95 |
5574
|
leinfelder
|
</div>
|
96 |
|
|
|
97 |
5385
|
leinfelder
|
<script language="JavaScript">
|
98 |
|
|
insertTemplateClosing('<xsl:value-of select="$contextURL" />');
|
99 |
|
|
</script>
|
100 |
|
|
</body>
|
101 |
|
|
</html>
|
102 |
|
|
</xsl:template>
|
103 |
|
|
|
104 |
|
|
<xsl:template name="emlResults">
|
105 |
|
|
|
106 |
5677
|
leinfelder
|
<div id="results">
|
107 |
|
|
|
108 |
5385
|
leinfelder
|
<xsl:for-each
|
109 |
|
|
select="resultset/document[docname='eml']">
|
110 |
|
|
<xsl:sort
|
111 |
|
|
select="./param[@name='dataset/title']" />
|
112 |
5675
|
leinfelder
|
|
113 |
|
|
<!-- the header portion of the result -->
|
114 |
5677
|
leinfelder
|
<div>
|
115 |
5385
|
leinfelder
|
<xsl:attribute name="class">
|
116 |
|
|
<xsl:choose>
|
117 |
5762
|
leinfelder
|
<xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
|
118 |
|
|
<xsl:when test="position() mod 2 = 0">roweven</xsl:when>
|
119 |
5385
|
leinfelder
|
</xsl:choose>
|
120 |
|
|
</xsl:attribute>
|
121 |
5765
|
leinfelder
|
|
122 |
|
|
<a href="#" class="accordian">+</a><xsl:text> </xsl:text>
|
123 |
|
|
|
124 |
5762
|
leinfelder
|
<!-- citation -->
|
125 |
|
|
<xsl:call-template name="citation"/>
|
126 |
5739
|
leinfelder
|
|
127 |
5781
|
leinfelder
|
<!-- edit cart, TODO: reflect status of cart contents -->
|
128 |
|
|
<xsl:if test="$showAdd = 'true'">
|
129 |
|
|
<a href="javascript:donothing()">
|
130 |
|
|
<xsl:attribute name="id">
|
131 |
|
|
<xsl:text>add_</xsl:text><xsl:value-of select="replace(./docid, '\.', '_')"/>
|
132 |
|
|
</xsl:attribute>
|
133 |
|
|
<xsl:attribute name="onclick">
|
134 |
|
|
var params =
|
135 |
|
|
{
|
136 |
|
|
'action': 'editcart',
|
137 |
|
|
'docid': '<xsl:value-of select="./docid"/>',
|
138 |
|
|
'operation': 'add',
|
139 |
|
|
'qformat': 'semtools'
|
140 |
|
|
};
|
141 |
|
|
load(
|
142 |
|
|
'<xsl:value-of select="$contextURL" />/metacat', //url
|
143 |
5783
|
leinfelder
|
params
|
144 |
5781
|
leinfelder
|
);
|
145 |
|
|
loadCart();
|
146 |
|
|
</xsl:attribute>
|
147 |
|
|
Add to cart
|
148 |
|
|
</a>
|
149 |
|
|
</xsl:if>
|
150 |
|
|
<xsl:if test="$showRemove = 'true'">
|
151 |
|
|
<a href="javascript:donothing()">
|
152 |
|
|
<xsl:attribute name="id">
|
153 |
|
|
<xsl:text>remove_</xsl:text><xsl:value-of select="replace(./docid, '\.', '_')"/>
|
154 |
|
|
</xsl:attribute>
|
155 |
|
|
<xsl:attribute name="onclick">
|
156 |
|
|
var params =
|
157 |
|
|
{
|
158 |
|
|
'action': 'editcart',
|
159 |
|
|
'docid': '<xsl:value-of select="./docid"/>',
|
160 |
|
|
'operation': 'remove',
|
161 |
|
|
'qformat': 'semtools'
|
162 |
|
|
};
|
163 |
|
|
load(
|
164 |
|
|
'<xsl:value-of select="$contextURL" />/metacat', //url
|
165 |
5783
|
leinfelder
|
params
|
166 |
5781
|
leinfelder
|
);
|
167 |
|
|
loadCart();
|
168 |
|
|
</xsl:attribute>
|
169 |
|
|
Remove from cart
|
170 |
|
|
</a>
|
171 |
|
|
</xsl:if>
|
172 |
5677
|
leinfelder
|
</div>
|
173 |
5536
|
leinfelder
|
|
174 |
5675
|
leinfelder
|
<!-- the content part -->
|
175 |
5677
|
leinfelder
|
<div>
|
176 |
5385
|
leinfelder
|
<xsl:attribute name="class">
|
177 |
5675
|
leinfelder
|
<xsl:choose>
|
178 |
|
|
<xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
|
179 |
|
|
<xsl:when test="position() mod 2 = 0">roweven</xsl:when>
|
180 |
5385
|
leinfelder
|
</xsl:choose>
|
181 |
|
|
</xsl:attribute>
|
182 |
|
|
|
183 |
5677
|
leinfelder
|
<table class="onehundred_percent">
|
184 |
|
|
<tr>
|
185 |
5743
|
leinfelder
|
<td>
|
186 |
|
|
<!-- keywords -->
|
187 |
|
|
<xsl:call-template name="keywords"/>
|
188 |
|
|
</td>
|
189 |
|
|
</tr>
|
190 |
|
|
<tr>
|
191 |
5727
|
leinfelder
|
|
192 |
5690
|
leinfelder
|
<!-- annotation section -->
|
193 |
5743
|
leinfelder
|
<td>
|
194 |
5690
|
leinfelder
|
<!-- render the annotation -->
|
195 |
|
|
<xsl:for-each select="./*[local-name()='annotation']">
|
196 |
5766
|
leinfelder
|
<xsl:call-template name="modelSummary">
|
197 |
5740
|
leinfelder
|
<xsl:with-param name="showAll" select="'false'"/>
|
198 |
5690
|
leinfelder
|
</xsl:call-template>
|
199 |
|
|
</xsl:for-each>
|
200 |
|
|
</td>
|
201 |
|
|
|
202 |
5677
|
leinfelder
|
</tr>
|
203 |
|
|
</table>
|
204 |
|
|
|
205 |
|
|
</div>
|
206 |
|
|
|
207 |
5385
|
leinfelder
|
</xsl:for-each>
|
208 |
5677
|
leinfelder
|
|
209 |
|
|
</div>
|
210 |
|
|
|
211 |
5675
|
leinfelder
|
</xsl:template>
|
212 |
5385
|
leinfelder
|
|
213 |
5762
|
leinfelder
|
<xsl:template name="citationContainer">
|
214 |
5737
|
leinfelder
|
<table class="subGroup subGroup_border onehundred_percent">
|
215 |
|
|
<tr>
|
216 |
5743
|
leinfelder
|
<td class="rowodd" width="{$labelWidth}">
|
217 |
5737
|
leinfelder
|
Citation:
|
218 |
|
|
</td>
|
219 |
|
|
<td class="roweven">
|
220 |
5762
|
leinfelder
|
<xsl:call-template name="citation"/>
|
221 |
5737
|
leinfelder
|
</td>
|
222 |
|
|
</tr>
|
223 |
|
|
</table>
|
224 |
|
|
</xsl:template>
|
225 |
|
|
|
226 |
5762
|
leinfelder
|
<xsl:template name="citation">
|
227 |
|
|
<!-- the author -->
|
228 |
|
|
<xsl:choose>
|
229 |
|
|
<xsl:when test="count(./param[@name='creator/individualName/surName']) > 0">
|
230 |
|
|
<xsl:for-each select="./param[@name='creator/individualName/surName']">
|
231 |
|
|
<xsl:value-of select="." />
|
232 |
|
|
<xsl:if test="position() != last()">, </xsl:if>
|
233 |
|
|
</xsl:for-each>
|
234 |
|
|
</xsl:when>
|
235 |
|
|
<xsl:otherwise>
|
236 |
|
|
<xsl:for-each select="./param[@name='creator/organizationName']">
|
237 |
|
|
<xsl:value-of select="." />
|
238 |
|
|
<xsl:if test="position() != last()">, </xsl:if>
|
239 |
|
|
</xsl:for-each>
|
240 |
|
|
</xsl:otherwise>
|
241 |
|
|
</xsl:choose>
|
242 |
|
|
<xsl:text>. </xsl:text>
|
243 |
|
|
<!-- the pubdate -->
|
244 |
|
|
<xsl:value-of select="substring(string(./param[@name='dataset/pubDate']),1,4)"/>
|
245 |
|
|
<xsl:if test="substring(string(./param[@name='dataset/pubDate']),1,4) != ''">. </xsl:if>
|
246 |
|
|
<!-- the title -->
|
247 |
|
|
<b>
|
248 |
|
|
<xsl:value-of select="./param[@name='dataset/title']"/>
|
249 |
|
|
</b>
|
250 |
|
|
<xsl:text>. </xsl:text>
|
251 |
|
|
<!-- the id -->
|
252 |
|
|
<xsl:value-of select="./docid"/>
|
253 |
|
|
<xsl:text>. </xsl:text>
|
254 |
|
|
<br/>
|
255 |
|
|
<!-- the link -->
|
256 |
|
|
(<a>
|
257 |
|
|
<xsl:attribute name="href">
|
258 |
|
|
<xsl:value-of select="$tripleURI"/><xsl:value-of select="./docid"/>
|
259 |
|
|
</xsl:attribute>
|
260 |
|
|
<xsl:value-of select="$contextURL" /><![CDATA[/metacat/]]><xsl:value-of select="./docid"/><![CDATA[/]]><xsl:value-of select="$qformat" />
|
261 |
|
|
</a>)
|
262 |
|
|
</xsl:template>
|
263 |
|
|
|
264 |
5743
|
leinfelder
|
<xsl:template name="keywords">
|
265 |
|
|
<!-- render the keywords -->
|
266 |
|
|
<table class="subGroup subGroup_border onehundred_percent">
|
267 |
5727
|
leinfelder
|
<tr>
|
268 |
5743
|
leinfelder
|
<td class="rowodd" width="{$labelWidth}">
|
269 |
|
|
Keywords:
|
270 |
5727
|
leinfelder
|
</td>
|
271 |
|
|
<td>
|
272 |
5743
|
leinfelder
|
<p>
|
273 |
|
|
<xsl:for-each select="./param[@name='keyword']">
|
274 |
5727
|
leinfelder
|
<xsl:value-of select="." />
|
275 |
5743
|
leinfelder
|
<xsl:if test="position() != last()">, </xsl:if>
|
276 |
5727
|
leinfelder
|
</xsl:for-each>
|
277 |
5743
|
leinfelder
|
</p>
|
278 |
5727
|
leinfelder
|
</td>
|
279 |
|
|
</tr>
|
280 |
|
|
</table>
|
281 |
|
|
</xsl:template>
|
282 |
|
|
|
283 |
5385
|
leinfelder
|
|
284 |
|
|
</xsl:stylesheet>
|