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: jones $'
10
*     '$Date: 2004-07-13 12:48:16 -0700 (Tue, 13 Jul 2004) $'
11
* '$Revision: 2211 $'
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

    
33
  <xsl:output method="html"/>
34
  <xsl:param name="sessid"/>
35
  <xsl:param name="qformat">default</xsl:param>
36
  <xsl:param name="enableediting">false</xsl:param>
37
  <xsl:template match="/">
38
   <html>
39
      <head>
40
        <link rel="stylesheet" type="text/css" 
41
              href="@style-skins-path@/{$qformat}/{$qformat}.css" />
42
        <script language="Javascript" type="text/JavaScript"
43
                src="@style-skins-path@/{$qformat}/{$qformat}.js" />
44
        <script language="Javascript" type="text/JavaScript"
45
                src="@style-common-path@/branding.js" />
46
        <script language="JavaScript">
47
          <![CDATA[
48
          function submitform(action,form_ref) {
49
              form_ref.action.value=action;
50
              form_ref.sessionid.value="]]><xsl:value-of select="$sessid" /><![CDATA[";
51
              form_ref.qformat.value="]]><xsl:value-of select="$qformat" /><![CDATA[";
52
              form_ref.submit();
53
          }
54

    
55
          ]]>
56
        </script>
57
      </head>
58

    
59
      <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
60
      <script language="JavaScript">
61
          insertTemplateOpening();
62
          insertSearchBox();
63
      </script>
64
        <table width="100%" align="center" border="0" cellpadding="5" cellspacing="0">
65
           <tr>
66
             <td align="left"><br></br><p class="emphasis"><xsl:number value="count(resultset/document)" /> data packages found</p></td>
67
           </tr></table>
68
<!-- This tests to see if there are returned documents,
69
            if there are not then don't show the query results -->
70

    
71
      <xsl:if test="count(resultset/document) &gt; 0">
72

    
73
         <table width="95%" align="center" border="0" cellpadding="0" cellspacing="0">
74
           <tr>
75
             <th class="tablehead_lcorner" align="right" valign="top"><img src="@style-skins-path@/default/images/transparent1x1.gif" width="1" height="1" /></th>
76
             <th class="tablehead">Title</th>
77
             <th width="15%" class="tablehead" style="text-align: left">Contacts</th>
78
             <th width="15%" class="tablehead" style="text-align: left">Organization</th>
79
             <th width="15%" class="tablehead" style="text-align: left">Keywords</th>
80
             <xsl:if test="$enableediting = 'true'">
81
               <th width="10%" class="tablehead" style="text-align: middle">Actions</th>
82
             </xsl:if>
83
             <th class="tablehead_rcorner" align="right" valign="top"><img src="@style-skins-path@/default/images/transparent1x1.gif" width="1" height="1" /></th>
84
           </tr>
85

    
86
         <xsl:for-each select="resultset/document">
87
           <xsl:sort select="./param[@name='dataset/title']"/>
88
           <tr valign="top" class="subpanel">
89
             <xsl:attribute name="class">
90
               <xsl:choose>
91
                 <xsl:when test="position() mod 2 = 1">rowodd</xsl:when>
92
                 <xsl:when test="position() mod 2 = 0">roweven</xsl:when>
93
               </xsl:choose>
94
             </xsl:attribute>
95

    
96
             <td width="10">&#160;</td>
97
             <td class="text_plain">
98
               <form action="@servlet-path@" method="POST">
99
                 <xsl:attribute name="name">
100
                   <xsl:value-of select="translate(./docid, '()-.', '')" />
101
                 </xsl:attribute>
102

    
103
                 <input type="hidden" name="qformat" />
104
                 <input type="hidden" name="sessionid" />
105
                 <xsl:if test="$enableediting = 'true'">
106
	 	           <input type="hidden" name="enableediting" value="{$enableediting}"/>
107
                 </xsl:if>
108
                 <input type="hidden" name="action" value="read"/>
109
                 <input type="hidden" name="docid">
110
                   <xsl:attribute name="value">
111
                     <xsl:value-of select="./docid"/>
112
                   </xsl:attribute>
113
                 </input>
114
                 <xsl:for-each select="./relation">
115
                   <input type="hidden" name="docid">
116
                     <xsl:attribute name="value" >
117
                       <xsl:value-of select="./relationdoc" />
118
                     </xsl:attribute>
119
                   </input>
120
                 </xsl:for-each>
121

    
122
                 <a>
123
                   <xsl:attribute name="href">javascript:submitform('read',document.<xsl:value-of select="translate(./docid, '()-.', '')"/>)</xsl:attribute>
124
                   <xsl:text>&#187;&#160;</xsl:text>
125
                   <xsl:choose>
126
                     <xsl:when test="./param[@name='dataset/title']!=''">
