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 827 jones
              href="@style-path@/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 833 jones
              form_ref.qformat.value="knb";
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 833 jones
             <input type="hidden" name="qformat" value="knb" />
90 505 jones
             <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 814 jones
             <input type="hidden" name="returndoctype"
103 813 jones
              value="-//NCEAS//eml-dataset-2.0//EN" />
104 814 jones
             <input type="hidden" name="returndoctype"
105 505 jones
              value="-//NCEAS//resource//EN" />
106 814 jones
             <input type="hidden" name="returndoctype"
107 505 jones
              value="-//NCEAS//eml-dataset//EN" />
108 857 berkley
              <input type="hidden" name="returndoctype"
109 892 berkley
              value="-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN" />
110 916 berkley
              <input type="hidden" name="returndoctype"
111
              value="-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN" />
112 505 jones
           </form>
113
          </td>
114
        </tr>
115
       </table>
116 51 jones
117 505 jones
       <p><xsl:number value="count(resultset/document)" /> documents found.</p>
118
       <!-- This tests to see if there are returned documents,
119
            if there are not then don't show the query results -->
120
       <xsl:if test="count(resultset/document) &gt; 0">
121
         <center>
122
           <u><h2>Results</h2></u>
123
         </center>
124
125
         <table width="100%">
126
           <tr>
127 506 jones
             <th class="tablehead">Title</th>
128 833 jones
             <!-- <th class="tablehead">Action</th> -->
129
             <!-- <th class="tablehead">Related Documents</th> -->
130 506 jones
             <th class="tablehead">Contacts</th>
131
             <th class="tablehead">Organization</th>
132
             <th class="tablehead">Keywords</th>
133 505 jones
           </tr>
134
135
         <xsl:for-each select="resultset/document">
136 813 jones
           <xsl:sort select="title"/>
137 505 jones
           <tr valign="top">
138
             <xsl:attribute name="class">
139
               <xsl:choose>
140
                 <xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
141
                 <xsl:when test="position() mod 2 = 0">roweven</xsl:when>
142
               </xsl:choose>
143
             </xsl:attribute>
144 85 jones
145 833 jones
<!--
146 505 jones
             <td>
147 813 jones
               <xsl:value-of select="./param[@name='title']"/>
148 505 jones
               <br/>
149
               <p><pre>Document ID: <xsl:value-of select="./docid"/></pre></p>
150
             </td>
151 833 jones
-->
152 505 jones
             <td>
153 566 jones
               <form action="@html-path@/servlet/metacat" method="POST">
154 505 jones
                 <xsl:attribute name="name">
155 566 jones
                   <xsl:value-of select="translate(./docid,'.','')"/>
156 505 jones
                 </xsl:attribute>
157
                 <!-- abstractpath tells the servlet where the abstract is in
158
                      the document.  The % sign is used because the path could
159
                      be resource/literature or resource/dataset. -->
160 737 bojilova
                 <!-- specified down IN javascript:submitform1('read',abstractpath,docid) -->
161
                 <input type="hidden" name="abstractpath" />
162
                 <!-- specified down IN javascript:submitform2('read','zip',docid) -->
163
                 <input type="hidden" name="qformat" />
164 566 jones
                 <input type="hidden" name="action" value="read"/>
165 505 jones
                 <input type="hidden" name="docid">
166
                   <xsl:attribute name="value">
167
                     <xsl:value-of select="./docid"/>
168
                   </xsl:attribute>
169
                 </input>
170
                 <xsl:for-each select="./relation">
171 732 bojilova
                   <input type="hidden" name="docid">
172 505 jones
                     <xsl:attribute name="value" >
173
                       <xsl:value-of select="./relationdoc" />
174
                     </xsl:attribute>
175
                   </input>
176
                 </xsl:for-each>
177 85 jones
178 505 jones
                 <a>
179 566 jones
                   <xsl:attribute name="href">javascript:submitform('read',document.<xsl:value-of select="translate(./docid, '.', '')"/>)</xsl:attribute>
180 833 jones
                   <xsl:value-of select="./param[@name='title']"/>
181 505 jones
                 </a><br />
182 833 jones
                 <br/>
183
                 <p><pre>Document ID: <xsl:value-of select="./docid"/></pre></p>
184 963 berkley
<!--
185
                 <a>
186
                   <xsl:attribute name="href">javascript:submitform1('read','resource/%/abstract',document.<xsl:value-of select="translate(./docid,'.','')"/>)</xsl:attribute>
187
                   View Abstract
188
                 </a><br />
189
                 <a>
190
                   <xsl:attribute name="href">javascript:submitform2('read','zip',document.<xsl:value-of select="translate(./docid,'.','')"/>)</xsl:attribute>
191
                    Download Data and Metadata
192
                 </a><br />
193
-->
194 505 jones
               </form>
195
             </td>
196 963 berkley
<!--
197 505 jones
             <td>
198 963 berkley
               <xsl:if test="count(./relation) &gt; 0">
199
                 <xsl:for-each select="./relation">
200
                   <a>
201
                     <xsl:if test="starts-with(./triple, 'http')">
202
                       <xsl:attribute name="href">
203
                         <xsl:value-of select="./relationdoc" />
204
                       </xsl:attribute>
205
                       <xsl:if
