blob: 10a7ecdd95add3deb0c199dad72192391f039ac1 [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 prefix="s" uri="/struts-tags" %>
<html>
<head>
<title>Admin: Delete Managed Repository</title>
<s:head/>
</head>
<body>
<h1>Admin: Delete Managed Repository</h1>
<s:actionerror/>
<div id="contentArea">
<div class="warningbox">
<p>
<strong>WARNING: This operation can not be undone.</strong>
</p>
</div>
<p>
Are you sure you want to delete the following managed repository?
</p>
<div class="infobox">
<table class="infotable">
<tr>
<td>ID:</td>
<td><code>${repository.id}</code></td>
</tr>
<tr>
<td>Name:</td>
<td>${repository.name}</td>
</tr>
<tr>
<td>Directory:</td>
<td>${repository.location}</td>
</tr>
</table>
</div>
<s:form method="post" action="deleteRepository" namespace="/admin" validate="true" theme="simple">
<s:hidden name="repoid"/>
<div class="buttons">
<s:submit value="Delete Configuration Only" method="deleteEntry" />
<s:submit value="Delete Configuration and Contents" method="deleteContents" />
<s:submit value="Cancel" method="execute"/>
</div>
</s:form>
</div>
</body>
</html>