%-- 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/ --%> <%-- - Review file upload info - - Parameters to pass in to this page (from review.jsp) - submission.jump - the step and page number (e.g. stepNum.pageNum) to create a "jump-to" link --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@page import="org.dspace.core.ConfigurationManager"%> <%@page import="org.dspace.authorize.AuthorizeServiceImpl"%> <%@page import="org.dspace.authorize.ResourcePolicy"%> <%@page import="java.util.List"%> <%@ page import="org.dspace.app.webui.servlet.SubmissionController" %> <%@ page import="org.dspace.app.util.SubmissionInfo" %> <%@ page import="org.dspace.app.webui.util.UIUtil" %> <%@ page import="org.dspace.content.Bitstream" %> <%@ page import="org.dspace.content.BitstreamFormat" %> <%@ page import="org.dspace.content.Item" %> <%@ page import="org.dspace.core.Context" %> <%@ page import="org.dspace.core.Utils" %> <%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %> <%@ page import="javax.servlet.jsp.PageContext" %> <%@ page import="org.dspace.content.factory.ContentServiceFactory" %> <%@ page import="org.dspace.authorize.factory.AuthorizeServiceFactory" %> <%@ 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); boolean advanced = ConfigurationManager.getBooleanProperty("webui.submission.restrictstep.enableAdvancedForm", false); //get the step number (for jump-to link) String stepJump = (String) request.getParameter("submission.jump"); Item item = subInfo.getSubmissionItem().getItem(); //is advanced upload embargo step? Object isUploadWithEmbargoB = request.getAttribute("submission.step.uploadwithembargo"); boolean isUploadWithEmbargo = false; if(isUploadWithEmbargoB!=null) { isUploadWithEmbargo = (Boolean)isUploadWithEmbargoB; } %> <%-- ====================================================== --%> <%-- UPLOADED_FILES --%> <%-- ====================================================== --%>