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

@@ -72,10 +72,11 @@
<P>If you want to 'reinstate' an item that has been previously withdrawn, contact a DSpace site administrator.</P>
<H3><A NAME="itemmap"></A>Including Items from Other Collections (Item Mapping)</H3>
<h3><a NAME="itemmap"></a>Including Items from Other Collections (Item Mapping)</h3>
<P>TODO</P>
<p>Items can appear in more than one collection. The tool that 'maps' items to collections other than the one that owns it is the "Item Mapper". To access this tool, log in as administrator or collection administrator and view the collection home page. In the 'admin tools' box there is a button "Item Mapper" that will run the tool. With the item mapper you will be able to search for items using author's names, and choose to add them to the collection. The tool also allows you to browse items mapped to the collection and remove them.</p>
<p>Note that the item mapped to a collection does not receive new access rights - it retains the authorizations that it inherited from the collection that "owns" it. And collection admins who do not have read access to an item will not be able to map them to other collections.</p>
</BODY>
</HTML>

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());