Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaMonitoringAction.java =================================================================== diff -u -r7d13e6e6b653149634a2867a4aa964bb929c773f -r6cdc71ebb9a54565ad1c47f9750963b3aeda942d --- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaMonitoringAction.java (.../QaMonitoringAction.java) (revision 7d13e6e6b653149634a2867a4aa964bb929c773f) +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/web/QaMonitoringAction.java (.../QaMonitoringAction.java) (revision 6cdc71ebb9a54565ad1c47f9750963b3aeda942d) @@ -612,14 +612,14 @@ QaContent qaContent=qaService.loadQa(new Long(strToolContentID).longValue()); logger.debug("existing qaContent:" + qaContent); - /* this section is related to summary tab. Starts here. */ + + /* this section is related to summary tab. Starts here. */ Map summaryToolSessions=MonitoringUtil.populateToolSessions(request, qaContent, qaService); logger.debug("summaryToolSessions: " + summaryToolSessions); request.setAttribute(SUMMARY_TOOL_SESSIONS, summaryToolSessions); logger.debug("SUMMARY_TOOL_SESSIONS: " + request.getAttribute(SUMMARY_TOOL_SESSIONS)); - /* ends here. */ - + Map summaryToolSessionsId=MonitoringUtil.populateToolSessionsId(request, qaContent, qaService); logger.debug("summaryToolSessionsId: " + summaryToolSessionsId); request.setAttribute(SUMMARY_TOOL_SESSIONS_ID, summaryToolSessionsId); @@ -677,7 +677,14 @@ generalMonitoringDTO.setDeletedAttachmentList(new ArrayList()); /* ...till here */ - + // setting up the advanced summary for LDEV-1662 + request.setAttribute("showOtherAnswers", qaContent.isShowOtherAnswers()); + request.setAttribute("usernameVisible", qaContent.isUsernameVisible()); + request.setAttribute("questionsSequenced", qaContent.isQuestionsSequenced()); + request.setAttribute("lockWhenFinished", qaContent.isLockWhenFinished()); + request.setAttribute("reflect", qaContent.isReflect()); + request.setAttribute("reflectionSubject", qaContent.getReflectionSubject()); + logger.debug("final generalMonitoringDTO: " + generalMonitoringDTO ); request.setAttribute(QA_GENERAL_MONITORING_DTO, generalMonitoringDTO); Index: lams_tool_laqa/web/monitoring/SummaryContent.jsp =================================================================== diff -u -rcb27e101777d51311c1959e87f6a037ed8ac6a4c -r6cdc71ebb9a54565ad1c47f9750963b3aeda942d --- lams_tool_laqa/web/monitoring/SummaryContent.jsp (.../SummaryContent.jsp) (revision cb27e101777d51311c1959e87f6a037ed8ac6a4c) +++ lams_tool_laqa/web/monitoring/SummaryContent.jsp (.../SummaryContent.jsp) (revision 6cdc71ebb9a54565ad1c47f9750963b3aeda942d) @@ -19,7 +19,109 @@ --%> <%@ include file="/common/taglibs.jsp"%> + + +

+ + + + + +

+
+ + + @@ -110,4 +212,5 @@ + \ No newline at end of file