ActionMapping mapping,
ActionForm actionForm,
HttpServletRequest request,
HttpServletResponse response)
throws Exception {
WebsiteFormEx form = (WebsiteFormEx)actionForm;
UserManager umgr = RollerFactory.getRoller().getUserManager();
WebsiteData website = umgr.getWebsite(form.getId());
ActionForward forward = mapping.findForward("removeWebsite.page");
request.setAttribute("model", new WebsitePageModel(
"websiteRemove.title", request, response, mapping, website));
try {
RollerSession rses = RollerSession.getRollerSession(request);
if (rses.isUserAuthorizedToAdmin(website)) {
form.copyFrom(website, request.getLocale());
request.setAttribute("website", website);
} else {
forward = mapping.findForward("access-denied");
}
} catch (Exception e) {