Index: lams_contentrepository/web/addNode.jsp =================================================================== diff -u -rc24073fcfc6a9842272b03d01ff417937aac02ae -rf8b1f7c4104c478d95786cba0b8ffb17dba79562 --- lams_contentrepository/web/addNode.jsp (.../addNode.jsp) (revision c24073fcfc6a9842272b03d01ff417937aac02ae) +++ lams_contentrepository/web/addNode.jsp (.../addNode.jsp) (revision f8b1f7c4104c478d95786cba0b8ffb17dba79562) @@ -24,20 +24,30 @@ if ( uuid != null && uuid.length() > 0 ) { %>

Adding a new version for Node <%=uuid%>. If the original node was a package, - then please upload another package. If the original node was a file, please - upload a file. + then you can only upload another package. If the original node was a file, you can + only upload a file.

<% } %>

Version Description (Required for both):

-

Single File:

-

File to upload?  - -

Package:

-

Directory name:  - Name of initial file in directory.  - + <% String type = request.getParameter("type"); + if ( type == null || type.equals("FILENODE") ) { + %> +

Single File:

+

File to upload?  + + <% + } + if ( type == null || type.equals("PACKAGENODE") ) { + %> +

Package:

+

Directory name:  + Name of initial file in directory.  + + <% + } + %>