<%-- 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. --%> <%@ page import="org.apache.log4j.*" %> <%@ page import="org.apache.wiki.*" %> <%@ page import="org.apache.wiki.api.exceptions.WikiException" %> <%@ page import="org.apache.wiki.preferences.Preferences" %> <%@ page import="org.apache.wiki.tags.BreadcrumbsTag" %> <%@ page import="org.apache.wiki.tags.BreadcrumbsTag.FixedQueue" %> <%@ page import="org.apache.wiki.util.TextUtil" %> <%@ page errorPage="/Error.jsp" %> <%@ taglib uri="/WEB-INF/jspwiki.tld" prefix="wiki" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ page import="java.util.*" %> <%@ page import="java.text.*" %> <%! Logger log = Logger.getLogger("JSPWiki"); %> <% WikiEngine wiki = WikiEngine.getInstance( getServletConfig() ); // Create wiki context and check for authorization WikiContext wikiContext = wiki.createContext( request, WikiContext.RENAME ); if(!wiki.getAuthorizationManager().hasAccess( wikiContext, response )) return; String renameFrom = wikiContext.getName(); String renameTo = request.getParameter("renameto"); boolean changeReferences = false; ResourceBundle rb = Preferences.getBundle( wikiContext, "CoreResources" ); if (request.getParameter("references") != null) { changeReferences = true; } log.info("Page rename request for page '"+renameFrom+ "' to new name '"+renameTo+"' from "+request.getRemoteAddr()+" by "+request.getRemoteUser() ); WikiSession wikiSession = wikiContext.getWikiSession(); try { if (renameTo.length() > 0) { String renamedTo = wiki.renamePage(wikiContext, renameFrom, renameTo, changeReferences); FixedQueue trail = (FixedQueue) session.getAttribute( BreadcrumbsTag.BREADCRUMBTRAIL_KEY ); if( trail != null ) { trail.removeItem( renameFrom ); session.setAttribute( BreadcrumbsTag.BREADCRUMBTRAIL_KEY, trail ); } log.info("Page successfully renamed to '"+renamedTo+"'"); response.sendRedirect( wikiContext.getURL( WikiContext.VIEW, renamedTo ) ); return; } wikiSession.addMessage("rename", rb.getString("rename.empty")); log.info("Page rename request failed because new page name was left blank"); } catch (WikiException e) { if (e.getMessage().equals("You cannot rename the page to itself")) { log.info("Page rename request failed because page names are identical"); wikiSession.addMessage("rename", rb.getString("rename.identical") ); } else if (e.getMessage().startsWith("Page already exists ")) { log.info("Page rename request failed because new page name is already in use"); wikiSession.addMessage("rename", MessageFormat.format(rb.getString("rename.exists"),renameTo)); } else { wikiSession.addMessage("rename", MessageFormat.format(rb.getString("rename.unknownerror"),e.toString())); } } pageContext.setAttribute( "renameto", TextUtil.replaceEntities( renameTo ), PageContext.REQUEST_SCOPE ); response.setContentType("text/html; charset="+wiki.getContentEncoding() ); String contentPage = wiki.getTemplateManager().findJSP( pageContext, wikiContext.getTemplate(), "ViewTemplate.jsp" ); %>