<%-- - $Revision: 10204 $ - $Date: 2008-04-11 18:44:25 -0400 (Fri, 11 Apr 2008) $ - - Copyright (C) 2004-2008 Jive Software. All rights reserved. - - Licensed 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. --%> <%@ page import="org.jivesoftware.util.*, org.jivesoftware.openfire.muc.MUCRoom, java.net.URLEncoder" errorPage="error.jsp" %> <%@ page import="org.jivesoftware.openfire.muc.MultiUserChatService" %> <%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c"%> <%@ taglib uri="http://java.sun.com/jstl/fmt_rt" prefix="fmt" %> <% webManager.init(request, response, session, application, out ); %> <% // Get parameters // boolean cancel = request.getParameter("cancel") != null; boolean delete = request.getParameter("delete") != null; String mucname = ParamUtils.getParameter(request,"mucname"); String reason = ParamUtils.getParameter(request,"reason"); // Handle a cancel if (cancel) { response.sendRedirect("muc-service-summary.jsp"); return; } // Load the room object MultiUserChatService muc = webManager.getMultiUserChatManager().getMultiUserChatService(mucname); // Handle a room delete: if (delete) { // Delete the rooms in the service if (muc != null) { for (MUCRoom room : muc.getChatRooms()) { // If the room still exists then destroy it room.destroyRoom(null, reason); } // Log the event webManager.logEvent("destroyed MUC service "+mucname, "reason = "+reason); // Remove the service itself webManager.getMultiUserChatManager().removeMultiUserChatService(mucname); } // Done, so redirect response.sendRedirect("muc-service-summary.jsp?deletesuccess=true"); return; } %> <fmt:message key="muc.service.delete.title"/> "/>

"><%= mucname %>

<%= mucname %>


"> ">