127
                        <xsl:value-of select="./param[@name='dataset/title']"/>
128
                     </xsl:when>
129
                     <xsl:otherwise>
130
                       <xsl:value-of select="./param[@name='citation/title']"/>
131
                       <xsl:value-of select="./param[@name='software/title']"/>
132
                       <xsl:value-of select="./param[@name='protocol/title']"/>
133
                     </xsl:otherwise>
134
                   </xsl:choose>
135
                 </a><br />
136
                 <br/>
137
                 <p><pre>ID: <xsl:value-of select="./docid"/></pre></p>
138

    
139
                 <xsl:if test="starts-with(./doctype, 'eml://ecoinformatics.org/eml-2.0.0')">
140
                 <a>
141
                   <xsl:attribute name="href"><![CDATA[http://nebulous.nceas.ucsb.edu:8090/httprenderer/servlet/jalamafrontservlet?action=loadxmlinstance&url=@systemidserver@@servlet-path@%3Faction=read%26qformat=xml%26docid=]]><xsl:value-of select="./docid"/></xsl:attribute>
142
                   <xsl:text>&#187;&#160;</xsl:text>
143
                   <b>Create data entry form</b>
144
                 </a><br/>
145
                 </xsl:if>
146

    
147
               </form>
148
             </td>
149

    
150
             <td class="text_plain">
151
               <xsl:for-each select="./param[@name='originator/individualName/surName']" >
152
                 <xsl:value-of select="." />
153
                 <br/>
154
                </xsl:for-each>
155
               <xsl:for-each select="./param[@name='creator/individualName/surName']" >
156
                 <xsl:value-of select="." />
157
                 <br/>
158
               </xsl:for-each>
159

    
160
             </td>
161
             <td class="text_plain">
162
                 <xsl:value-of select="./param[@name='originator/organizationName']" />
163
                 <xsl:value-of select="./param[@name='creator/organizationName']" />
164

    
165
             </td>
166

    
167
             <td class="text_plain">
168
               <xsl:for-each
169
                select="./param[@name='keyword']">
170
                 <xsl:value-of select="." />
171
                 <br/>
172
               </xsl:for-each>
173

    
174
             </td>
175
	   
176
             <xsl:if test="$enableediting = 'true'">
177
               <td class="text_plain">
178
	       <form action="@servlet-path@" method="POST">
179
	               <input type="hidden" name="action" value="read"/>
180
	 	       <input type="hidden" name="qformat" value="{$qformat}"/>
181
				<input type="hidden" name="sessionid"  value="{$sessid}"/>
182
                       <input type="hidden" name="docid">
183
                       <xsl:attribute name="value">
184
                          <xsl:value-of select="./docid"/>
185
                       </xsl:attribute>
186
                       </input>
187
                       <center>
188
		       <input type="SUBMIT"  value=" View " name="View">
189
 	               </input>
190
	               </center>
191
	             </form>
192
                 <form action="@cgi-prefix@/register-dataset.cgi" 
193
                       method="POST">
194
	               <input type="hidden" name="stage" value="modify"/>	
195
	 	           <input type="hidden" name="cfg" value="{$qformat}"/>
196
					<input type="hidden" name="sessionid"  value="{$sessid}"/>
197
                   <input type="hidden" name="docid">
198
                     <xsl:attribute name="value">
199
                       <xsl:value-of select="./docid"/>
200
                     </xsl:attribute>
201
                   </input>
202
                   <center>
203
		             <input type="SUBMIT"  value=" Edit " name="Edit">
204
 	                 </input>
205
	               </center>
206
	             </form>
207
                 <form action="@cgi-prefix@/register-dataset.cgi" 
208
                       method="POST">
209
	               <input type="hidden" name="stage" value="delete"/>	
210
	 	           <input type="hidden" name="cfg" value="{$qformat}"/>
211
					<input type="hidden" name="sessionid"  value="{$sessid}"/>
212
                   <input type="hidden" name="docid">
213
                     <xsl:attribute name="value">
214
                       <xsl:value-of select="./docid"/>
215
                     </xsl:attribute>
216
                   </input>
217
                   <center>
218
		             <input type="SUBMIT"  value="Delete" name="Delete">
219
 	                 </input>
220
	               </center>
221
	             </form>
222
	           </td>	  
223
             </xsl:if>
224
             <td width="10">&#160;</td>
225
             </tr>
226
             <tr class="searchresultsdivider"><td colspan="6">
227
             <img src="@style-skins-path@/default/images/transparent1x1.gif" width="1" height="1" /></td></tr>
228

    
229
          </xsl:for-each>
230
          </table>
231

    
232
       </xsl:if>
233
      <script language="JavaScript">
234
          insertTemplateClosing();
235
      </script>
236
    </body>
237
    </html>
238
    </xsl:template>
239

    
240
</xsl:stylesheet>
(15-15/15)