<%-- 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/ --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ page import="java.io.IOException" %> <%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %> <%@ page import="javax.servlet.jsp.PageContext" %> <%@ page import="java.util.HashMap" %> <%@ page import="java.util.Iterator" %> <%@ page import="org.dspace.app.webui.servlet.SubmissionController" %> <%@ page import="org.dspace.submit.AbstractProcessingStep" %> <%@ page import="org.dspace.app.util.SubmissionInfo" %> <%@ page import="org.dspace.app.webui.util.UIUtil" %> <%@ page import="org.dspace.core.Context" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <% request.setAttribute("LanguageSwitch", "hide"); // Obtain DSpace context Context context = UIUtil.obtainContext(request); //get submission information object SubmissionInfo subInfo = SubmissionController.getSubmissionInfo(context, request); //get list of review JSPs from VerifyServlet HashMap reviewJSPs = (HashMap) request.getAttribute("submission.review"); //get an iterator to loop through the review JSPs to load Iterator reviewIterator = reviewJSPs.keySet().iterator(); %>

">

<% //loop through the list of review JSPs while(reviewIterator.hasNext()) { //remember, the keys of the reviewJSPs hashmap is in the //format: stepNumber.pageNumber String stepAndPage = (String) reviewIterator.next(); //finally get the path to the review JSP (the value) String reviewJSP = (String) reviewJSPs.get(stepAndPage); %>
<%--Load the review JSP and pass it step & page info--%>
<% } %>
<%-- Hidden fields needed for SubmissionController servlet to know which step is next--%> <%= SubmissionController.getSubmissionParameters(context, request) %>
" /> " /> " />