mirror of
https://github.com/DSpace/DSpace.git
synced 2025-10-17 23:13:10 +00:00
Improved documentation.
git-svn-id: http://scm.dspace.org/svn/repo/trunk@1031 9c30dcfa-912a-0410-8fc2-9e0234be79fd
This commit is contained in:
@@ -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());
|
||||
|
Reference in New Issue
Block a user