blob: d83210994f5e3afbc30ccd423521dd44eb4386e1 [file] [log] [blame]
<!-- Standard Struts Entries -->
<%@ page language="java" contentType="text/html;charset=utf-8" %>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="/WEB-INF/controls.tld" prefix="controls" %>
<html:html locale="true">
<%@ include file="../users/header.jsp" %>
<!-- Body -->
<body bgcolor="white" background="../images/PaperTexture.gif">
<!--Form -->
<html:errors/>
<html:form method="post" action="/DeleteServices">
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr bgcolor="7171A5">
<td width="81%">
<div class="page-title-text" align="left">
<bean:message key="actions.services.delete"/>
</div>
</td>
<td align="right" nowrap>
<div class="page-title-text">
<controls:actions label="Service Actions">
<controls:action selected="true">
----<bean:message key="actions.available.actions"/>----
</controls:action>
<controls:action>
---------------------------------
</controls:action>
</controls:actions>
</div>
</td>
</tr>
</table>
<%@ include file="../buttons.jsp" %>
<br>
<%-- Services List --%>
<table class="back-table" border="0" cellspacing="0" cellpadding="1"
width="100%">
<tr><td>
<table class="front-table" border="1"
cellspacing="0" cellpadding="0" width="100%">
<tr class="header-row">
<td><div align="left" class="table-header-text">
<bean:message key="actions.delete"/>
</div></td>
<td><div align="left" class="table-header-text">
<bean:message key="host.name"/>
</div></td>
</tr>
<logic:iterate name="servicesList" id="service">
<tr class="line-row">
<td><div align="left" class="table-normal-text">&nbsp;
<logic:match name="service"
value='<%= (String)request.getAttribute("adminAppService") %>'>
<font color='red'>*</font>
</logic:match>
<logic:notMatch name="service"
value='<%= (String)request.getAttribute("adminAppService") %>'>
<label for="services"></label>
<html:multibox property="services"
value="<%= service.toString() %>" styleId="services" styleId="services"/>
</logic:notMatch>
</div></td>
<td><div align="left" class="table-normal-text">&nbsp;
<html:link page='<%= "/EditService.do?select=" +
java.net.URLEncoder.encode(service.toString(),"UTF-8") %>'>
<controls:attribute name="service" attribute="name"/>
</html:link>
</div></td>
</tr>
</logic:iterate>
</table>
</td></tr>
</table>
<br>
<font color='red'> * </font>
Cannot delete the service the admin application is running on.
<br>
<%@ include file="../buttons.jsp" %>
<br>
</html:form>
<p>&nbsp;</p>
</body>
</html:html>