blob: e3599febeb0d8d8f4556ea61f089ee43e6115c94 [file] [log] [blame]
<%--
~ Licensed to the Apache Software Foundation (ASF) under one
~ or more contributor license agreements. See the NOTICE file
~ distributed with this work for additional information
~ regarding copyright ownership. The ASF licenses this file
~ to you under the Apache License, Version 2.0 (the
~ "License"); you may not use this file except in compliance
~ with the License. You may obtain a copy of the License at
~
~ http://www.apache.org/licenses/LICENSE-2.0
~
~ Unless required by applicable law or agreed to in writing,
~ software distributed under the License is distributed on an
~ "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
~ KIND, either express or implied. See the License for the
~ specific language governing permissions and limitations
~ under the License.
--%>
<%@ taglib uri="/struts-tags" prefix="s" %>
<%@ taglib uri="http://www.extremecomponents.org" prefix="ec" %>
<html>
<s:i18n name="localization.Continuum">
<head>
<title><s:text name="schedules.page.title"/></title>
</head>
<body>
<div id="h3">
<h3><s:text name="schedules.section.title"/></h3>
<s:set name="schedules" value="schedules" scope="request"/>
<ec:table items="schedules"
var="schedule"
autoIncludeParameters="false"
showExports="false"
showPagination="false"
showStatusBar="false"
sortable="false"
filterable="false">
<ec:row>
<ec:column property="name" title="schedules.table.name"/>
<ec:column property="description" title="schedules.table.description"/>
<ec:column property="delay" title="schedules.table.delay"/>
<ec:column property="cronExpression" title="schedules.table.cronExpression"/>
<ec:column property="maxJobExecutionTime" title="schedules.table.maxJobExecutionTime"/>
<ec:column property="active" title="schedules.table.active"/>
<ec:column property="editActions" title="&nbsp;" width="1%">
<s:url id="editScheduleUrl" action="schedule">
<s:param name="id" value="#attr['schedule'].id"/>
</s:url>
<s:a href="%{editScheduleUrl}"><img src="<s:url value='/images/edit.gif' includeParams="none"/>" alt="<s:text name='edit'/>" title="<s:text name='edit'/>" border="0" /></s:a>
</ec:column>
<ec:column property="editActions" title="&nbsp;" width="1%">
<s:set var="tname" value="'remScheduleToken' + #attr['schedule'].id" scope="page"/>
<s:token name="%{#attr['tname']}"/>
<s:url id="removeScheduleUrl" action="removeSchedule">
<s:param name="id" value="#attr['schedule'].id"/>
<s:param name="name" value="#attr['schedule'].name"/>
<s:param name="struts.token.name" value="#attr['tname']" />
<s:param name="%{#attr['tname']}" value="#session['struts.tokens.' + #attr['tname']]"/>
</s:url>
<s:a href="%{removeScheduleUrl}"><img src="<s:url value='/images/delete.gif' includeParams="none"/>" alt="<s:text name='delete'/>" title="<s:text name='delete'/>" border="0"></s:a>
</ec:column>
</ec:row>
</ec:table>
</div>
<div class="functnbar3">
<s:form action="schedule" method="post">
<s:submit value="%{getText('add')}"/>
</s:form>
</div>
</body>
</s:i18n>
</html>