Project

General

Profile

1
<%@ page language="java" %>
2
<%@ page import="java.util.TimeZone" %>
3
<%@ page import="edu.ucsb.nceas.metacat.accesscontrol.AccessControlInterface" %>
4
<%@ page import="edu.ucsb.nceas.metacat.PermissionController" %>
5
<%@ page import="edu.ucsb.nceas.utilities.LSIDUtil" %>
6
<%
7
/*
8
*  '$RCSfile$'
9
*    Copyright: 2009 Regents of the University of California and the
10
*               National Center for Ecological Analysis and Synthesis
11
*
12
*   '$Author: daigle $'
13
*     '$Date: 2008-07-06 21:25:34 -0700 (Sun, 06 Jul 2008) $'
14
* '$Revision: 4080 $'
15
*
16
* This program is free software; you can redistribute it and/or modify
17
* it under the terms of the GNU General Public License as published by
18
* the Free Software Foundation; either version 2 of the License, or
19
* (at your option) any later version.
20
*
21
* This program is distributed in the hope that it will be useful,
22
* but WITHOUT ANY WARRANTY; without even the implied warranty of
23
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24
* GNU General Public License for more details.
25
*
26
* You should have received a copy of the GNU General Public License
27
* along with this program; if not, write to the Free Software
28
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
29
*/
30

    
31
String karLsid = request.getParameter("karid");
32
String karId = LSIDUtil.getDocId(karLsid, false);
33
PermissionController permissionController = new PermissionController(karId);
34
boolean hasSchedulePermissions = 
35
	permissionController.hasPermission(request.getSession().getId(), AccessControlInterface.READSTRING);
36

    
37
%>
38
<%@ include file="settings.jsp"%>
39

    
40
<html>
41
    <head>
42
        <title>Sanparks TPC Report Search</title>
43
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks.css"/>
44
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/sanparks-scheduled-jobs.css"/>
45
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/header2.css"/>
46
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/left-nav2.css"/>
47
        <link rel="stylesheet" type="text/css" href="<%=STYLE_SKINS_URL%>/sanparks/footer2.css"/>
48
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_SKINS_URL%>/sanparks/sanparks.js"></script>
49
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/style/skins/sanparks/searchWorkflowPathQuery.js"></script>
50
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/branding.js"></script>
51
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/widgets/form-fields-widget.js"></script>
52
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/prototype-1.5.1.1/prototype.js"></script>
53
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/ajax-utils.js"></script>
54
        <script language="JavaScript" type="text/JavaScript" src="<%=STYLE_COMMON_URL%>/scheduleWorkflow.js"></script>
55
    </head>
56
    <body class="main-section" onload="getWorkflowRunSection('<%=SERVLET_URL%>','<%=request.getParameter("workflowid")%>','<%=request.getParameter("workflowname")%>','workflow-run-content')">
57
        <jsp:include page="header2.jsp"/>
58
        
59
        <!-- Main content -->
60
        <jsp:include page="left-nav2.jsp"/>
61
           
62
    	<div class=content-section>  
63
    	    <div class="content-subsection" id="workflow-summary-section"> 
64
<%
65
    	    if (! hasSchedulePermissions) {
66
%>
67
				<div class="warning-header">You have view permissions only for this workflow</div>
68
<%
69
    	    } 
70
%>		
71
				<div class="content-subsection-header">Workflow Summary</div> 
72
    			<div class="form-input-row" id="form-base-row">
73
    				<div class="summary-field" id='workflow-name-label' >Name: </div>  
74
<%
75
					if (request.getParameter("workflowname") != null) {
76
%>
77
						<div class="summary-value" id='workflow-name-value' ><%=request.getParameter("workflowname")%></div>
78
<%
79
					}
80
%>	  
81
					<br>
82
					<div class="summary-field" id='workflow-lsid-label' >LSID: </div>  
