Project

General

Profile

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

    
3
<%
4
/*
5
*  '$RCSfile$'
6
*    Copyright: 2009 Regents of the University of California and the
7
*               National Center for Ecological Analysis and Synthesis
8
*
9
*   '$Author: daigle $'
10
*     '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
11
* '$Revision: 4080 $'
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

    
28
%>
29
<%@ include file="settings.jsp"%>
30

    
31
<html>
32
    <head>
33
        <title>Sanparks TPC Report Search</title>
34
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks.css"/>
35
		<link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-scheduled-jobs.css"/>
36
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/header2.css"/>
37
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/left-nav2.css"/>
38
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/footer2.css"/>
39
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/sanparks.js"></script>
40
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
41
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/prototype-1.5.1.1/prototype.js"></script>
42
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/ajax-utils.js"></script>
43
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/workflowAccess.js"></script>
44
    </head>
45
    <body class="main-section" onload="getAccessSection('<%=SERVLET_URL%>','<%=request.getParameter("workflowid")%>','<%=request.getParameter("workflowname")%>','access-info-content')">
46
        <jsp:include page="header2.jsp"/>
47
        
48
        <!-- Main content -->
49
        <jsp:include page="left-nav2.jsp"/>
50
		<div class="content-section">
51
			<div class="content-subsection" id="access-info-section"> 
52
				<div class="content-subsection-header">Workflow Summary</div> 
53
    			<div class="form-input-row" id="form-base-row">
54
	    			<div class="summary-field" id='workflow-name-label' >Name: </div>  
55
					<div class="summary-value" id='workflow-name-value' ><%=request.getParameter("workflowname")%></div>	  
56
					<br/>
57
					<div class="summary-field" id='workflow-lsid-label' >LSID: </div>  
58
					<div class="summary-value" id='workflow-lsid-value' ><%=request.getParameter("workflowid")%></div>						
59
	  			</div>
60
			</div>
61

    
62
			<div class="access-info-content" id="access-info-content"></div>
63
		</div>
64
        
65
        <!-- Footer Content -->
66
        <jsp:include page="footer2.jsp" />
67
    </body>
68
</html>
(37-37/38)