Project

General

Profile

1 51 jones
<?xml version="1.0"?>
2
<!--
3 666 jones
  *  '$RCSfile$'
4
  *      Authors: Matt Jones, CHad Berkley
5
  *    Copyright: 2000 Regents of the University of California and the
6 51 jones
  *               National Center for Ecological Analysis and Synthesis
7
  *  For Details: http://www.nceas.ucsb.edu/
8
  *
9 666 jones
  *   '$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 51 jones
  * 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:template match="/">
34
    <html>
35
      <head>
36 505 jones
        <link rel="stylesheet" type="text/css"
37 506 jones
              href="@web-base-url@/default.css" />
38 505 jones
        <script language="JavaScript">
39
          <![CDATA[
40 737 bojilova
          function submitform(action,form_ref) {
41
              form_ref.action.value=action;
42
              form_ref.abstractpath.value="";
43
              form_ref.qformat.value="";
44 505 jones
              form_ref.submit();
45
          }
46 737 bojilova
          function submitform1(action, abstractpath, form_ref) {
47
              form_ref.action.value=action;
48
              form_ref.abstractpath.value=abstractpath;
49
              form_ref.qformat.value="";
50
              form_ref.submit();
51
          }
52
          function submitform2(action, qformat, form_ref) {
53
              form_ref.action.value=action;
54
              form_ref.qformat.value=qformat;
55
              form_ref.abstractpath.value="";
56
              form_ref.submit();
57
          }
58 505 jones
          ]]>
59
        </script>
60 51 jones
      </head>
61 505 jones
62
      <body>
63
        <table width="100%">
64 506 jones
          <tr>
65 591 berkley
            <td rowspan="2"><img src="@web-base-url@/images/KNBLogo.gif"/></td>
66 506 jones
            <td colspan="7"><div class="title">Biocomplexity Data Search</div>
67
            </td>
68
          </tr>
69
          <tr>
70
            <td><a href="@web-base-url@" class="toollink"> KNB </a></td>
71
            <td><a href="@web-base-url@/data.html" class="toollink">
72
                Data </a></td>
73
            <td><a href="@web-base-url@/people.html" class="toollink">
74
                People </a></td>
75
            <td><a href="@web-base-url@/informatics" class="toollink">
76
                Informatics </a></td>
77
            <td><a href="@web-base-url@/biodiversity" class="toollink">
78
                Biodiversity </a></td>
79
            <td><a href="@web-base-url@/education" class="toollink">
80
                Education </a></td>
81
            <td><a href="@web-base-url@/software" class="toollink">
82
                Software </a></td>
83
         </tr>
84 505 jones
         <tr>
85 506 jones
          <td align="right" valign="top" colspan="7">
86 505 jones
            <form action="@html-path@/servlet/metacat" method="POST">
87
             Data Search: <input type="text" name="anyfield" size="10" />
88
             <input type="hidden" name="action" value="query" />
89
             <input type="hidden" name="qformat" value="html" />
90
             <input type="hidden" name="operator" value="UNION" />
91
92
             <input type="hidden" name="returnfield"
93 813 jones
              value="originator/individualName/surName" />
94 505 jones
             <input type="hidden" name="returnfield"
95 813 jones
              value="originator/individualName/givenName" />
96 505 jones
             <input type="hidden" name="returnfield"
97 813 jones
              value="originator/organizationName" />
98 505 jones
             <input type="hidden" name="returnfield"
99 813 jones
              value="title" />
100 505 jones
             <input type="hidden" name="returnfield"
101 813 jones
              value="keyword" />
102 505 jones
             <input type="hidden" name="returndoc"
103 813 jones
              value="-//NCEAS//eml-dataset-2.0//EN" />
104
             <input type="hidden" name="returndoc"
105 505 jones
              value="-//NCEAS//resource//EN" />
106
             <input type="hidden" name="returndoc"
107
              value="-//NCEAS//eml-dataset//EN" />
108
           </form>
109
          </td>
110
        </tr>
111
       </table>
112 51 jones
113 505 jones
       <p><xsl:number value="count(resultset/document)" /> documents found.</p>
114
       <!-- This tests to see if there are returned documents,
