Improved documentation.

git-svn-id: http://scm.dspace.org/svn/repo/trunk@1031 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
David Stuve
2004-08-05 21:42:17 +00:00
parent 07fac9ff5a
commit d25fd7b64f
3 changed files with 36 additions and 8 deletions

View File

@@ -74,9 +74,18 @@
<h2>Browse <%=browsetext%></h2>
<p>Check the box next to items you wish to add or remove, and choose 'add' or 'remove'.</p>
<form method=POST action="<%= request.getContextPath() %>/tools/itemmap">
<input type="hidden" name="cid" value="<%=collection.getID()%>">
<input type="submit" name="submit" value="Cancel">
<table>
<tr>
<td><input type="submit" name="action" value="<%=browsetype%>"></td>
<td><input type="submit" name="submit" value="Cancel"></td>
</tr>
</table>
<table class="miscTable" align="center">
<tr>
@@ -126,7 +135,15 @@
</tr>
<% } %>
</table>
</table>
<table>
<tr>
<td><input type="submit" name="action" value="<%=browsetype%>"></td>
<td><input type="submit" name="submit" value="Cancel"></td>
</tr>
</table>
</form>
</dspace:layout>

View File

@@ -79,10 +79,10 @@
<h2>Item Mapper - Map Items from Other Collections</h2>
<p>This Collection: <%=collection.getMetadata("name")%></p>
<p>Collection: "<%=collection.getMetadata("name")%>"</p>
<p>There are <%=count_native%> items owned by this collection, and
<%=count_import%> items mapped from other collections.</p>
<%=count_import%> items mapped in from other collections.</p>
<%--
<h3>Quick Add Item:</h3>
@@ -144,12 +144,22 @@
<br>
</form>
<h3>Browse Item Imported From Collections:</h3>
<h3>Browse Items Imported From Collections:</h3>
<p>Click on collection names to browse for items to remove that were mapped in from that collection.</p>
<%
String row = "even";
Iterator colKeys = collections.keySet().iterator();
if(!colKeys.hasNext())
{
%>
<p>This collection has no items mapped into it.</p>
<%
}
while( colKeys.hasNext() )
{
Collection myCollection = (Collection)collections.get(colKeys.next());