1
|
<%
|
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
|
|
32
|
// if including page has not set a value for the display title,
|
33
|
// use the default one from the settings file
|
34
|
if (include_portalhead_title==null) include_portalhead_title = DEFAULT_PORTALHEAD_TITLE;
|
35
|
%>
|
36
|
<!-- ********************* START PORTAL HEADER TABLE *********************** -->
|
37
|
<table width="100%" cellpadding="0" cellspacing="0">
|
38
|
<tr>
|
39
|
<td width="10" align="right" valign="top" class="title"> </td>
|
40
|
|
41
|
<td width="80" align="center" valign="bottom" class="title">
|
42
|
<a target="_top" href="index.jsp">
|
43
|
<img
|
44
|
src="images/KNBLogo_top.gif"
|
45
|
border="0" /></a></td>
|
46
|
|
47
|
<td align="left" valign="middle" class="title">
|
48
|
<p class="title"><%=include_portalhead_title%></p></td>
|
49
|
</tr>
|
50
|
|
51
|
<tr>
|
52
|
<td width="10" align="right" valign="top" class="maintable">
|
53
|
<img
|
54
|
src="images/transparent1x1.gif"
|
55
|
width="10" height="3" /></td>
|
56
|
|
57
|
<td width="80" rowspan="2" align="center" valign="top"
|
58
|
class="sectionheader">
|
59
|
<a target="_top" href="index.jsp">
|
60
|
<img
|
61
|
src="images/KNBLogo_bottom.gif"
|
62
|
width="80" height="25" border="0" /></a></td>
|
63
|
|
64
|
<td align="left" valign="top" class="toollink" width="100%">
|
65
|
<img src="images/transparent1x1.gif"
|
66
|
width="600" height="3" /></td>
|
67
|
</tr>
|
68
|
<tr>
|
69
|
<td width="10" align="right" valign="top" class="sectionheader">
|
70
|
 </td>
|
71
|
|
72
|
<td align="left" valign="middle" class="sectionheader" style="text-align: left">
|
73
|
   <a target="_top" href="index.jsp"
|
74
|
class="toollink">Home</a></td>
|
75
|
</tr>
|
76
|
</table>
|
77
|
<!-- *********************** END PORTAL HEADER TABLE *********************** -->
|
78
|
<%
|
79
|
// reset title to null, ready for next use
|
80
|
include_portalhead_title=null;
|
81
|
%>
|