206
                        test="./relationdoctype = '-//NCEAS//eml-variable//EN'">
207
                         Variable Information
208
                       </xsl:if>
209
                       <xsl:if
210
                        test="./relationdoctype = '-//NCEAS//eml-entity-2.0//EN'">
211
                         Table Information
212
                       </xsl:if>
213
                       <xsl:if
214
                        test="./relationdoctype = '-//NCEAS//eml-physical-2.0//EN'">
215
                         File Information
216
                       </xsl:if>
217
                       <xsl:if
218
                        test="./relationdoctype = '-//NCEAS//eml-distribution-2.0//EN'">
219
                         Distribution Information
220
                       </xsl:if>
221
                       <xsl:if
222
                        test="./relationdoctype = '-//NCEAS//eml-access-2.0//EN'">
223
                         Access Information
224
                       </xsl:if>
225
                       <xsl:if
226
                        test="./relationdoctype = '-//NCEAS//eml-context//EN'">
227
                         Context Information
228
                       </xsl:if>
229
                       <xsl:if
230
                        test="./relationdoctype = '-//NCEAS//eml-software-2.0//EN'">
231
                         Software Information
232
                       </xsl:if>
233
                       <xsl:if
234
                        test="./relationdoctype = '-//NCEAS//eml-status//EN'">
235
                         Status Information
236
                       </xsl:if>
237
                       <xsl:if
238
                        test="./relationdoctype = '-//NCEAS//eml-supplement//EN'">
239
                         Supplemental Information
240
                       </xsl:if>
241
-->
242
                       <!-- If the doctype is null, this file is assumed to
243
                            be a data file
244
                        -->
245
<!--
246
                       <xsl:if test="./relationdoctype = 'null'">
247
                         Data File
248
                       </xsl:if>
249
                     </xsl:if>
250
                     <xsl:if test="starts-with(./triple, '')">
251
                       <xsl:attribute name="href">
252
                         <xsl:text>@server@@servlet-path@?action=read&amp;qformat=knb&amp;docid=</xsl:text>
253
                         <xsl:value-of select="./relationdoc" />
254
                       </xsl:attribute>
255
                       <xsl:if
256
                        test="./relationdoctype = '-//NCEAS//eml-variable//EN'">
257
                         Variable Information
258
                       </xsl:if>
259
                       <xsl:if
260
                        test="./relationdoctype = '-//NCEAS//eml-entity-2.0//EN'">
261
                         Table Information
262
                       </xsl:if>
263
                       <xsl:if
264
                        test="./relationdoctype = '-//NCEAS//eml-physical-2.0//EN'">
265
                         File Information
266
                       </xsl:if>
267
                       <xsl:if
268
                        test="./relationdoctype = '-//NCEAS//eml-distribution-2.0//EN'">
269
                         Distribution Information
270
                       </xsl:if>
271
                       <xsl:if
272
                        test="./relationdoctype = '-//NCEAS//eml-access-2.0//EN'">
273
                         Access Information
274
                       </xsl:if>
275
                       <xsl:if
276
                        test="./relationdoctype = '-//NCEAS//eml-context//EN'">
277
                         Context Information
278
                       </xsl:if>
279
                       <xsl:if
280
                        test="./relationdoctype = '-//NCEAS//eml-software-2.0//EN'">
281
                         Software Information
282
                       </xsl:if>
283
                       <xsl:if
284
                        test="./relationdoctype = '-//NCEAS//eml-status//EN'">
285
                         Status Information
286
                       </xsl:if>
287
                       <xsl:if
288
                        test="./relationdoctype = '-//NCEAS//eml-supplement//EN'">
289
                         Supplemental Information
290
                       </xsl:if>
291
-->
292
                       <!-- If the doctype is null, this file is assumed to
293
                            be a data file
294
                        -->
295
<!--
296
                       <xsl:if test="./relationdoctype = 'null'">
297
                         Data File
298
                       </xsl:if>
299
                     </xsl:if>
300
                   </a>
301
                   <br/>
302
                 </xsl:for-each>
303
               </xsl:if>
304
               <xsl:text> </xsl:text>
305
             </td>
306
-->
307
             <td>
308 813 jones
               <xsl:for-each select="./param[@name='originator/individualName/surName']" >
309 505 jones
                 <xsl:value-of select="." />
310
                 <br/>
311 51 jones
312 505 jones
               </xsl:for-each>
313 833 jones
               <xsl:text> </xsl:text>
314 505 jones
             </td>
315
             <td>
316
                 <xsl:value-of select=
317 813 jones
                 "./param[@name='originator/organizationName']"                 />
318 833 jones
                 <xsl:text> </xsl:text>
319 505 jones
             </td>
320
321
             <td>
322
               <xsl:for-each
323 813 jones
                select="./param[@name='keyword']">
324 505 jones
                 <xsl:value-of select="." />
325
                 <br/>
326
               </xsl:for-each>
327 833 jones
               <xsl:text> </xsl:text>
328 505 jones
             </td>
329
           </tr>
330 51 jones
331 505 jones
          </xsl:for-each>
332
          </table>
333 51 jones
334 505 jones
       </xsl:if>
335 51 jones
      </body>
336
    </html>
337
  </xsl:template>
338
339
</xsl:stylesheet>