Index: lams_common/web/WEB-INF/struts/struts-config.xml =================================================================== RCS file: /usr/local/cvsroot/lams_common/web/WEB-INF/struts/Attic/struts-config.xml,v diff -u -r1.6 -r1.7 --- lams_common/web/WEB-INF/struts/struts-config.xml 17 Jan 2005 05:15:01 -0000 1.6 +++ lams_common/web/WEB-INF/struts/struts-config.xml 20 Jan 2005 06:09:49 -0000 1.7 @@ -18,6 +18,9 @@ + + @@ -62,9 +65,15 @@ + + + + @@ -84,7 +93,21 @@ + + + + + + + "); out.println(""+user.getLogin()+": "+user.getFirstName()+" "+user.getLastName()); out.println(""); - - WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext()); - UserManagementService service = (UserManagementService)ctx.getBean("userManagementServiceTarget"); - out.print(""); Iterator iter = service.getRolesForUserByOrganisation(user,org.getOrganisationId()).iterator(); while ( iter.hasNext() ) @@ -136,12 +132,11 @@

- -
+ " onsubmit="return validateForm()" method="post" ENCTYPE='multipart/form-data' name="form1" id="form1"> -

+

-

If you are not sure of the file format, please download template file

+

If you are not sure of the file format, please download template file

Import Users From File:
@@ -153,17 +148,23 @@
- - + + existing users only


- -

';" @@ -186,9 +187,6 @@

- - - @@ -203,7 +201,14 @@ - <% displayUsers(users, organisation, out, request); %> + + + <% + WebApplicationContext ctx = WebApplicationContextUtils.getWebApplicationContext(request.getSession().getServletContext()); + UserManagementService service = (UserManagementService)ctx.getBean("userManagementServiceTarget"); + List users = service.getUsersFromOrganisation(organisation.getOrganisationId()); + displayUsers(users, organisation, out, request,service); + %>
Users