Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java,v diff -u -r1.56 -r1.57 --- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java 2 Jul 2006 13:31:20 -0000 1.56 +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaAppConstants.java 2 Jul 2006 18:59:10 -0000 1.57 @@ -203,6 +203,7 @@ public static final String FROM_TOOL_CONTENT_ID ="fromToolContentId"; public static final String TO_TOOL_CONTENT_ID ="toToolContentId"; public static final String LEARNER_REPORT ="learnerRep"; + public static final String INDIVIDUAL_LEARNER_REPORT ="individualLearnerRep"; public static final String REQUEST_LEARNING_REPORT ="requestLearningReport"; public static final String REQUEST_LEARNING_REPORT_PROGRESS ="requestLearningReportProgress"; public static final String REQUEST_PREVIEW ="requestPreview"; Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningAction.java,v diff -u -r1.10 -r1.11 --- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningAction.java 27 Jun 2006 13:34:47 -0000 1.10 +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningAction.java 2 Jul 2006 18:59:10 -0000 1.11 @@ -263,8 +263,8 @@ request.getSession().setAttribute(REQUEST_LEARNING_REPORT, new Boolean(true).toString()); request.getSession().setAttribute(REQUEST_LEARNING_REPORT_PROGRESS, new Boolean(false).toString()); - logger.debug("fwd'ing to: " + LEARNER_REPORT); - return (mapping.findForward(LEARNER_REPORT)); + logger.debug("fwd'ing to: " + INDIVIDUAL_LEARNER_REPORT); + return (mapping.findForward(INDIVIDUAL_LEARNER_REPORT)); } Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningStarterAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningStarterAction.java,v diff -u -r1.36 -r1.37 --- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningStarterAction.java 25 Jun 2006 23:23:36 -0000 1.36 +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaLearningStarterAction.java 2 Jul 2006 18:59:10 -0000 1.37 @@ -379,8 +379,8 @@ request.getSession().setAttribute(REQUEST_LEARNING_REPORT, new Boolean(true).toString()); request.getSession().setAttribute(REQUEST_LEARNING_REPORT_PROGRESS, new Boolean(true).toString()); - logger.debug("fwd'ing to for learner progress" + LEARNER_REPORT); - return (mapping.findForward(LEARNER_REPORT)); } + logger.debug("fwd'ing to for learner progress" + INDIVIDUAL_LEARNER_REPORT); + return (mapping.findForward(INDIVIDUAL_LEARNER_REPORT)); } /* by now, we know that the mode is learner*/ /* find out if the content is set to run offline or online. If it is set to run offline , the learners are informed about that. */ @@ -439,8 +439,8 @@ qaMonitoringAction.refreshSummaryData(request, qaContent, qaService, isUserNamesVisible, true, currentToolSessionId.toString(), null); request.getSession().setAttribute(REQUEST_LEARNING_REPORT, new Boolean(true).toString()); - logger.debug("fwd'ing to." + LEARNER_REPORT); - return (mapping.findForward(LEARNER_REPORT)); + logger.debug("fwd'ing to." + INDIVIDUAL_LEARNER_REPORT); + return (mapping.findForward(INDIVIDUAL_LEARNER_REPORT)); } } } Index: lams_tool_laqa/web/WEB-INF/struts-config.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/WEB-INF/struts-config.xml,v diff -u -r1.29 -r1.30 --- lams_tool_laqa/web/WEB-INF/struts-config.xml 25 Jun 2006 17:21:43 -0000 1.29 +++ lams_tool_laqa/web/WEB-INF/struts-config.xml 2 Jul 2006 18:59:11 -0000 1.30 @@ -199,6 +199,11 @@ redirect="false" /> + + + + + <%@ include file="/common/taglibs.jsp"%> - + + + + + + + + - <bean:message key="label.learning.qa"/> - <%@ include file="/common/header.jsp"%> - <%@ include file="/common/fckeditorheader.jsp"%> + + + <bean:message key="activity.title" /> - - + +
+

+ +

+ +
+ +
- - - @@ -96,9 +106,21 @@
- -
- +
+ + + +
+ + + + + + + + \ No newline at end of file Index: lams_tool_laqa/web/learning/IndividualLearnerResults.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/learning/IndividualLearnerResults.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_laqa/web/learning/IndividualLearnerResults.jsp 29 Jun 2006 17:46:45 -0000 1.3 +++ lams_tool_laqa/web/learning/IndividualLearnerResults.jsp 2 Jul 2006 18:59:10 -0000 1.4 @@ -18,18 +18,26 @@ http://www.gnu.org/licenses/gpl.txt --%> + + <%@ include file="/common/taglibs.jsp"%> - + + + + + + + + - <bean:message key="label.learning.qa"/> + + + <bean:message key="activity.title" /> - <%@ include file="/common/header.jsp"%> - <%@ include file="/common/fckeditorheader.jsp"%> - + +
+ +

+ +

+ +
+ +
@@ -53,12 +71,6 @@ - - -
- - - @@ -90,27 +102,38 @@
- - -   - - - - + - +
- +
+ + + +
- - \ No newline at end of file + + + + + + + + + + + + + + + \ No newline at end of file Index: lams_tool_laqa/web/learning/LearnerRep.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/learning/LearnerRep.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/learning/LearnerRep.jsp 2 Jul 2006 18:59:10 -0000 1.1 @@ -0,0 +1,163 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + + +<%@ include file="/common/taglibs.jsp"%> + + + + + + + + + + + + + <bean:message key="activity.title" /> + + + + + +
+ +

+ +

+ +
+ + +
+ + + + + +
+ +
+
+ + + + + +
+ +
+
+ + + + + + + + + + + + + + +
+
+   + + + + +
+
+
+ + + + + +
+
+ + + +
+
+
+ +
+
+ + + + + +
+ +
+ + + + + + + + + + + +
+ +
+ + + + +
+ +
+ + + + + + + + + + + \ No newline at end of file Index: lams_tool_laqa/web/learning/SequentialAnswersContent.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/learning/SequentialAnswersContent.jsp,v diff -u -r1.10 -r1.11 --- lams_tool_laqa/web/learning/SequentialAnswersContent.jsp 29 Jun 2006 17:46:45 -0000 1.10 +++ lams_tool_laqa/web/learning/SequentialAnswersContent.jsp 2 Jul 2006 18:59:10 -0000 1.11 @@ -65,7 +65,6 @@ -    @@ -74,7 +73,7 @@ - + @@ -83,19 +82,18 @@ - + -    - +