diff --git a/dspace/jsp/help/collection-admin.html b/dspace/jsp/help/collection-admin.html index c215f560a2..35f672a13c 100644 --- a/dspace/jsp/help/collection-admin.html +++ b/dspace/jsp/help/collection-admin.html @@ -72,10 +72,11 @@

If you want to 'reinstate' an item that has been previously withdrawn, contact a DSpace site administrator.

-

Including Items from Other Collections (Item Mapping)

+

Including Items from Other Collections (Item Mapping)

-

TODO

+

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.

+

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.

diff --git a/dspace/jsp/tools/itemmap-browse.jsp b/dspace/jsp/tools/itemmap-browse.jsp index d70fb788ec..89152e4ac1 100644 --- a/dspace/jsp/tools/itemmap-browse.jsp +++ b/dspace/jsp/tools/itemmap-browse.jsp @@ -74,9 +74,18 @@

Browse <%=browsetext%>

+

Check the box next to items you wish to add or remove, and choose 'add' or 'remove'.

+
- + + + + + + +
+ @@ -126,7 +135,15 @@ <% } %> -
+ + + + + + + +
+
diff --git a/dspace/jsp/tools/itemmap-main.jsp b/dspace/jsp/tools/itemmap-main.jsp index 550992b96f..6fffc9653e 100644 --- a/dspace/jsp/tools/itemmap-main.jsp +++ b/dspace/jsp/tools/itemmap-main.jsp @@ -79,10 +79,10 @@

Item Mapper - Map Items from Other Collections

-

This Collection: <%=collection.getMetadata("name")%>

+

Collection: "<%=collection.getMetadata("name")%>"

There are <%=count_native%> items owned by this collection, and - <%=count_import%> items mapped from other collections.

+ <%=count_import%> items mapped in from other collections.

<%--

Quick Add Item:

@@ -144,12 +144,22 @@
-

Browse Item Imported From Collections:

- +

Browse Items Imported From Collections:

+ +

Click on collection names to browse for items to remove that were mapped in from that collection.

+ <% String row = "even"; Iterator colKeys = collections.keySet().iterator(); + if(!colKeys.hasNext()) + { +%> +

This collection has no items mapped into it.

+<% + } + + while( colKeys.hasNext() ) { Collection myCollection = (Collection)collections.get(colKeys.next());