Edit C:\apache-tomcat-7.0.69\webapps\jspui\tools\itemmap-info.jsp
<%-- The contents of this file are subject to the license and copyright detailed in the LICENSE and NOTICE files at the root of the source tree and available online at http://www.dspace.org/license/ --%> <%-- - Display information with a 'continue' button. (Maybe a cancel?) - - Attributes to pass in: - - collection - Collection we're managing - message - String to output - processedItems - List of UUID of items to be mapped. --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ page import="java.util.LinkedList" %> <%@ page import="java.util.UUID" %> <%@ page import="org.dspace.content.Collection" %> <% Collection collection = (Collection)request.getAttribute("collection"); // supported values: "none-selected", "none-removed", "added", "remove" String message = (String)request.getAttribute("message"); LinkedList<UUID> processedItems = (LinkedList<UUID>)request.getAttribute("processedItems"); %> <dspace:layout style="submission" titlekey="jsp.tools.itemmap-info.title"> <h2><fmt:message key="jsp.tools.itemmap-info.heading"/></h2> <div class="alert"> <% if (message.equals("none-selected")) { %> <fmt:message key="jsp.tools.itemmap-info.msg.none-selected" /> <% } else if (message.equals("none-removed")) { %> <fmt:message key="jsp.tools.itemmap-info.msg.none-removed" /> <% } else if (message.equals("added")) { %> <%-- Iterate through processed items --%> <% for (int i=0; i<processedItems.size(); i++) { %> <fmt:message key="jsp.tools.itemmap-info.msg.added"> <fmt:param><%= (String)processedItems.get(i).toString() %></fmt:param> </fmt:message><br/> <% } %> <% } else if (message.equals("remove")) { %> <%-- Iterate through processed items --%> <% for (int i=0; i<processedItems.size(); i++) { %> <fmt:message key="jsp.tools.itemmap-info.msg.remove"> <fmt:param><%= (String)processedItems.get(i).toString() %></fmt:param> </fmt:message><br/> <% } %> <% } %> </div> <form method="post"> <input type="hidden" name="cid" value="<%=collection.getID()%>"/> <input class="btn btn-default" type="submit" name="submit" value="<fmt:message key="jsp.tools.itemmap-info.button.continue"/>"/> </form> </dspace:layout>
Ms-Dos/Windows
Unix
Write backup
jsp File Browser version 1.2 by
www.vonloesch.de