mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-07 10:04:21 +00:00
Merge branch 'bootstrap' of https://github.com/CILEA/DSpace into bootstrap
This commit is contained in:
@@ -327,7 +327,7 @@ jsp.dspace-admin.metadataimport.reinstated = Item Reinstate
|
||||
jsp.dspace-admin.metadataimport.toomany = There are too many changes. Please import fewer changes, adjust the limit, or perform the input directly on the server.
|
||||
jsp.dspace-admin.metadataimport.finished = {0} changes completed successfully.
|
||||
jsp.dspace-admin.index.heading = Administration Tools
|
||||
jsp.dspace-admin.index.text = Please select an operation from the navigation bar on the left.
|
||||
jsp.dspace-admin.index.text = Please select an operation from the main menu.
|
||||
jsp.dspace-admin.item-select.enter = Enter the Handle or internal item ID of the item you wish to select.
|
||||
jsp.dspace-admin.item-select.find = Find
|
||||
jsp.dspace-admin.item-select.handle = Handle:
|
||||
|
@@ -42,7 +42,7 @@
|
||||
String taskOptions = (String)request.getAttribute("curate_task_options");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.curate.collection.title"
|
||||
<dspace:layout style="submission" titlekey="jsp.dspace-admin.curate.collection.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parenttitlekey="jsp.administer"
|
||||
@@ -55,54 +55,42 @@
|
||||
</fmt:message>
|
||||
</h1>
|
||||
|
||||
<table width="60%">
|
||||
|
||||
<form action="<%=request.getContextPath()%>/dspace-admin/curate" method="post">
|
||||
|
||||
<%
|
||||
if (groupOptions != null && !"".equals(groupOptions))
|
||||
{
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.select-group.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.select-group.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<%= groupOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</div>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.select-task.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="curate_task" id="curate_task">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.select-task.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="curate_task" id="curate_task">
|
||||
<%= taskOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
</div>
|
||||
<div class="input-group">
|
||||
<input type="hidden" name="collection_id" value="<%= collectionID %>"/>
|
||||
<input type="submit" name="submit_collection_curate" value="<fmt:message key="jsp.dspace-admin.curate.perform.button"/>" />
|
||||
<input type="submit" name="submit_collection_queue" value="<fmt:message key="jsp.dspace-admin.curate.queue.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_collection_curate" value="<fmt:message key="jsp.dspace-admin.curate.perform.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_collection_queue" value="<fmt:message key="jsp.dspace-admin.curate.queue.button"/>" />
|
||||
</div>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
<div class="input-group">
|
||||
<form method="post" action="<%=request.getContextPath()%>/tools/edit-communities">
|
||||
<input type="hidden" name="collection_id" value="<%= collectionID %>"/>
|
||||
<input type="hidden" name="community_id" value="<%= communityID %>" />
|
||||
<input type="hidden" name="action" value="<%=EditCommunitiesServlet.START_EDIT_COLLECTION %>" />
|
||||
<input type="submit" value="<fmt:message key="jsp.dspace-admin.curate.return.collection.button"/>" />
|
||||
<input class="btn btn-default" type="submit" value="<fmt:message key="jsp.dspace-admin.curate.return.collection.button"/>" />
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</dspace:layout>
|
||||
|
@@ -41,7 +41,7 @@
|
||||
String taskOptions = (String)request.getAttribute("curate_task_options");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.curate.community.title"
|
||||
<dspace:layout style="submission" titlekey="jsp.dspace-admin.curate.community.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parenttitlekey="jsp.administer"
|
||||
@@ -54,53 +54,40 @@
|
||||
</fmt:message>
|
||||
</h1>
|
||||
|
||||
<table width="60%">
|
||||
<form action="<%=request.getContextPath()%>/dspace-admin/curate" method="post">
|
||||
|
||||
<%
|
||||
if (groupOptions != null && !"".equals(groupOptions))
|
||||
{
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.select-group.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.select-group.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<%= groupOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</div>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.select-task.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="curate_task" id="curate_task">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.select-task.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="curate_task" id="curate_task">
|
||||
<%= taskOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
</div>
|
||||
|
||||
<div class="input-group">
|
||||
<input type="hidden" name="community_id" value="<%= communityID %>"/>
|
||||
<input type="submit" name="submit_community_curate" value="<fmt:message key="jsp.dspace-admin.curate.perform.button"/>" />
|
||||
<input type="submit" name="submit_community_queue" value="<fmt:message key="jsp.dspace-admin.curate.queue.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_community_curate" value="<fmt:message key="jsp.dspace-admin.curate.perform.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_community_queue" value="<fmt:message key="jsp.dspace-admin.curate.queue.button"/>" />
|
||||
</div>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
|
||||
<form method="post" action="<%=request.getContextPath()%>/tools/edit-communities">
|
||||
<input type="hidden" name="community_id" value="<%= communityID %>"/>
|
||||
<input type="hidden" name="action" value="<%=EditCommunitiesServlet.START_EDIT_COMMUNITY%>""/>
|
||||
<input type="submit" value="<fmt:message key="jsp.dspace-admin.curate.return.community.button"/>" />
|
||||
<input class="btn btn-default" type="submit" value="<fmt:message key="jsp.dspace-admin.curate.return.community.button"/>" />
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</dspace:layout>
|
||||
|
@@ -50,7 +50,7 @@
|
||||
String taskOptions = (String)request.getAttribute("curate_task_options");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.curate.item.title"
|
||||
<dspace:layout style="submission" titlekey="jsp.dspace-admin.curate.item.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parenttitlekey="jsp.administer"
|
||||
@@ -63,52 +63,42 @@
|
||||
</fmt:message>
|
||||
</h1>
|
||||
|
||||
<table width="60%">
|
||||
<form action="<%=request.getContextPath()%>/dspace-admin/curate" method="post">
|
||||
<%
|
||||
if (groupOptions != null && !"".equals(groupOptions))
|
||||
{
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.select-group.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.select-group.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<%= groupOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.select-task.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="curate_task" id="curate_task">
|
||||
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.select-task.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="curate_task" id="curate_task">
|
||||
<%= taskOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
</div>
|
||||
|
||||
<div class="input-group">
|
||||
<input type="hidden" name="item_id" value="<%= itemID %>"/>
|
||||
<input type="submit" name="submit_item_curate" value="<fmt:message key="jsp.dspace-admin.curate.perform.button"/>" />
|
||||
<input type="submit" name="submit_item_queue" value="<fmt:message key="jsp.dspace-admin.curate.queue.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_item_curate" value="<fmt:message key="jsp.dspace-admin.curate.perform.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_item_queue" value="<fmt:message key="jsp.dspace-admin.curate.queue.button"/>" />
|
||||
</div>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
|
||||
<div class="input-group">
|
||||
<form method="get" action="<%=request.getContextPath()%>/tools/edit-item">
|
||||
<input type="hidden" name="item_id" value="<%= itemID %>"/>
|
||||
<input type="submit" value="<fmt:message key="jsp.dspace-admin.curate.return.item.button"/>" />
|
||||
<input class="btn btn-default" type="submit" value="<fmt:message key="jsp.dspace-admin.curate.return.item.button"/>"/>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
</dspace:layout>
|
||||
|
@@ -42,7 +42,9 @@
|
||||
String taskOptions = (String)request.getAttribute("curate_task_options");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.curate.main.title"
|
||||
<dspace:layout
|
||||
style="submission"
|
||||
titlekey="jsp.dspace-admin.curate.main.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parenttitlekey="jsp.administer"
|
||||
@@ -54,57 +56,41 @@
|
||||
|
||||
<h1><fmt:message key="jsp.dspace-admin.curate.main.heading"/></h1>
|
||||
|
||||
<table width="60%">
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.dspace-admin.curate.main.info1"/>:<br/>
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<input type="text" name="handle" value="<%= handle %>" size="20"/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate help" colspan="2">
|
||||
<fmt:message key="jsp.dspace-admin.curate.main.info2"/>
|
||||
</td>
|
||||
</tr>
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.curate.main.info1"/>:</label>
|
||||
<input class="form-control" type="text" name="handle" value="<%= handle %>" size="20"/>
|
||||
<span class="col-md-10"><fmt:message key="jsp.dspace-admin.curate.main.info2"/></span>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
<%
|
||||
if (groupOptions != null && !"".equals(groupOptions))
|
||||
{
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.tools.curate.select-group.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.tools.curate.select-group.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="select_curate_group" id="select_curate_group" onchange="this.form.submit();">
|
||||
<%= groupOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
</div>
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<tr>
|
||||
<td class="curate heading">
|
||||
<fmt:message key="jsp.tools.curate.select-task.tag"/>:
|
||||
</td>
|
||||
<td class="curate field">
|
||||
<select name="curate_task" id="curate_task">
|
||||
<div class="input-group">
|
||||
<label class="input-group-addon"><fmt:message key="jsp.tools.curate.select-task.tag"/>:</label>
|
||||
|
||||
<select class="form-control" name="curate_task" id="curate_task">
|
||||
<%= taskOptions %>
|
||||
</select>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="curate button" colspan="2">
|
||||
<input type="hidden" name="handle" value="<%= handle %>"/>
|
||||
<input type="submit" name="submit_main_curate" value="<fmt:message key="jsp.tools.curate.perform.button"/>" />
|
||||
<input type="submit" name="submit_main_queue" value="<fmt:message key="jsp.tools.curate.queue.button"/>" />
|
||||
<input type="submit" name="submit_main_cancel" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
<div class="input-group">
|
||||
<input type="hidden" name="handle" value="<%= handle %>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_main_curate" value="<fmt:message key="jsp.tools.curate.perform.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_main_queue" value="<fmt:message key="jsp.tools.curate.queue.button"/>" />
|
||||
<input class="btn btn-default" type="submit" name="submit_main_cancel" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>" />
|
||||
</div>
|
||||
</form>
|
||||
</dspace:layout>
|
||||
|
@@ -41,12 +41,12 @@
|
||||
{
|
||||
context = UIUtil.obtainContext(request);
|
||||
%>
|
||||
<dspace:layout locbar="link" navbar="admin" titlekey="jsp.administer">
|
||||
<dspace:layout style="submission" locbar="link" navbar="admin" titlekey="jsp.administer">
|
||||
|
||||
<%-- <h1>Administration Tools</h1> --%>
|
||||
<h1><fmt:message key="jsp.dspace-admin.index.heading"/></h1>
|
||||
|
||||
<%-- <p>Please select an operation from the navigation bar on the left.</p> --%>
|
||||
<%-- <p>Please select an operation from the main menu bar.</p> --%>
|
||||
<p><fmt:message key="jsp.dspace-admin.index.text"/></p>
|
||||
</dspace:layout>
|
||||
<%
|
||||
|
@@ -37,7 +37,8 @@
|
||||
request.setAttribute("LanguageSwitch", "hide");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.supervise-confirm-remove.title"
|
||||
<dspace:layout style="submission"
|
||||
titlekey="jsp.dspace-admin.supervise-confirm-remove.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parentlink="/dspace-admin"
|
||||
@@ -47,18 +48,14 @@
|
||||
|
||||
<h3><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.subheading"/></h3>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<div align="center"/>
|
||||
|
||||
<%
|
||||
DCValue[] titleArray = wsItem.getItem().getDC("title", null, Item.ANY);
|
||||
// String title = (titleArray.length > 0 ? titleArray[0].value : "Untitled");
|
||||
EPerson submitter = wsItem.getItem().getSubmitter();
|
||||
%>
|
||||
|
||||
<strong><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.titleheader"/></strong>:
|
||||
<br/>
|
||||
<div class="row">
|
||||
<label class="col-md-2"><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.titleheader"/>:</label>
|
||||
<span class="col-md-3">
|
||||
<%
|
||||
if (titleArray.length > 0)
|
||||
{
|
||||
@@ -73,24 +70,32 @@
|
||||
<%
|
||||
}
|
||||
%>
|
||||
<br/><br/>
|
||||
<strong><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.authorheader"/></strong>:
|
||||
<br/>
|
||||
</span>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label class="col-md-2"><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.authorheader"/>:</label>
|
||||
<span class="col-md-3">
|
||||
<a href="mailto:<%= submitter.getEmail() %>"><%= Utils.addEntities(submitter.getFullName()) %></a>
|
||||
<br/><br/>
|
||||
<strong><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.supervisorgroupheader"/></strong>:
|
||||
<br/>
|
||||
</span>
|
||||
</div>
|
||||
<div class="row">
|
||||
<label class="col-md-2"><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.supervisorgroupheader"/>:</label>
|
||||
<span class="col-md-3">
|
||||
<%= group.getName() %>
|
||||
<br/><br/>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
<fmt:message key="jsp.dspace-admin.supervise-confirm-remove.confirm"/>
|
||||
<div class="row">
|
||||
<label class="col-md-5"><fmt:message key="jsp.dspace-admin.supervise-confirm-remove.confirm"/></label>
|
||||
</div>
|
||||
|
||||
<%-- form to request removal of supervisory linking --%>
|
||||
<form method="post" action="">
|
||||
<input type="hidden" name="gID" value="<%= group.getID() %>"/>
|
||||
<input type="hidden" name="siID" value="<%= wsItem.getID() %>"/>
|
||||
<input type="submit" name="submit_doremove" value="<fmt:message key="jsp.dspace-admin.general.remove"/>"/>
|
||||
<input type="submit" name="submit_base" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_doremove" value="<fmt:message key="jsp.dspace-admin.general.remove"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_base" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>"/>
|
||||
</form>
|
||||
|
||||
|
||||
</dspace:layout>
|
||||
|
@@ -20,7 +20,9 @@
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"
|
||||
prefix="fmt" %>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.supervise-duplicate.title"
|
||||
<dspace:layout
|
||||
style="submission"
|
||||
titlekey="jsp.dspace-admin.supervise-duplicate.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parentlink="/dspace-admin"
|
||||
|
@@ -29,6 +29,7 @@
|
||||
<%@ page import="org.dspace.eperson.Group" %>
|
||||
<%@ page import="org.dspace.eperson.Supervisor" %>
|
||||
<%@ page import="org.dspace.core.Utils" %>
|
||||
<%@page import="javax.servlet.jsp.jstl.fmt.LocaleSupport"%>
|
||||
|
||||
<%
|
||||
// get objects from request
|
||||
@@ -37,24 +38,26 @@
|
||||
request.setAttribute("LanguageSwitch", "hide");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.supervise-link.title"
|
||||
<dspace:layout style="submission"
|
||||
titlekey="jsp.dspace-admin.supervise-link.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parentlink="/dspace-admin"
|
||||
parenttitlekey="jsp.administer">
|
||||
|
||||
<h1><fmt:message key="jsp.dspace-admin.supervise-link.heading"/></h1>
|
||||
<h1><fmt:message key="jsp.dspace-admin.supervise-link.heading"/>
|
||||
<dspace:popup page="<%= LocaleSupport.getLocalizedMessage(pageContext, \"help.site-admin\") + \"#supervision\"%>"><fmt:message key="jsp.morehelp"/></dspace:popup>
|
||||
</h1>
|
||||
|
||||
<h3><fmt:message key="jsp.dspace-admin.supervise-link.choose"/></h3>
|
||||
|
||||
<form method="post" action="">
|
||||
|
||||
<table>
|
||||
<div class="input-group">
|
||||
<%-- Select the group to supervise --%>
|
||||
<tr>
|
||||
<td>
|
||||
<b><fmt:message key="jsp.dspace-admin.supervise-link.group"/></b>
|
||||
<select name="TargetGroup">
|
||||
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.supervise-link.group"/></label>
|
||||
<select class="form-control" name="TargetGroup">
|
||||
<%
|
||||
for (int i = 0; i < groups.length; i++)
|
||||
{
|
||||
@@ -64,30 +67,24 @@
|
||||
}
|
||||
%>
|
||||
</select>
|
||||
<br/><br/>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
|
||||
<%-- Select the defaul policy type --%>
|
||||
<tr>
|
||||
<td>
|
||||
<b><fmt:message key="jsp.dspace-admin.supervise-link.policy"/></b>
|
||||
<select name="PolicyType">
|
||||
|
||||
<label class="input-group-addon"><fmt:message key="jsp.dspace-admin.supervise-link.policy"/></label>
|
||||
<select class="form-control" name="PolicyType">
|
||||
<option value="<%= Supervisor.POLICY_NONE %>" selected="selected"><fmt:message key="jsp.dspace-admin.supervise-link.policynone"/></option>
|
||||
<option value="<%= Supervisor.POLICY_EDITOR %>"><fmt:message key="jsp.dspace-admin.supervise-link.policyeditor"/></option>
|
||||
<option value="<%= Supervisor.POLICY_OBSERVER %>"><fmt:message key="jsp.dspace-admin.supervise-link.policyobserver"/></option>
|
||||
</select>
|
||||
<br/><br/>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</div>
|
||||
<%-- Select the workspace item to be supervised --%>
|
||||
<tr>
|
||||
<td>
|
||||
<b><fmt:message key="jsp.dspace-admin.supervise-link.workspace"/></b>
|
||||
<br/><br/>
|
||||
|
||||
<div align="left">
|
||||
<table class="miscTable">
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th class="odRowOddCol"><fmt:message key="jsp.dspace-admin.supervise-link.id"/></th>
|
||||
<th class="oddRowEvenCol"><fmt:message key="jsp.dspace-admin.supervise-link.submittedby"/></th>
|
||||
@@ -141,16 +138,10 @@
|
||||
%>
|
||||
</table>
|
||||
</div>
|
||||
<br/><br/>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<input type="submit" name="submit_link" value="<fmt:message key="jsp.dspace-admin.supervise-link.submit.button"/>"/>
|
||||
<input type="submit" name="submit_base" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>"/>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<input class="btn btn-default" type="submit" name="submit_link" value="<fmt:message key="jsp.dspace-admin.supervise-link.submit.button"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_base" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>"/>
|
||||
|
||||
|
||||
</form>
|
||||
|
||||
|
@@ -20,6 +20,7 @@
|
||||
<%@ taglib uri="http://java.sun.com/jsp/jstl/fmt"
|
||||
prefix="fmt" %>
|
||||
|
||||
<%@page import="javax.servlet.jsp.jstl.fmt.LocaleSupport"%>
|
||||
<%@ page import="org.dspace.content.DCValue" %>
|
||||
<%@ page import="org.dspace.content.Item" %>
|
||||
<%@ page import="org.dspace.content.SupervisedItem" %>
|
||||
@@ -33,26 +34,29 @@
|
||||
request.setAttribute("LanguageSwitch", "hide");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.supervise-list.title"
|
||||
<dspace:layout
|
||||
style="submission"
|
||||
titlekey="jsp.dspace-admin.supervise-list.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parentlink="/dspace-admin"
|
||||
parenttitlekey="jsp.administer">
|
||||
|
||||
<h1><fmt:message key="jsp.dspace-admin.supervise-list.heading"/></h1>
|
||||
<h1><fmt:message key="jsp.dspace-admin.supervise-list.heading"/>
|
||||
<dspace:popup page="<%= LocaleSupport.getLocalizedMessage(pageContext, \"help.site-admin\") + \"#supervision\"%>"><fmt:message key="jsp.morehelp"/></dspace:popup>
|
||||
</h1>
|
||||
|
||||
<h3><fmt:message key="jsp.dspace-admin.supervise-list.subheading"/></h3>
|
||||
|
||||
<br/><br/>
|
||||
|
||||
<div align="center" />
|
||||
<%-- form to navigate to the "add supervisory settings" page --%>
|
||||
<form method="post" action="">
|
||||
<input type="submit" name="submit_add" value="<fmt:message key="jsp.dspace-admin.supervise-list.add.button"/>"/>
|
||||
<input type="submit" name="submit_base" value="<fmt:message key="jsp.dspace-admin.supervise-list.back.button"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_add" value="<fmt:message key="jsp.dspace-admin.supervise-list.add.button"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_base" value="<fmt:message key="jsp.dspace-admin.supervise-list.back.button"/>"/>
|
||||
</form>
|
||||
|
||||
<table class="miscTable">
|
||||
<table class="table">
|
||||
<tr>
|
||||
<th class="oddRowOddCol">
|
||||
|
||||
@@ -91,7 +95,7 @@
|
||||
<%-- form to navigate to the item policies --%>
|
||||
<form action="<%= request.getContextPath() %>/tools/authorize" method="post">
|
||||
<input type="hidden" name="item_id" value="<%=supervisedItems[i].getItem().getID() %>"/>
|
||||
<input type="submit" name="submit_item_select" value="<fmt:message key="jsp.dspace-admin.supervise-list.policies.button"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_item_select" value="<fmt:message key="jsp.dspace-admin.supervise-list.policies.button"/>"/>
|
||||
</form>
|
||||
</td>
|
||||
<td class="<%= row %>RowEvenCol">
|
||||
@@ -121,7 +125,7 @@
|
||||
<form method="post" action="">
|
||||
<input type="hidden" name="gID" value="<%= supervisors[j].getID() %>"/>
|
||||
<input type="hidden" name="siID" value="<%= supervisedItems[i].getID() %>"/>
|
||||
<input type="submit" name="submit_remove" value="<fmt:message key="jsp.dspace-admin.general.remove"/>"/>
|
||||
<input class="btn btn-default" type="submit" name="submit_remove" value="<fmt:message key="jsp.dspace-admin.general.remove"/>"/>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
|
@@ -30,7 +30,8 @@
|
||||
request.setAttribute("LanguageSwitch", "hide");
|
||||
%>
|
||||
|
||||
<dspace:layout titlekey="jsp.dspace-admin.workflow-abort-confirm.title"
|
||||
<dspace:layout style="submission"
|
||||
titlekey="jsp.dspace-admin.workflow-abort-confirm.title"
|
||||
navbar="admin"
|
||||
locbar="link"
|
||||
parenttitlekey="jsp.administer"
|
||||
@@ -43,36 +44,33 @@
|
||||
</fmt:message></h1>
|
||||
<%-- <p>Are you sure you want to abort this workflow? It will return to the user's personal workspace</p> --%>
|
||||
<p><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.warning"/></p>
|
||||
<ul>
|
||||
<div class="row">
|
||||
<%-- <li>Collection: <%= workflow.getCollection().getMetadata("name") %></li> --%>
|
||||
<li><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.collection">
|
||||
<span class="col-md-4"><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.collection">
|
||||
<fmt:param><%= workflow.getCollection().getMetadata("name") %></fmt:param>
|
||||
</fmt:message></li>
|
||||
</fmt:message></span>
|
||||
</div>
|
||||
<div class="row">
|
||||
<%-- <li>Submitter: <%= WorkflowManager.getSubmitterName(workflow) %></li> --%>
|
||||
<li><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.submitter">
|
||||
<span class="col-md-4"><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.submitter">
|
||||
<fmt:param><%= WorkflowManager.getSubmitterName(workflow) %></fmt:param>
|
||||
</fmt:message></li>
|
||||
</fmt:message></span>
|
||||
</div>
|
||||
<div class="row">
|
||||
<%-- <li>Title: <%= WorkflowManager.getItemTitle(workflow) %></li> --%>
|
||||
<li><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.item-title">
|
||||
<span class="col-md-4"><fmt:message key="jsp.dspace-admin.workflow-abort-confirm.item-title">
|
||||
<fmt:param><%= WorkflowManager.getItemTitle(workflow) %></fmt:param>
|
||||
</fmt:message></li>
|
||||
</ul>
|
||||
</fmt:message></span>
|
||||
</div>
|
||||
<form method="post" action="">
|
||||
<input type="hidden" name="workflow_id" value="<%= workflow.getID() %>"/>
|
||||
<center>
|
||||
<table width="70%">
|
||||
<tr>
|
||||
<td align="left">
|
||||
|
||||
<%-- <input type="submit" name="submit_abort_confirm" value="Abort"/> --%>
|
||||
<input type="submit" name="submit_abort_confirm" value="<fmt:message key="jsp.dspace-admin.workflow-abort-confirm.button"/>" />
|
||||
</td>
|
||||
<td align="right">
|
||||
<input class="btn btn-default" type="submit" name="submit_abort_confirm" value="<fmt:message key="jsp.dspace-admin.workflow-abort-confirm.button"/>" />
|
||||
|
||||
<%-- <input type="submit" name="submit_cancel" value="Cancel"/> --%>
|
||||
<input type="submit" name="submit_cancel" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>" />
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
<input class="btn btn-default" type="submit" name="submit_cancel" value="<fmt:message key="jsp.dspace-admin.general.cancel"/>" />
|
||||
|
||||
</form>
|
||||
</dspace:layout>
|
||||
|
||||
|
Reference in New Issue
Block a user