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: 2010-12-09 10:04:28 -0800 (Thu, 09 Dec 2010) $'
11
  * '$Revision: 5710 $'
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:param name="contextURL"/>
35
  <xsl:param name="cgi-prefix"/>
36
  <xsl:template match="/">
37
    <html>
38
      <head>
39
        <link rel="stylesheet" type="text/css" 
40
              href="{$contextURL}/style/skins/{$qformat}/{$qformat}.css" />
41
      </head>
42

    
43
      <body>
44
        <table width="100%">
45
          <tr>
46
            <td rowspan="2"><img src="./images/KNBLogo.gif"/></td>
47
            <td colspan="7"><div class="title">Biocomplexity Data Search</div>
48
            </td>
49
          </tr>
50
          <tr>
51
            <td><a href="." class="toollink"> KNB </a></td>
52
            <td><a href="./data.html" class="toollink"> 
53
                Data </a></td>
54
            <td><a href="./people.html" class="toollink"> 
55
                People </a></td>
56
            <td><a href="./informatics" class="toollink"> 
57
                Informatics </a></td>
58
            <td><a href="./biodiversity" class="toollink"> 
59
                Biodiversity </a></td>
60
            <td><a href="./education" class="toollink"> 
61
                Education </a></td>
62
            <td><a href="./software" class="toollink"> 
63
                Software </a></td>
64
         </tr>
65
         <tr>
66
          <td align="right" valign="top" colspan="7">
67
            <form action="{$contextURL}/metacat" method="POST">
68
             Data Search: <input type="text" name="anyfield" size="10" />
69
             <input type="hidden" name="action" value="query" />   
70
             <input type="hidden" name="qformat" value="knb" />
71
             <input type="hidden" name="operator" value="UNION" />
72
             
73
             <input type="hidden" name="returnfield"
74
              value="creator/individualName/surName" />
75
             <input type="hidden" name="returnfield"
76
              value="creator/organizationName" />
77
             <input type="hidden" name="returnfield" 
78
              value="originator/individualName/surName" />
79
             <input type="hidden" name="returnfield" 
80
              value="originator/individualName/givenName" />
81
             <input type="hidden" name="returnfield" 
82
              value="originator/organizationName" />
83
             <input type="hidden" name="returnfield" 
84
              value="dataset/title" />
85
             <input type="hidden" name="returnfield" 
86
              value="keyword" />
87
             <input type="hidden" name="returndoctype"
88
              value="eml://ecoinformatics.org/eml-2.0.0" />
89
             <input type="hidden" name="returndoctype"
90
              value="eml://ecoinformatics.org/eml-2.0.1" />
91
             <input type="hidden" name="returndoctype"
92
              value="eml://ecoinformatics.org/eml-2.1.0" />
93
             <input type="hidden" name="returndoctype"
94
              value="eml://ecoinformatics.org/eml-2.1.1" /> 
95
             <input type="hidden" name="returndoctype"
96
              value="-//NCEAS//eml-dataset-2.0//EN" />
97
             <input type="hidden" name="returndoctype"
98
              value="-//NCEAS//resource//EN" />
99
             <input type="hidden" name="returndoctype"
100
              value="-//NCEAS//eml-dataset//EN" />
101
              <input type="hidden" name="returndoctype"
102
              value="-//ecoinformatics.org//eml-dataset-2.0.0beta6//EN" />
103
              <input type="hidden" name="returndoctype"
104
              value="-//ecoinformatics.org//eml-dataset-2.0.0beta4//EN" />
105
           </form>
106
          </td>
107
        </tr>  
108
       </table>
109
        
110
       <p><xsl:number value="count(resultset/document)" /> documents found.</p>
111
       <!-- This tests to see if there are returned documents,
112
            if there are not then don't show the query results -->
113
       <xsl:if test="count(resultset/document) &gt; 0">
114
           <table border="0" cellpadding="2" cellspacing="2">
115
           <tr valign="top">
116
           <td width="33%">
117
           <h3>Browse data sets by keyword:</h3> 
118
           <ul>
119
               <xsl:apply-templates select="//param[@name='keyword' and not(. = preceding::param) and not(normalize-space(.) = '')]">
120
                   <xsl:sort select="."/>
121
               </xsl:apply-templates>
122
           </ul>
123
           </td>
124
           <td width="33%">
125
           <h3>Browse data sets by creator:</h3> 
126
           <ul>
127
               <xsl:apply-templates select="//param[@name='surName' and not(. = preceding::param) and not(normalize-space(.) = '')]">
128
                   <xsl:sort select="."/>
129
               </xsl:apply-templates>
130
           </ul>
131
           </td>
132
           <td width="33%">
133
           <h3>Browse data sets by organization:</h3> 
134
           <ul>
135
               <xsl:apply-templates select="//param[@name='organizationName' and not(. = preceding::param) and not(normalize-space(.) = '')]">
136
                   <xsl:sort select="."/>
137
               </xsl:apply-templates>
138
           </ul>
139
           </td>
140
           </tr>
141
           </table>
142
       </xsl:if>
143
      </body>
144
    </html>
145
  </xsl:template>
146

    
147
  <xsl:template match="param[@name='keyword']">
148
     <li>
149
     <a>
150
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.0.0&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>
151
     <xsl:value-of select="."/>
152
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
153
     </li>
154
  </xsl:template>
155

    
156
  <xsl:template match="param[@name='surName']">
157
     <li>
158
     <a>
159
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&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;surName=<xsl:value-of select="."/></xsl:attribute>
160
     <xsl:value-of select="."/>
161
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
162
     </li>
163
  </xsl:template>
164

    
165
  <xsl:template match="param[@name='organizationName']">
166
     <li>
167
     <a>
168
       <xsl:attribute name="href">{$contextURL}/metacat?action=query&amp;operator=INTERSECT&amp;qformat=knb&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.1&amp;returndoctype=eml://ecoinformatics.org/eml-2.1.0&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;organizationName=<xsl:value-of select="."/></xsl:attribute>
169
     <xsl:value-of select="."/>
170
     </a> (<xsl:value-of select="count(//param[.=current()])"/>)
171
     </li>
172
  </xsl:template>
173

    
174
</xsl:stylesheet>
(6-6/34)