<%-- 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/ --%> <%-- - Show uploaded file (single-file submission mode) - - Attributes to pass in - just.uploaded - Boolean indicating whether the user has just - uploaded a file OK - show.checksums - Boolean indicating whether to show checksums - - FIXME: Merely iterates through bundles, treating all bit-streams as - separate documents. Shouldn't be a problem for early adopters. --%> <%@ page contentType="text/html;charset=UTF-8" %> <%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %> <%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %> <%@ page import="java.util.List" %> <%@ page import="org.apache.commons.lang.time.DateFormatUtils" %> <%@ page import="org.dspace.content.Bitstream" %> <%@ page import="org.dspace.core.Context" %> <%@ page import="org.dspace.app.webui.servlet.SubmissionController" %> <%@ page import="org.dspace.authorize.AuthorizeServiceImpl" %> <%@ page import="org.dspace.authorize.ResourcePolicy" %> <%@ 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.content.BitstreamFormat" %> <%@ page import="org.dspace.content.Item" %> <%@ page import="org.dspace.content.factory.ContentServiceFactory" %> <%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %> <% request.setAttribute("LanguageSwitch", "hide"); // Obtain DSpace context Context context = UIUtil.obtainContext(request); //get submission information object SubmissionInfo subInfo = SubmissionController.getSubmissionInfo(context, request); boolean justUploaded = ((Boolean) request.getAttribute("just.uploaded")).booleanValue(); boolean showChecksums = ((Boolean) request.getAttribute("show.checksums")).booleanValue(); // Get the bitstream List all = ContentServiceFactory.getInstance().getItemService().getNonInternalBitstreams(context, subInfo.getSubmissionItem().getItem()); Bitstream bitstream = all.get(0); BitstreamFormat format = bitstream.getFormat(context); boolean withEmbargo = ((Boolean)request.getAttribute("with_embargo")).booleanValue(); %>
<% if (justUploaded) { %> <%--

Submit: File Uploaded Successfully

--%>

">

<%--

Your file was successfully uploaded.

--%>
<% } else { %> <%--

Submit: Uploaded File

--%>

">

<% } %> <%--

Here are the details of the file you have uploaded. Please check the details before going to the next step.    (More Help...)

--%>
<%-- --%> <% if (showChecksums) { %> <%-- --%> <% } %> <% if (showChecksums) { %> <% } %>
File Size File Format Checksum
<%= bitstream.getName() %> <%-- --%> " /> <%= bitstream.getSize() %> <%= bitstream.getFormatDescription(context) %> <% if (format.getSupportLevel() == 0) { %> ">() <% } else if (format.getSupportLevel() == 1) { %> ">() <% } else { %> ">() <% } %> <%-- --%> " /> <%= bitstream.getChecksum() %> (<%= bitstream.getChecksumAlgorithm() %>)
<% if (withEmbargo) { %>
" />
<% } %>

  • <% if (showChecksums) { %>
  • ">
  • <% } else { %>
  • "> " />
  • <% } %>

<%-- Hidden fields needed for SubmissionController servlet to know which step is next--%> <%= SubmissionController.getSubmissionParameters(context, request) %> <%-- HACK: Center used to align table; CSS and align="center" ignored by some browsers --%> <% //if not first step, show "Previous" button if(!SubmissionController.isFirstStep(request, subInfo)) { %>
" /> " /> " /> <% } else { %>
" /> " /> <% } %>