Project

General

Profile

1
<%@ page language="java"%>
2

    
3
<% 
4
 /**
5
  *  '$RCSfile$'
6
  *    Copyright: 2000 Regents of the University of California and the
7
  *               National Center for Ecological Analysis and Synthesis
8
  *  For Details: http://www.nceas.ucsb.edu/
9
  *
10
  *   '$Author: daigle $'
11
  *     '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
12
  * '$Revision: 4080 $'
13
  * 
14
  * This program is free software; you can redistribute it and/or modify
15
  * it under the terms of the GNU General Public License as published by
16
  * the Free Software Foundation; either version 2 of the License, or
17
  * (at your option) any later version.
18
  *
19
  * This program is distributed in the hope that it will be useful,
20
  * but WITHOUT ANY WARRANTY; without even the implied warranty of
21
  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
  * GNU General Public License for more details.
23
  *
24
  * You should have received a copy of the GNU General Public License
25
  * along with this program; if not, write to the Free Software
26
  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
27
  *
28
  * This is an XSLT (http://www.w3.org/TR/xslt) stylesheet designed to
29
  * convert an XML file showing the resultset of a query
30
  * into an HTML format suitable for rendering with modern web browsers.
31
  */
32
%>
33

    
34
<%@ include file="settings.jsp"%>
35
<%@ include file="session_vars.jsp"%>
36

    
37
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
38

    
39
<html>
40

    
41
  <head>
42
    <title>
43
      Metacat Data Catalog
44
    </title>
45
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
46
    <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/lter/lter.css">
47
    <script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/lter/lter.js"></script>
48
    <script language="javascript" type="text/javascript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
49
    <script language="javascript" type="text/javascript" src="<%=STYLE_SKINS_URL%>/lter/branding_extensions.js"></script>
50
  </head>
51

    
52
  <body>
53
    <script language="javascript">
54
	  insertTemplateOpening("<%=CONTEXT_URL%>");
55
	  insertSearchBox("<%=CONTEXT_URL%>");
56
      insertTemplateClosing("<%=CONTEXT_URL%>");
57
    </script>
58
  </body>
59
</html>
(9-9/25)