83
<%
84
					if (request.getParameter("workflowid") != null) {
85
%>
86
						<div class="summary-value" id='workflow-lsid-value' ><%=request.getParameter("workflowid")%></div>
87
<%
88
    	    			if (hasSchedulePermissions) {
89
%>
90
						(<jsp:text><![CDATA[<a href=./workflowAccess.jsp?workflowid=]]></jsp:text><jsp:expression>request.getParameter("workflowid")</jsp:expression><jsp:text><![CDATA[&workflowname=]]></jsp:text><jsp:expression>request.getParameter("workflowname")</jsp:expression><jsp:text><![CDATA[>Change Access Permissions</a>]]></jsp:text>)
91
						
92
<%
93
    	    			}
94
					}
95
%>	  
96
				</div>
97
			</div>
98
			<div class="content-subsection" id="schedule-section">   
99
    			<div class="content-subsection-header">Schedule Workflow </div> 
100
        		<form action="<%=SERVLET_URL%>" name="workflowScheduler" id="workflowScheduler">
101
					<input name="qformat" value="sanparks" type="hidden" />
102
					<input name="action" value="scheduleWorkflow" type="hidden" />  
103
					<input name="forwardto" value="scheduleWorkflowRun.jsp" type="hidden" /> 
104
<%
105
					if (request.getParameter("workflowid") != null) {
106
%>
107
						<input name='workflowid' value='<%=request.getParameter("workflowid")%>' type='hidden' />
108
<%
109
					}
110
					if (request.getParameter("karid") != null) {
111
%>
112
						<input name='karid' value='<%=request.getParameter("karid")%>' type='hidden' />
113
<%
114
					}
115
					if (request.getParameter("workflowname") != null) {
116
%>
117
						<input name='workflowname' value='<%=request.getParameter("workflowname")%>' type='hidden' />
118
<%
119
					}
120
%>	  		 
121
					<div class="form-input-row">
122
						<div class="field-label" id='start-time-label' >Start Time: </div>  
123
						<input class="date-input" name='starttime' id='starttime' /> 
124
						<div class="field-suffix"><%= TimeZone.getDefault().getDisplayName(true, TimeZone.SHORT) %> &nbsp;&nbsp;(mm/dd/yyyy hh:mm:ss)</div>
125
					</div>
126
					<div class="form-input-row">
127
						<div class="field-label" id='start-time-label' >End Time: </div>  
128
						<input class="date-input" name='endtime' id='endtime' /> 
129
						<div class="field-suffix"><%= TimeZone.getDefault().getDisplayName(true, TimeZone.SHORT) %> &nbsp;&nbsp;(mm/dd/yyyy hh:mm:ss)</div>
130
					</div>
131
					<div class="form-input-row">
132
						<div class="field-label" id='interval-label' >Interval: </div>  
133
						<input class="int-input" name='intervalvalue' id='intervalvalue' /> 
134
						<select class="dropdown-input" name='intervalunit'>
135
							<!-- option name="seconds" value="sec">seconds</option -->
136
							<!-- option name="minutes" value="min">minutes</option -->
137
							<option name="hours" value="hour">hours</option>
138
							<option name="days" value="day">days</option>
139
							<option name="weeks" value="week">weeks</option>
140
							<option name="months" value="mon">months</option>
141
						</select>
142
					</div>
143
					<br> <br>     		
144
        			<input class="submit-button" value="Schedule" type="submit"
145
<%
146
    	    	if (! hasSchedulePermissions) {
147
%>
148
					disabled="disabled"
149
<%
150
    	    	}
151
%>      			
152
        			> 
153
        		</form>
154
			</div>		
155
			<div class="content-subsection" id="workflow-run-section"> 
156
				<div class="content-subsection-header">Workflow Run Schedule</div> 
157
    			<div class="workflow-run-content" id="workflow-run-content"></div>
158
			</div>
159
        </div>
160
        
161
        <!-- Footer Content -->
162
        <jsp:include page="footer2.jsp" />
163
    </body>
164
</html>
(31-31/39)