115
            if there are not then don't show the query results -->
116
       <xsl:if test="count(resultset/document) &gt; 0">
117
         <center>
118
           <u><h2>Results</h2></u>
119
         </center>
120
121
         <table width="100%">
122
           <tr>
123 506 jones
             <th class="tablehead">Title</th>
124
             <th class="tablehead">Action</th>
125
             <th class="tablehead">Related Documents</th>
126
             <th class="tablehead">Contacts</th>
127
             <th class="tablehead">Organization</th>
128
             <th class="tablehead">Keywords</th>
129 505 jones
           </tr>
130
131
         <xsl:for-each select="resultset/document">
132 813 jones
           <xsl:sort select="title"/>
133 505 jones
           <tr valign="top">
134
             <xsl:attribute name="class">
135
               <xsl:choose>
136
                 <xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
137
                 <xsl:when test="position() mod 2 = 0">roweven</xsl:when>
138
               </xsl:choose>
139
             </xsl:attribute>
140 85 jones
141 505 jones
             <td>
142 813 jones
               <xsl:value-of select="./param[@name='title']"/>
143 505 jones
               <br/>
144
               <p><pre>Document ID: <xsl:value-of select="./docid"/></pre></p>
145
             </td>
146
             <td>
147 566 jones
               <form action="@html-path@/servlet/metacat" method="POST">
148 505 jones
                 <xsl:attribute name="name">
149 566 jones
                   <xsl:value-of select="translate(./docid,'.','')"/>
150 505 jones
                 </xsl:attribute>
151
                 <!-- abstractpath tells the servlet where the abstract is in
152
                      the document.  The % sign is used because the path could
153
                      be resource/literature or resource/dataset. -->
154 737 bojilova
                 <!-- specified down IN javascript:submitform1('read',abstractpath,docid) -->
155
                 <input type="hidden" name="abstractpath" />
156
                 <!-- specified down IN javascript:submitform2('read','zip',docid) -->
157
                 <input type="hidden" name="qformat" />
158 566 jones
                 <input type="hidden" name="action" value="read"/>
159 505 jones
                 <input type="hidden" name="docid">
160
                   <xsl:attribute name="value">
161
                     <xsl:value-of select="./docid"/>
162
                   </xsl:attribute>
163
                 </input>
164
                 <xsl:for-each select="./relation">
165 732 bojilova
                   <input type="hidden" name="docid">
166 505 jones
                     <xsl:attribute name="value" >
167
                       <xsl:value-of select="./relationdoc" />
168
                     </xsl:attribute>
169
                   </input>
170
                 </xsl:for-each>
171 85 jones
172 505 jones
                 <a>
173 566 jones
                   <xsl:attribute name="href">javascript:submitform('read',document.<xsl:value-of select="translate(./docid, '.', '')"/>)</xsl:attribute>
174 505 jones
                   Dataset Information
175
                 </a><br />
176
                 <a>
177 737 bojilova
                   <xsl:attribute name="href">javascript:submitform1('read','resource/%/abstract',document.<xsl:value-of select="translate(./docid,'.','')"/>)</xsl:attribute>
178 505 jones
                   View Abstract
179
                 </a><br />
180
                 <a>
181 737 bojilova
                   <xsl:attribute name="href">javascript:submitform2('read','zip',document.<xsl:value-of select="translate(./docid,'.','')"/>)</xsl:attribute>
182 505 jones
                    Download Data and Metadata
183
                 </a><br />
184
               </form>
185
             </td>
186
             <td>
187
               <xsl:if test="count(./relation) &gt; 0">
188
                 <xsl:for-each select="./relation">
189
                   <a>
190
                     <xsl:if test="starts-with(./relationdoc, 'http')">
191
                       <xsl:attribute name="href">
192
                         <xsl:value-of select="./relationdoc" />
193
                       </xsl:attribute>
194
                       <xsl:if
195
                        test="./relationdoctype = '-//NCEAS//eml-variable//EN'">
196
                         Variable Information
197
                       </xsl:if>
198
                       <xsl:if
199
                        test="./relationdoctype = '-//NCEAS//eml-file//EN'">
200
                         File Information
201
                       </xsl:if>
202
                       <xsl:if
