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

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