Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrgManageController.java =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrgManageController.java (.../OrgManageController.java) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrgManageController.java (.../OrgManageController.java) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -144,7 +144,7 @@ request.setAttribute("parentGroupName", pOrg.getName()); request.setAttribute("parentGroupId", pOrg.getOrganisationId()); } else { - request.setAttribute("OrgManageForm", orgManageForm); + request.setAttribute("orgManageForm", orgManageForm); // display org info request.setAttribute("org", org); Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrgSaveController.java =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrgSaveController.java (.../OrgSaveController.java) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrgSaveController.java (.../OrgSaveController.java) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -49,10 +49,9 @@ import org.springframework.stereotype.Controller; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; -import org.springframework.validation.Errors; +import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.WebApplicationContextUtils; @@ -92,8 +91,8 @@ private WebApplicationContext applicationContext; @RequestMapping(path = "/orgsave") - public String execute(@ModelAttribute OrganisationForm organisationForm, HttpServletRequest request, - HttpServletResponse response) throws Exception { + public String execute(@ModelAttribute OrganisationForm organisationForm, BindingResult bindingResult, + HttpServletRequest request, HttpServletResponse response) throws Exception { if (service == null) { service = AdminServiceProxy.getService(applicationContext.getServletContext()); Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrganisationController.java =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrganisationController.java (.../OrganisationController.java) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/OrganisationController.java (.../OrganisationController.java) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -144,7 +144,6 @@ // creating new organisation organisationForm.setOrgId(null); - ; Integer parentId = WebUtil.readIntParam(request, "parentId", true); if (parentId != null) { Organisation parentOrg = (Organisation) OrganisationController.service.findById(Organisation.class, Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/ServerSaveController.java =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/ServerSaveController.java (.../ServerSaveController.java) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/ServerSaveController.java (.../ServerSaveController.java) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -39,7 +39,7 @@ import org.springframework.stereotype.Controller; import org.springframework.util.LinkedMultiValueMap; import org.springframework.util.MultiValueMap; -import org.springframework.validation.Errors; +import org.springframework.validation.BindingResult; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.context.WebApplicationContext; @@ -62,39 +62,41 @@ private WebApplicationContext applicationContext; @RequestMapping(path = "/serversave") - public String execute(@ModelAttribute ExtServerForm extServerForm, Errors errors, HttpServletRequest request, - HttpServletResponse response) throws Exception { + public String execute(@ModelAttribute ExtServerForm extServerForm, BindingResult bindingResult, + HttpServletRequest request, HttpServletResponse response) throws Exception { service = AdminServiceProxy.getIntegrationService(applicationContext.getServletContext()); userService = AdminServiceProxy.getService(applicationContext.getServletContext()); messageService = AdminServiceProxy.getMessageService(applicationContext.getServletContext()); + MultiValueMap errorMap = new LinkedMultiValueMap<>(); + String[] requiredFields = { "serverid", "serverkey", "servername", "prefix", "userinfoUrl" }; for (String requiredField : requiredFields) { - if (StringUtils.trimToNull(requiredField) == null) { - errors.reject("error.required", messageService.getMessage("sysadmin." + requiredField)); + if (StringUtils.trimToNull(extServerForm.getRequiredField()) == null) { + errorMap.add(requiredField, messageService.getMessage("error.required", messageService.getMessage("sysadmin." + requiredField))); } } Integer sid = extServerForm.getSid(); - if (!errors.hasErrors()) {//check duplication + if (errorMap.isEmpty()) {//check duplication String[] uniqueFields = { "serverid", "prefix" }; for (String uniqueField : uniqueFields) { - List list = userService.findByProperty(ExtServer.class, "uniqueField", uniqueField); + List list = userService.findByProperty(ExtServer.class, uniqueField, extServerForm.getUniqueField()); if (list != null && list.size() > 0) { if (sid.equals(-1)) {//new map - errors.reject("error.not.unique", messageService.getMessage("sysadmin." + uniqueField)); + errorMap.add(uniqueField, messageService.getMessage("error.not.unique", messageService.getMessage("sysadmin." + uniqueField))); } else { ExtServer map = (ExtServer) list.get(0); if (!map.getSid().equals(sid)) { - errors.reject("error.not.unique", messageService.getMessage("sysadmin." + uniqueField)); + errorMap.add(uniqueField, messageService.getMessage("error.not.unique", messageService.getMessage("sysadmin." + uniqueField))); } } } } } - if (!errors.hasErrors()) { + if (errorMap.isEmpty()) { ExtServer map = null; if (sid.equals(-1)) { map = new ExtServer(); @@ -108,6 +110,7 @@ service.saveExtServer(map); return "forward:/serverlist.do"; } else { + request.setAttribute("errorMap", errorMap); return "servermaintain"; } } Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/SignupManagementController.java =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/SignupManagementController.java (.../SignupManagementController.java) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/controller/SignupManagementController.java (.../SignupManagementController.java) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -18,10 +18,10 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Qualifier; import org.springframework.stereotype.Controller; -import org.springframework.validation.Errors; +import org.springframework.util.LinkedMultiValueMap; +import org.springframework.util.MultiValueMap; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.RequestMapping; -import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.context.WebApplicationContext; import org.springframework.web.context.support.WebApplicationContextUtils; @@ -49,7 +49,7 @@ private MessageService adminMessageService; @RequestMapping("/start") - public String execute(@ModelAttribute("signupForm") SignupManagementForm signupForm, Errors errors, HttpServletRequest request, + public String execute(@ModelAttribute("signupForm") SignupManagementForm signupForm, HttpServletRequest request, HttpServletResponse response) { try { @@ -71,7 +71,7 @@ } else if (StringUtils.equals(action, "edit")) { return edit(signupForm, request); } else if (StringUtils.equals(action, "add")) { - return add(signupForm, errors, request); + return add(signupForm, request); } else if (StringUtils.equals(action, "delete")) { return delete(request); } @@ -87,7 +87,8 @@ } @RequestMapping(path = "/edit") - public String edit(@ModelAttribute("signupForm") SignupManagementForm signupForm, HttpServletRequest request) throws Exception { + public String edit(@ModelAttribute("signupForm") SignupManagementForm signupForm, HttpServletRequest request) + throws Exception { Integer soid = WebUtil.readIntParam(request, "soid", false); @@ -118,21 +119,25 @@ } @RequestMapping(path = "/add") - public String add(@ModelAttribute("signupForm") SignupManagementForm signupForm, Errors errors, HttpServletRequest request) + public String add(@ModelAttribute("signupForm") SignupManagementForm signupForm, HttpServletRequest request) throws Exception { + MultiValueMap errorMap = new LinkedMultiValueMap<>(); + // check if form submitted if (signupForm.getOrganisationId() != null && signupForm.getOrganisationId() > 0) { // validate if (!StringUtils.equals(signupForm.getCourseKey(), signupForm.getConfirmCourseKey())) { - errors.reject("courseKey", adminMessageService.getMessage("error.course.keys.unequal")); + errorMap.add("courseKey", adminMessageService.getMessage("error.course.keys.unequal")); } if (signupService.contextExists(signupForm.getSignupOrganisationId(), signupForm.getContext())) { - errors.reject("context", adminMessageService.getMessage("error.context.exists")); + errorMap.add("context", adminMessageService.getMessage("error.context.exists")); } - if (!errors.hasErrors()) { + if (!errorMap.isEmpty()) { + request.setAttribute("errorMap", errorMap); + } else { // proceed SignupOrganisation signup; if (signupForm.getSignupOrganisationId() != null && signupForm.getSignupOrganisationId() > 0) { @@ -156,7 +161,7 @@ signup.setContext(signupForm.getContext()); userManagementService.save(signup); - return "forward:../signupManagement/start.do"; + return "forward:/signupManagement/start.do"; } } else { // form not submitted, default values @@ -178,6 +183,6 @@ userManagementService.deleteById(SignupOrganisation.class, soid); } - return "forward:../signupManagement/start.do"; + return "forward:/signupManagement/start.do"; } } Index: lams_admin/src/java/org/lamsfoundation/lams/admin/web/form/ExtServerForm.java =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/src/java/org/lamsfoundation/lams/admin/web/form/ExtServerForm.java (.../ExtServerForm.java) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/src/java/org/lamsfoundation/lams/admin/web/form/ExtServerForm.java (.../ExtServerForm.java) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -48,10 +48,10 @@ private Integer timeToLiveLoginRequest = 80; - private String[] requiredFields; - - private String[] uniqueFields; - + private String requiredField; + + private String uniqueField; + public Integer getSid() { return sid; } @@ -148,20 +148,20 @@ this.timeToLiveLoginRequest = timeToLiveLoginRequest; } - public String[] getRequiredFields() { - return requiredFields; + public String getRequiredField() { + return requiredField; } - public void setRequiredFields(String[] requiredFields) { - this.requiredFields = requiredFields; + public void setRequiredField(String requiredField) { + this.requiredField = requiredField; } - public String[] getUniqueFields() { - return uniqueFields; + public String getUniqueField() { + return uniqueField; } - public void setUniqueFields(String[] uniqueFields) { - this.uniqueFields = uniqueFields; + public void setUniqueField(String uniqueField) { + this.uniqueField = uniqueField; } } Index: lams_admin/web/cleanup.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/cleanup.jsp (.../cleanup.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/cleanup.jsp (.../cleanup.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -10,7 +10,7 @@ ${title} - + @@ -20,7 +20,7 @@ -

+

<%-- Error Messages --%> Index: lams_admin/web/cleanupPreviewLessons.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/cleanupPreviewLessons.jsp (.../cleanupPreviewLessons.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/cleanupPreviewLessons.jsp (.../cleanupPreviewLessons.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/config/editconfig.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/config/editconfig.jsp (.../editconfig.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/config/editconfig.jsp (.../editconfig.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -10,7 +10,7 @@ ${title} - + @@ -22,7 +22,7 @@ -

+

Index: lams_admin/web/disabledusers.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/disabledusers.jsp (.../disabledusers.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/disabledusers.jsp (.../disabledusers.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -18,7 +18,7 @@ ${title}: -

+

Index: lams_admin/web/import/importGroups.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/import/importGroups.jsp (.../importGroups.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/import/importGroups.jsp (.../importGroups.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -22,7 +22,7 @@ - + @@ -59,7 +59,7 @@ -

+

@@ -123,7 +123,7 @@
- + " />  
Index: lams_admin/web/import/importexcel.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/import/importexcel.jsp (.../importexcel.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/import/importexcel.jsp (.../importexcel.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -60,7 +60,7 @@

-

@@ -123,7 +123,7 @@
- + " />  
Index: lams_admin/web/import/importresult.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/import/importresult.jsp (.../importresult.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/import/importresult.jsp (.../importresult.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,15 +8,15 @@ ${title} - + -

+

Index: lams_admin/web/joblist.jsp =================================================================== diff -u -r1ba327f73cb27c822d8a4ef36c386dd5a1432aef -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/joblist.jsp (.../joblist.jsp) (revision 1ba327f73cb27c822d8a4ef36c386dd5a1432aef) +++ lams_admin/web/joblist.jsp (.../joblist.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/ldap.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/ldap.jsp (.../ldap.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/ldap.jsp (.../ldap.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -12,7 +12,7 @@ ${title} - + @@ -34,7 +34,7 @@ -

+

Index: lams_admin/web/logevent.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/logevent.jsp (.../logevent.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/logevent.jsp (.../logevent.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -236,7 +236,7 @@ -

+

  Index: lams_admin/web/loginmaintain.jsp =================================================================== diff -u -rc1cd3b5d3bc88f16ad489fbc19c7d21f5b748305 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/loginmaintain.jsp (.../loginmaintain.jsp) (revision c1cd3b5d3bc88f16ad489fbc19c7d21f5b748305) +++ lams_admin/web/loginmaintain.jsp (.../loginmaintain.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -17,7 +17,7 @@ -

+

Index: lams_admin/web/lti/ltiConsumer.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/lti/ltiConsumer.jsp (.../ltiConsumer.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/lti/ltiConsumer.jsp (.../ltiConsumer.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -48,11 +48,11 @@

- + - +

@@ -102,7 +102,7 @@
- + " />
Index: lams_admin/web/lti/ltiConsumerList.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/lti/ltiConsumerList.jsp (.../ltiConsumerList.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/lti/ltiConsumerList.jsp (.../ltiConsumerList.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -18,7 +18,7 @@

- +

Index: lams_admin/web/orgPasswordChange.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/orgPasswordChange.jsp (.../orgPasswordChange.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/orgPasswordChange.jsp (.../orgPasswordChange.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -15,7 +15,7 @@ ${title} - + Index: lams_admin/web/organisation/cloneResult.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/organisation/cloneResult.jsp (.../cloneResult.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/organisation/cloneResult.jsp (.../cloneResult.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -10,7 +10,7 @@ ${title} - + Index: lams_admin/web/organisation/cloneStart.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/organisation/cloneStart.jsp (.../cloneStart.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/organisation/cloneStart.jsp (.../cloneStart.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -9,7 +9,7 @@ ${title} - + @@ -38,7 +38,7 @@ $("#sourceGroupId").change(function() { loadSubgroups($("#sourceGroupId").val()); }); - $("#sourceGroupId").load("/admin/clone/getGroups.do", function() { + $("#sourceGroupId").load("admin/clone/getGroups.do", function() { loadSubgroups($("#sourceGroupId").val()); }); $("a.lessonNameLink").on("click", function() { @@ -47,7 +47,7 @@ }); function loadSubgroups(groupId) { - $("#sourceSubgroupId").load("/admin/clone/getSubgroups.do", { groupId: groupId }); + $("#sourceSubgroupId").load("admin/clone/getSubgroups.do", { groupId: groupId }); } function chosenGroup() { @@ -60,7 +60,7 @@ function loadGroupAttributes(sourceGroupId) { $("#cloneOptionsDiv").show(); - $("#availableLessons").load("/admin/clone/availableLessons.do", { sourceGroupId: sourceGroupId }); + $("#availableLessons").load("admin/clone/availableLessons.do", { sourceGroupId: sourceGroupId }); } function lessonDialog(lessonId) { @@ -90,7 +90,7 @@ function staffDialog() { if (!staffLoaded) { - $("#staffDialog").load("/admin/clone/selectStaff.do", { groupId: }); + $("#staffDialog").load("admin/clone/selectStaff.do", { groupId: }); initUserDialog("#staffDialog"); staffLoaded = true; } @@ -100,7 +100,7 @@ function learnerDialog() { if (!learnersLoaded) { - $("#learnerDialog").load("/admin/clone/selectLearners.do", { groupId: }); + $("#learnerDialog").load("admin/clone/selectLearners.do", { groupId: }); initUserDialog("#learnerDialog"); learnersLoaded = true; } Index: lams_admin/web/organisation/courseAdminEdit.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/organisation/courseAdminEdit.jsp (.../courseAdminEdit.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/organisation/courseAdminEdit.jsp (.../courseAdminEdit.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/organisation/createOrEdit.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/organisation/createOrEdit.jsp (.../createOrEdit.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/organisation/createOrEdit.jsp (.../createOrEdit.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -40,7 +40,7 @@ - + Index: lams_admin/web/organisation/deleteAllLessons.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/organisation/deleteAllLessons.jsp (.../deleteAllLessons.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/organisation/deleteAllLessons.jsp (.../deleteAllLessons.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/organisation/list.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/organisation/list.jsp (.../list.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/organisation/list.jsp (.../list.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -13,7 +13,7 @@ ${title} - + Fisheye: Tag 79b6147f263fbc3c92e2db7d98227fa8f7358851 refers to a dead (removed) revision in file `lams_admin/web/organisation/parts/breadcrumbs.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_admin/web/remove.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/remove.jsp (.../remove.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/remove.jsp (.../remove.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/serverlist.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/serverlist.jsp (.../serverlist.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/serverlist.jsp (.../serverlist.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,15 +8,15 @@ ${title} - + -

+

Index: lams_admin/web/servermaintain.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/servermaintain.jsp (.../servermaintain.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/servermaintain.jsp (.../servermaintain.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -10,7 +10,7 @@ ${title} - + @@ -61,31 +61,50 @@

- + + + + +
+
+
+
+ + + + + + +
+
+
+
+ +
- + - + - + - + - + @@ -97,7 +116,7 @@ style="display:none;"> @@ -107,15 +126,15 @@ - + - + - +
 *
 *
 *
 *
- +
 *
Index: lams_admin/web/sessionmaintain.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/sessionmaintain.jsp (.../sessionmaintain.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/sessionmaintain.jsp (.../sessionmaintain.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,15 +8,15 @@ ${title} - + -

+

@@ -29,7 +29,7 @@ Index: lams_admin/web/signupmanagement/add.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/signupmanagement/add.jsp (.../add.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/signupmanagement/add.jsp (.../add.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -19,12 +19,12 @@ ${title}:
- +
- +
- +
@@ -50,7 +50,14 @@ @@ -83,12 +90,19 @@ - +
- + + + + +
+
+
+
- + + + + +
+
+
+
:signup/signup/
Index: lams_admin/web/signupmanagement/list.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/signupmanagement/list.jsp (.../list.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/signupmanagement/list.jsp (.../list.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -9,7 +9,7 @@ ${title} - + Index: lams_admin/web/statistics.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/statistics.jsp (.../statistics.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/statistics.jsp (.../statistics.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -37,7 +37,7 @@ -

+

Index: lams_admin/web/sysadmin.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/sysadmin.jsp (.../sysadmin.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/sysadmin.jsp (.../sysadmin.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/themeManagement.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/themeManagement.jsp (.../themeManagement.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/themeManagement.jsp (.../themeManagement.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -78,7 +78,7 @@ -

+

Index: lams_admin/web/timezoneManagement.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/timezoneManagement.jsp (.../timezoneManagement.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/timezoneManagement.jsp (.../timezoneManagement.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -9,7 +9,7 @@ ${title} - + @@ -40,7 +40,7 @@ -

+

Index: lams_admin/web/timezoneServerManagement.jsp =================================================================== diff -u -rc1cd3b5d3bc88f16ad489fbc19c7d21f5b748305 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/timezoneServerManagement.jsp (.../timezoneServerManagement.jsp) (revision c1cd3b5d3bc88f16ad489fbc19c7d21f5b748305) +++ lams_admin/web/timezoneServerManagement.jsp (.../timezoneServerManagement.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/toolcontent/toolcontentlist.jsp =================================================================== diff -u -r9d51ed040508d8d5a10ee4033aded0c3784490a8 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/toolcontent/toolcontentlist.jsp (.../toolcontentlist.jsp) (revision 9d51ed040508d8d5a10ee4033aded0c3784490a8) +++ lams_admin/web/toolcontent/toolcontentlist.jsp (.../toolcontentlist.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -51,7 +51,7 @@ -

+

Index: lams_admin/web/user.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/user.jsp (.../user.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/user.jsp (.../user.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -15,7 +15,7 @@ ${title} - + Index: lams_admin/web/userlist.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/userlist.jsp (.../userlist.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/userlist.jsp (.../userlist.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/userorg.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/userorg.jsp (.../userorg.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/userorg.jsp (.../userorg.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + @@ -157,7 +157,7 @@ : " class="btn btn-default"> - : userorgmanage.do?org=" class="btn btn-default"> + : userorgmanage.do?org=" class="btn btn-default"> Index: lams_admin/web/userorgrole.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/userorgrole.jsp (.../userorgrole.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/userorgrole.jsp (.../userorgrole.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/userrole.jsp =================================================================== diff -u -r198db26e45c4083d69e39fcd40ffed3f7918fc58 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/userrole.jsp (.../userrole.jsp) (revision 198db26e45c4083d69e39fcd40ffed3f7918fc58) +++ lams_admin/web/userrole.jsp (.../userrole.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -8,7 +8,7 @@ ${title} - + Index: lams_admin/web/usersearchlist.jsp =================================================================== diff -u -r0aee88559b0d79e0516dd3630c24111361aeb787 -r79b6147f263fbc3c92e2db7d98227fa8f7358851 --- lams_admin/web/usersearchlist.jsp (.../usersearchlist.jsp) (revision 0aee88559b0d79e0516dd3630c24111361aeb787) +++ lams_admin/web/usersearchlist.jsp (.../usersearchlist.jsp) (revision 79b6147f263fbc3c92e2db7d98227fa8f7358851) @@ -11,7 +11,7 @@ ${title} - + @@ -148,7 +148,7 @@

-

+

" onclick="javascript:document.location='user/edit.do'" />