Project

General

Profile

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: 2011-01-07 11:03:59 -0800 (Fri, 07 Jan 2011) $'
11
	* '$Revision: 5784 $'
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
	
43
	<xsl:param name="labelWidth">120</xsl:param>
44
	
45
	<xsl:param name="showAdd">true</xsl:param>
46
	<xsl:param name="showRemove">true</xsl:param>	
47
	
48
	<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
			<body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
61
				<script language="JavaScript">
62
					insertTemplateOpening('<xsl:value-of select="$contextURL" />'); insertSearchBox('<xsl:value-of select="$contextURL" />');
63
				</script>
64
				
65
				<div id="content_wrapper">
66
				
67
				<table style="width:100%;" align="center" border="0"
68
					cellpadding="5" cellspacing="0">
69
					<tr>
70
						<td align="left">
71
							<p class="emphasis">
72
								<span class="resultCount">
73
									<xsl:number
74
										value="count(resultset/document)" />
75
								</span>		
76
								total records found
77
							</p>
78
						</td>
79
					</tr>
80
				</table>
81

    
82
				<table align="left" border="0" cellpadding="0" cellspacing="5" width="100%">
83
					<tr valign="top">
84
							
85
						<!-- EML HERE  -->
86
						<xsl:if test="count(resultset/document[docname='eml']) &gt; 0">
87
							<td>
88
								<xsl:call-template name="emlResults"/>
89
							</td>	
90
						</xsl:if>
91
						
92
					</tr>	
93
				</table>
94
				
95
				</div>
96
				
97
				<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
		<div id="results">
107
	
108
			<xsl:for-each
109
				select="resultset/document[docname='eml']">
110
				<xsl:sort
111
					select="./param[@name='dataset/title']" />
112
					
113
				<!-- the header portion of the result -->
114
				<div>
115
					<xsl:attribute name="class">
116
	              			<xsl:choose>
117
						    <xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
118
						    <xsl:when test="position() mod 2 = 0">roweven</xsl:when>
119
						</xsl:choose>
120
					</xsl:attribute>
121
					
122
					<a href="#" class="accordian">+</a><xsl:text> </xsl:text>
123
					
124
					<!-- citation -->
125
					<xsl:call-template name="citation"/>
126
					
127
					<!-- 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
									params 
144
									);
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
									params 
166
									);
167
								loadCart();	
168
							</xsl:attribute>
169
							Remove from cart
170
						</a>
171
					</xsl:if>	
172
				</div>
173
				
174
				<!-- the content part -->	
175
				<div>
176
					<xsl:attribute name="class">
177
	              		<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
						</xsl:choose>
181
					</xsl:attribute>
182
					
183
					<table class="onehundred_percent">
184
						<tr>
185
							<td>
186
								<!-- keywords -->
187
								<xsl:call-template name="keywords"/>								
188
							</td>
189
						</tr>
190
						<tr>
191
						
192
							<!-- annotation section -->
193
							<td>
194
								<!-- render the annotation -->
195
								<xsl:for-each select="./*[local-name()='annotation']">
196
									<xsl:call-template name="modelSummary">
197
										 <xsl:with-param name="showAll" select="'false'"/>
198
									</xsl:call-template>	
199
								</xsl:for-each>
200
							</td>
201
							
202
						</tr>
203
					</table>
204
											
205
				</div>
206
		
207
			</xsl:for-each>
208
			
209
		</div>	
210
			
211
	</xsl:template>
212
	
213
	<xsl:template name="citationContainer">
214
		<table class="subGroup subGroup_border onehundred_percent">
215
			<tr>
216
				<td class="rowodd" width="{$labelWidth}">
217
					Citation:
218
				</td>
219
				<td class="roweven">
220
					<xsl:call-template name="citation"/>
221
				</td>
222
			</tr>		
223
		</table>
224
	</xsl:template>
225
	
226
	<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
	<xsl:template name="keywords">
265
		<!-- render the keywords -->
266
		<table class="subGroup subGroup_border onehundred_percent">	
267
			<tr>
268
				<td class="rowodd" width="{$labelWidth}">
269
					Keywords:
270
				</td>
271
				<td>
272
					<p>
273
					<xsl:for-each select="./param[@name='keyword']">
274
						<xsl:value-of select="." />
275
						<xsl:if test="position() != last()">, </xsl:if>
276
					</xsl:for-each>
277
					</p>
278
				</td>
279
			</tr>			
280
		</table>
281
	</xsl:template>
282
	
283

    
284
</xsl:stylesheet>
(7-7/14)