mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-14 21:43:11 +00:00

- (SF Patch #1230956) DSpace UI XHTML/WAI compliant git-svn-id: http://scm.dspace.org/svn/repo/trunk@1303 9c30dcfa-912a-0410-8fc2-9e0234be79fd
213 lines
7.7 KiB
Plaintext
213 lines
7.7 KiB
Plaintext
<%--
|
|
- progressbar.jsp
|
|
-
|
|
- Version: $Revision$
|
|
-
|
|
- Date: $Date$
|
|
-
|
|
- Copyright (c) 2002, Hewlett-Packard Company and Massachusetts
|
|
- Institute of Technology. All rights reserved.
|
|
-
|
|
- Redistribution and use in source and binary forms, with or without
|
|
- modification, are permitted provided that the following conditions are
|
|
- met:
|
|
-
|
|
- - Redistributions of source code must retain the above copyright
|
|
- notice, this list of conditions and the following disclaimer.
|
|
-
|
|
- - Redistributions in binary form must reproduce the above copyright
|
|
- notice, this list of conditions and the following disclaimer in the
|
|
- documentation and/or other materials provided with the distribution.
|
|
-
|
|
- - Neither the name of the Hewlett-Packard Company nor the name of the
|
|
- Massachusetts Institute of Technology nor the names of their
|
|
- contributors may be used to endorse or promote products derived from
|
|
- this software without specific prior written permission.
|
|
-
|
|
- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
- ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
- HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
- INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
- BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
|
|
- OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
- ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
|
|
- TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
|
|
- USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
|
|
- DAMAGE.
|
|
--%>
|
|
|
|
<%--
|
|
- Progress bar for submission form. Note this must be included within
|
|
- the FORM element in the submission form, since it contains navigation
|
|
- buttons.
|
|
-
|
|
- Parameters:
|
|
- step (int): The current step. One of constants in
|
|
- org.dspace.app.webui.servlets.SubmitServlet.
|
|
- stage_reached: The most advanced step the user has reached (i.e. the
|
|
- most advanced step they can jump to)
|
|
- One of constants in org.dspace.servlets.SubmitServlet.
|
|
- It can also be "-1" - in this case, the progress bar
|
|
- is in "Workflow Item" mode - i.e. the "license" and
|
|
- "complete" stages aren't shown
|
|
- md_pages: The number of pages used for metadata input/edit.
|
|
- Configurable on a per-collection basis
|
|
--%>
|
|
|
|
<%@ page contentType="text/html;charset=UTF-8" %>
|
|
|
|
<%@ page import="org.dspace.app.webui.servlet.SubmitServlet" %>
|
|
<%@ page import="org.dspace.license.CreativeCommons" %>
|
|
<%@ page import="javax.servlet.jsp.jstl.fmt.LocaleSupport" %>
|
|
|
|
<%@ taglib uri="http://www.dspace.org/dspace-tags.tld" prefix="dspace" %>
|
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt" prefix="fmt" %>
|
|
|
|
<%
|
|
// Step names for ALT text in images
|
|
String[] stepNames =
|
|
{
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.select"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.describe"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.describe"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.upload"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.verify"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.license"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.license"),
|
|
LocaleSupport.getLocalizedMessage(pageContext, "jsp.submit.progressbar.complete")
|
|
};
|
|
|
|
int step = Integer.parseInt(request.getParameter("current_stage"));
|
|
int stageReached = Integer.parseInt(request.getParameter("stage_reached"));
|
|
int mdPages = Integer.parseInt(request.getParameter("md_pages"));
|
|
|
|
// Are we in workflow mode?
|
|
boolean workflowMode = false;
|
|
if (stageReached == -1)
|
|
{
|
|
workflowMode = true;
|
|
stageReached = SubmitServlet.REVIEW_SUBMISSION;
|
|
}
|
|
%>
|
|
|
|
<%!
|
|
int gap = SubmitServlet.EDIT_METADATA_2 - SubmitServlet.EDIT_METADATA_1;
|
|
|
|
String step2Name(int step, String[] names)
|
|
{
|
|
if (step < SubmitServlet.EDIT_METADATA_1)
|
|
{
|
|
return names[step];
|
|
}
|
|
if (step > SubmitServlet.EDIT_METADATA_2)
|
|
{
|
|
return names[step-gap];
|
|
}
|
|
// map all metadata steps to one
|
|
return names[SubmitServlet.EDIT_METADATA_1];
|
|
}
|
|
%>
|
|
<center>
|
|
<table class="submitProgressTable" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<%
|
|
int lastMDStep = SubmitServlet.EDIT_METADATA_1 + mdPages - 1;
|
|
int idx = SubmitServlet.INITIAL_QUESTIONS; // don't show prior selection step
|
|
// Show previous (done by definition!) steps
|
|
while( idx < step )
|
|
{
|
|
// Hack for skipping CC step if not enabled
|
|
if (!CreativeCommons.isEnabled() && idx==SubmitServlet.CC_LICENSE)
|
|
{
|
|
idx++;
|
|
continue;
|
|
}
|
|
|
|
// If the step has been done, and we're not on the final step,
|
|
// the user can jump back
|
|
if (step != SubmitServlet.SUBMISSION_COMPLETE)
|
|
{
|
|
%>
|
|
<%-- HACK: border="0" for non-CSS compliant Netscape 4.x --%>
|
|
<td><input class="submitProgressButtonDone" type="submit" name="submit_jump_<%= idx %>" value=" <%= step2Name(idx,stepNames) %>" /></td>
|
|
<%
|
|
}
|
|
else
|
|
{
|
|
// User has reached final step, cannot jump back
|
|
%>
|
|
<td><input class="submitProgressButtonDone" disabled="disabled" type="submit" name="submit_jump_<%= idx %>" value=" <%= step2Name(idx,stepNames) %>" /></td>
|
|
<%
|
|
}
|
|
// skip unused metadata edit steps
|
|
if (idx == lastMDStep)
|
|
{
|
|
idx = SubmitServlet.EDIT_METADATA_2 + 1;
|
|
}
|
|
else
|
|
{
|
|
idx++;
|
|
}
|
|
}
|
|
|
|
// Show current step, but only if it's not the select collection step,
|
|
// which isn't shown in the progress bar
|
|
if (step > 0)
|
|
{
|
|
%>
|
|
<td><input class="submitProgressButtonCurrent" disabled="disabled" type="submit" name="submit_jump_<%= idx %>" value=" <%= step2Name(idx,stepNames) %>" /></td>
|
|
<%
|
|
}
|
|
|
|
// We only go up to the "verify" step if we're on a workflow item
|
|
int lastStep = (workflowMode ? SubmitServlet.REVIEW_SUBMISSION+1
|
|
: SubmitServlet.SUBMISSION_COMPLETE+1);
|
|
|
|
// skip unused metadata edit steps
|
|
if ( step == lastMDStep )
|
|
{
|
|
step = SubmitServlet.EDIT_METADATA_2;
|
|
}
|
|
|
|
// Show next steps (some of which may have been done)
|
|
idx = step + 1;
|
|
while( idx < lastStep)
|
|
{
|
|
// Hack for skipping CC step if not enabled
|
|
if (!CreativeCommons.isEnabled() && idx==SubmitServlet.CC_LICENSE)
|
|
{
|
|
idx++;
|
|
continue;
|
|
}
|
|
if (idx <= stageReached)
|
|
{
|
|
// Stage has been previously accessed, so user may jump to it
|
|
%>
|
|
<%-- HACK: border="0" for non-CSS compliant Netscape 4.x --%>
|
|
<td><input class="submitProgressButtonDone" type="submit" name="submit_jump_<%= idx %>" value=" <%= step2Name(idx,stepNames) %>" /></td>
|
|
<%
|
|
}
|
|
else
|
|
{
|
|
// Stage hasn't been reached yet (can't be jumped to)
|
|
%>
|
|
<td><input class="submitProgressButtonNotDone" disabled="disabled" type="submit" name="submit_jump_<%= idx %>" value=" <%= step2Name(idx,stepNames) %>" /></td>
|
|
<%
|
|
}
|
|
// skip unused metadata edit steps
|
|
if (idx == lastMDStep)
|
|
{
|
|
idx = SubmitServlet.EDIT_METADATA_2 + 1;
|
|
}
|
|
else
|
|
{
|
|
idx++;
|
|
}
|
|
}
|
|
%>
|
|
</tr>
|
|
</table>
|
|
</center>
|