203
                        test="./relationdoctype = '-//NCEAS//eml-access//EN'">
204
                         Access Information
205
                       </xsl:if>
206
                       <xsl:if
207
                        test="./relationdoctype = '-//NCEAS//eml-context//EN'">
208
                         Context Information
209
                       </xsl:if>
210
                       <xsl:if
211
                        test="./relationdoctype = '-//NCEAS//eml-software//EN'">
212
                         Software Information
213
                       </xsl:if>
214
                       <xsl:if
215
                        test="./relationdoctype = '-//NCEAS//eml-status//EN'">
216
                         Status Information
217
                       </xsl:if>
218
                       <xsl:if
219
                        test="./relationdoctype = '-//NCEAS//eml-supplement//EN'">
220
                         Supplemental Information
221
                       </xsl:if>
222
                       <!-- If the doctype is null, this file is assumed to
223
                            be a data file
224
                        -->
225
                       <xsl:if test="./relationdoctype = 'null'">
226
                         Data File
227
                       </xsl:if>
228
                     </xsl:if>
229
                     <xsl:if test="starts-with(./relationdoc, 'metacat')">
230
                       <xsl:attribute name="href">
231 621 berkley
                         <xsl:text>http://@server@@servlet-path@?action=read&amp;qformat=html&amp;docid=</xsl:text>
232 505 jones
                         <xsl:value-of select="./relationdoc" />
233
                       </xsl:attribute>
234
                       <xsl:if
235
                        test="./relationdoctype = '-//NCEAS//eml-variable//EN'">
236
                         Variable Information
237
                       </xsl:if>
238
                       <xsl:if
239
                        test="./relationdoctype = '-//NCEAS//eml-file//EN'">
240
                         File Information
241
                       </xsl:if>
242
                       <xsl:if
243
                        test="./relationdoctype = '-//NCEAS//eml-access//EN'">
244
                         Access Information
245
                       </xsl:if>
246
                       <xsl:if
247
                        test="./relationdoctype = '-//NCEAS//eml-context//EN'">
248
                         Context Information
249
                       </xsl:if>
250
                       <xsl:if
251
                        test="./relationdoctype = '-//NCEAS//eml-software//EN'">
252
                         Software Information
253
                       </xsl:if>
254
                       <xsl:if
255
                        test="./relationdoctype = '-//NCEAS//eml-status//EN'">
256
                         Status Information
257
                       </xsl:if>
258
                       <xsl:if
259
                        test="./relationdoctype = '-//NCEAS//eml-supplement//EN'">
260
                         Supplemental Information
261
                       </xsl:if>
262
                       <!-- If the doctype is null, this file is assumed to
263
                            be a data file
264
                        -->
265
                       <xsl:if test="./relationdoctype = 'null'">
266
                         Data File
267
                       </xsl:if>
268
                     </xsl:if>
269
                   </a>
270
                   <br/>
271
                 </xsl:for-each>
272
               </xsl:if>
273 506 jones
               <xsl:text>&nbsp;</xsl:text>
274 505 jones
             </td>
275
             <td>
276 813 jones
               <xsl:for-each select="./param[@name='originator/individualName/surName']" >
277 505 jones
                 <xsl:value-of select="." />
278
                 <br/>
279 51 jones
280 505 jones
               </xsl:for-each>
281
               <xsl:text>&nbsp;</xsl:text>
282
             </td>
283
             <td>
284
                 <xsl:value-of select=
285 813 jones
                 "./param[@name='originator/organizationName']"                 />
286 505 jones
                 <xsl:text>&nbsp;</xsl:text>
287
             </td>
288
289
             <td>
290
               <xsl:for-each
291 813 jones
                select="./param[@name='keyword']">
292 505 jones
                 <xsl:value-of select="." />
293
                 <br/>
294
               </xsl:for-each>
295
               <xsl:text>&nbsp;</xsl:text>
296
             </td>
297
           </tr>
298 51 jones
299 505 jones
          </xsl:for-each>
300
          </table>
301 51 jones
302 505 jones
       </xsl:if>
303 51 jones
      </body>
304
    </html>
305
  </xsl:template>
306
307
</xsl:stylesheet>