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: sgarg $'
|
10
|
* '$Date: 2004-07-22 15:36:23 -0700 (Thu, 22 Jul 2004) $'
|
11
|
* '$Revision: 2226 $'
|
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
|
<xsl:output method="html"/>
|
33
|
<xsl:param name="qformat">default</xsl:param>
|
34
|
<xsl:template match="/">
|
35
|
<html>
|
36
|
<head>
|
37
|
<link rel="stylesheet" type="text/css"
|
38
|
href="@style-skins-path@/{$qformat}/{$qformat}.css" />
|
39
|
</head>
|
40
|
|
41
|
<body>
|
42
|
<table width="100%">
|
43
|
<tr>
|
44
|
<td rowspan="2"><img src="@web-base-url@/images/KNBLogo.gif"/></td>
|
45
|
<td colspan="7"><div class="title">Biocomplexity Data Search</div>
|
46
|
</td>
|
47
|
</tr>
|
48
|
<tr>
|
49
|
<td><a href="@web-base-url@" class="toollink"> KNB </a></td>
|
50
|
<td><a href="@web-base-url@/data.html" class="toollink">
|
51
|
Data </a></td>
|
52
|
<td><a href="@web-base-url@/people.html" class="toollink">
|
53
|
People </a></td>
|
54
|
<td><a href="@web-base-url@/informatics" class="toollink">
|
55
|
Informatics </a></td>
|
56
|
<td><a href="@web-base-url@/biodiversity" class="toollink">
|
57
|
Biodiversity </a></td>
|
58
|
<td><a href="@web-base-url@/education" class="toollink">
|
59
|
Education </a></td>
|
60
|
<td><a href="@web-base-url@/software" class="toollink">
|
61
|
Software </a></td>
|
62
|
</tr>
|
63
|
<tr>
|
64
|
<td align="right" valign="top" colspan="7">
|
65
|
<form action="@servlet-path@" method="POST">
|
66
|
Data Search: <input type="text" name="anyfield" size="10" />
|
67
|
<input type="hidden" name="action" value="query" />
|
68
|
<input type="hidden" name="qformat" value="knb" />
|
69
|
<input type="hidden" name="operator" value="UNION" />
|
70
|
|
71
|
<input type="hidden" name="returnfield"
|
72
|
value="creator/individualName/surName" />
|
73
|
<input type="hidden" name="returnfield"
|
74
|
value="creator/organizationName" />
|
75
|
<input type="hidden" name="returnfield"
|
76
|
value="originator/individualName/surName" />
|
77
|
<input type="hidden" name="returnfield"
|
78
|
value="originator/individualName/givenName" />
|
79
|
<input type="hidden" name="returnfield"
|
80
|
value="originator/organizationName" />
|
81
|
<input type="hidden" name="returnfield"
|
82
|
value="dataset/title" />
|
83
|
<input type="hidden" name="returnfield"
|
84
|
value="keyword" />
|
85
|
<input type="hidden" name="returndoctype"
|
86
|
value="eml://ecoinformatics.org/eml-2.0.0" />
|
87
|
<input type="hidden" name="returndoctype"
|
88
|
value="eml://ecoinformatics.org/eml-2.0.1" />
|
89
|
<input type="hidden" name="returndoctype"
|
90
|
value="-//NCEAS//eml-dataset-2.0//EN" />
|
91
|
<input type="hidden" name="returndoctype"
|
92
|
value="-//NCEAS//resource//EN" />
|
93
|
<input type="hidden" name="returndoctype"
|
94
|
value="-//NCEAS//eml-dataset//EN" />
|
95
|
<input type="hidden" name="returndoctype"
|
96
|
value="-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN" />
|
97
|
<input type="hidden" name="returndoctype"
|
98
|
value="-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN" />
|
99
|
</form>
|
100
|
</td>
|
101
|
</tr>
|
102
|
</table>
|
103
|
|
104
|
<p><xsl:number value="count(resultset/document)" /> documents found.</p>
|
105
|
<!-- This tests to see if there are returned documents,
|
106
|
if there are not then don't show the query results -->
|
107
|
<xsl:if test="count(resultset/document) > 0">
|
108
|
<table border="0" cellpadding="2" cellspacing="2">
|
109
|
<tr valign="top">
|
110
|
<td width="33%">
|
111
|
<h3>Browse data sets by keyword:</h3>
|
112
|
<ul>
|
113
|
<xsl:apply-templates select="//param[@name='keyword' and not(. = preceding::param) and not(normalize-space(.) = '')]">
|
114
|
<xsl:sort select="."/>
|
115
|
</xsl:apply-templates>
|
116
|
</ul>
|
117
|
</td>
|
118
|
<td width="33%">
|
119
|
<h3>Browse data sets by creator:</h3>
|
120
|
<ul>
|
121
|
<xsl:apply-templates select="//param[@name='surName' and not(. = preceding::param) and not(normalize-space(.) = '')]">
|
122
|
<xsl:sort select="."/>
|
123
|
</xsl:apply-templates>
|
124
|
</ul>
|
125
|
</td>
|
126
|
<td width="33%">
|
127
|
<h3>Browse data sets by organization:</h3>
|
128
|
<ul>
|
129
|
<xsl:apply-templates select="//param[@name='organizationName' and not(. = preceding::param) and not(normalize-space(.) = '')]">
|
130
|
<xsl:sort select="."/>
|
131
|
</xsl:apply-templates>
|
132
|
</ul>
|
133
|
</td>
|
134
|
</tr>
|
135
|
</table>
|
136
|
</xsl:if>
|
137
|
</body>
|
138
|
</html>
|
139
|
</xsl:template>
|
140
|
|
141
|
<xsl:template match="param[@name='keyword']">
|
142
|
<li>
|
143
|
<a>
|
144
|
<xsl:attribute name="href">@servlet-path@?action=query&operator=INTERSECT&qformat=knb&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returnfield=dataset/title&returnfield=citation/title&returnfield=software/title&returnfield=protocol/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName&keyword=<xsl:value-of select="."/></xsl:attribute>
|
145
|
<xsl:value-of select="."/>
|
146
|
</a> (<xsl:value-of select="count(//param[.=current()])"/>)
|
147
|
</li>
|
148
|
</xsl:template>
|
149
|
|
150
|
<xsl:template match="param[@name='surName']">
|
151
|
<li>
|
152
|
<a>
|
153
|
<xsl:attribute name="href">@servlet-path@?action=query&operator=INTERSECT&qformat=knb&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returnfield=dataset/title&returnfield=citation/title&returnfield=software/title&returnfield=protocol/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName&surName=<xsl:value-of select="."/></xsl:attribute>
|
154
|
<xsl:value-of select="."/>
|
155
|
</a> (<xsl:value-of select="count(//param[.=current()])"/>)
|
156
|
</li>
|
157
|
</xsl:template>
|
158
|
|
159
|
<xsl:template match="param[@name='organizationName']">
|
160
|
<li>
|
161
|
<a>
|
162
|
<xsl:attribute name="href">@servlet-path@?action=query&operator=INTERSECT&qformat=knb&returndoctype=eml://ecoinformatics.org/eml-2.0.0&returndoctype=eml://ecoinformatics.org/eml-2.0.1&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&returnfield=dataset/title&returnfield=citation/title&returnfield=software/title&returnfield=protocol/title&returnfield=keyword&returnfield=originator/individualName/surName&returnfield=creator/individualName/surName&returnfield=originator/organizationName&returnfield=creator/organizationName&organizationName=<xsl:value-of select="."/></xsl:attribute>
|
163
|
<xsl:value-of select="."/>
|
164
|
</a> (<xsl:value-of select="count(//param[.=current()])"/>)
|
165
|
</li>
|
166
|
</xsl:template>
|
167
|
|
168
|
</xsl:stylesheet>
|