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: 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) &gt; 0">
108
           <h3>Browse data sets by keyword:</h3> 
109
           <ul>
110
               <xsl:apply-templates select="//param[@name='keyword' and not(. = preceding::param) and not(normalize-space(.) = '')]">
111
                   <xsl:sort select="."/>
112
               </xsl:apply-templates>
113
           </ul>
114
       </xsl:if>
115
      </body>
116
    </html>
117
  </xsl:template>
118

    
119
  <xsl:template match="param">
120
     <li>
121
     <a>
122
       <xsl:attribute name="href">@servlet-path@?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN&amp;returndoctype=-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN&amp;returnfield=dataset/title&amp;returnfield=citation/title&amp;returnfield=software/title&amp;returnfield=protocol/title&amp;returnfield=keyword&amp;returnfield=originator/individualName/surName&amp;returnfield=creator/individualName/surName&amp;returnfield=originator/organizationName&amp;returnfield=creator/organizationName&amp;keyword=<xsl:value-of select="."/></xsl:attribute>
123
     <xsl:value-of select="."/>
124
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
125
     </li>
126
  </xsl:template>
127

    
128
</xsl:stylesheet>
(7-7/8)