Index: lams_tool_assessment/conf/language/lams/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/conf/language/lams/ApplicationResources.properties,v diff -u -r1.2 -r1.3 --- lams_tool_assessment/conf/language/lams/ApplicationResources.properties 27 Mar 2009 16:33:24 -0000 1.2 +++ lams_tool_assessment/conf/language/lams/ApplicationResources.properties 1 Apr 2009 13:05:12 -0000 1.3 @@ -226,7 +226,7 @@ label.authoring.advanced.notify.on.attempt.completion =Notify teacher after student completes attempt event.learner.completes.attempt.subject =LAMS: Learner completed attempt in Assessment tool event.learner.completes.attempt.body =The learner {0} completed attempt in Assessment tool.\n\nThis message was send automatically, following tool''s advanced settings. -message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. +message.alertContentEdit =Note: One of more learners have accessed this activity and it cannot longer be changed. warning.msg.authoring.do.you.want.to.delete =Do you really want to delete this question? Index: lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties,v diff -u -r1.22 -r1.23 --- lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties 27 Mar 2009 16:33:24 -0000 1.22 +++ lams_tool_assessment/conf/language/lams/ApplicationResources_en_AU.properties 1 Apr 2009 13:05:12 -0000 1.23 @@ -226,7 +226,7 @@ label.authoring.advanced.notify.on.attempt.completion =Notify teacher after student completes attempt event.learner.completes.attempt.subject =LAMS: Learner completed attempt in Assessment tool event.learner.completes.attempt.body =The learner {0} completed attempt in Assessment tool.\n\nThis message was send automatically, following tool''s advanced settings. -message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. +message.alertContentEdit =Note: One of more learners have accessed this activity and it cannot longer be changed. warning.msg.authoring.do.you.want.to.delete =Do you really want to delete this question? Index: lams_tool_assessment/conf/language/rams/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/conf/language/rams/Attic/ApplicationResources.properties,v diff -u -r1.2 -r1.3 --- lams_tool_assessment/conf/language/rams/ApplicationResources.properties 27 Mar 2009 16:33:24 -0000 1.2 +++ lams_tool_assessment/conf/language/rams/ApplicationResources.properties 1 Apr 2009 13:05:12 -0000 1.3 @@ -226,7 +226,7 @@ label.authoring.advanced.notify.on.attempt.completion =Notify teacher after student completes attempt event.learner.completes.attempt.subject =LAMS: Learner completed attempt in Assessment tool event.learner.completes.attempt.body =The learner {0} completed attempt in Assessment tool.\n\nThis message was send automatically, following tool''s advanced settings. -message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. +message.alertContentEdit =Note: One of more learners have accessed this activity and it cannot longer be changed. warning.msg.authoring.do.you.want.to.delete =Do you really want to delete this question? Index: lams_tool_assessment/conf/language/rams/ApplicationResources_en_AU.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/conf/language/rams/Attic/ApplicationResources_en_AU.properties,v diff -u -r1.2 -r1.3 --- lams_tool_assessment/conf/language/rams/ApplicationResources_en_AU.properties 27 Mar 2009 16:33:24 -0000 1.2 +++ lams_tool_assessment/conf/language/rams/ApplicationResources_en_AU.properties 1 Apr 2009 13:05:12 -0000 1.3 @@ -226,7 +226,7 @@ label.authoring.advanced.notify.on.attempt.completion =Notify teacher after student completes attempt event.learner.completes.attempt.subject =LAMS: Learner completed attempt in Assessment tool event.learner.completes.attempt.body =The learner {0} completed attempt in Assessment tool.\n\nThis message was send automatically, following tool''s advanced settings. -message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information. +message.alertContentEdit =Note: One of more learners have accessed this activity and it cannot longer be changed. warning.msg.authoring.do.you.want.to.delete =Do you really want to delete this question? Index: lams_tool_assessment/src/java/org/lamsfoundation/lams/tool/assessment/web/action/AuthoringAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/src/java/org/lamsfoundation/lams/tool/assessment/web/action/AuthoringAction.java,v diff -u -r1.15 -r1.16 --- lams_tool_assessment/src/java/org/lamsfoundation/lams/tool/assessment/web/action/AuthoringAction.java 25 Mar 2009 22:46:28 -0000 1.15 +++ lams_tool_assessment/src/java/org/lamsfoundation/lams/tool/assessment/web/action/AuthoringAction.java 1 Apr 2009 13:05:12 -0000 1.16 @@ -416,8 +416,10 @@ } // ************************* Handle assessment overall feedbacks ******************* - TreeSet overallFeedbackList = getOverallFeedbacksFromForm(request, true); - assessmentPO.setOverallFeedbacks(overallFeedbackList); + if (mode.isAuthor()) { + TreeSet overallFeedbackList = getOverallFeedbacksFromForm(request, true); + assessmentPO.setOverallFeedbacks(overallFeedbackList); + } // ********************************************** // finally persist assessmentPO again Index: lams_tool_assessment/web/pages/authoring/definelater.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/web/pages/authoring/Attic/definelater.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_assessment/web/pages/authoring/definelater.jsp 29 Jan 2009 05:59:05 -0000 1.1 +++ lams_tool_assessment/web/pages/authoring/definelater.jsp 1 Apr 2009 13:05:12 -0000 1.2 @@ -8,17 +8,21 @@ <%Set tabs = new HashSet(); tabs.add("label.authoring.heading.basic"); pageContext.setAttribute("tabs", tabs); - %> <fmt:message key="label.author.title" /> <%@ include file="/common/tabbedheader.jsp"%> <%@ include file="/common/fckeditorheader.jsp"%> + + + + - - - +
Index: lams_tool_assessment/web/pages/monitoring/editactivity.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_assessment/web/pages/monitoring/editactivity.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_assessment/web/pages/monitoring/editactivity.jsp 29 Jan 2009 05:59:05 -0000 1.1 +++ lams_tool_assessment/web/pages/monitoring/editactivity.jsp 1 Apr 2009 13:05:12 -0000 1.2 @@ -29,15 +29,17 @@ - - - - - - - - - - - + + + + + + + + + + + + +