Index: lams_tool_lamc/conf/hibernate/mappings/org/lamsfoundation/lams/tool/mc/McContent.hbm.xml =================================================================== diff -u -r127c05cdcc1e19906d3f978d5d308b4e0218ec13 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/conf/hibernate/mappings/org/lamsfoundation/lams/tool/mc/McContent.hbm.xml (.../McContent.hbm.xml) (revision 127c05cdcc1e19906d3f978d5d308b4e0218ec13) +++ lams_tool_lamc/conf/hibernate/mappings/org/lamsfoundation/lams/tool/mc/McContent.hbm.xml (.../McContent.hbm.xml) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -31,18 +31,27 @@ type="java.lang.String" access="property" column="title" - length="100" + length="65535" /> + + + + + - - Index: lams_tool_lamc/db/model/lams_tool_mc.clay =================================================================== diff -u -r51cec6d26c1b76f99d5c1cdcff04da5b48731de5 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/db/model/lams_tool_mc.clay (.../lams_tool_mc.clay) (revision 51cec6d26c1b76f99d5c1cdcff04da5b48731de5) +++ lams_tool_lamc/db/model/lams_tool_mc.clay (.../lams_tool_mc.clay) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -9,7 +9,7 @@ - + @@ -61,6 +61,19 @@ + + + + + + + + + + + + + @@ -163,12 +176,6 @@ - - - - - - @@ -234,6 +241,12 @@ + + + + + + @@ -817,8 +830,8 @@ - + Index: lams_tool_lamc/db/sql/create_lams_tool_mc.sql =================================================================== diff -u -r51cec6d26c1b76f99d5c1cdcff04da5b48731de5 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/db/sql/create_lams_tool_mc.sql (.../create_lams_tool_mc.sql) (revision 51cec6d26c1b76f99d5c1cdcff04da5b48731de5) +++ lams_tool_lamc/db/sql/create_lams_tool_mc.sql (.../create_lams_tool_mc.sql) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -5,6 +5,7 @@ , instructions TEXT , creation_date DATETIME , update_date DATETIME + , reflect TINYINT(1) NOT NULL DEFAULT 0 , questions_sequenced TINYINT(1) NOT NULL DEFAULT 0 , username_visible TINYINT(1) NOT NULL DEFAULT 0 , created_by BIGINT(20) NOT NULL DEFAULT 0 @@ -15,12 +16,12 @@ , synch_in_monitor TINYINT(1) NOT NULL DEFAULT 0 , offline_instructions TEXT , online_instructions TEXT - , end_learning_message TEXT NOT NULL , content_in_use TINYINT(1) NOT NULL DEFAULT 0 , retries TINYINT(1) NOT NULL DEFAULT 0 , show_feedback TINYINT(1) NOT NULL DEFAULT 0 , pass_mark INTEGER , show_report TINYINT(1) NOT NULL DEFAULT 0 + , reflectionSubject TEXT , UNIQUE UQ_tl_lamc11_content_1 (content_id) , PRIMARY KEY (uid) )TYPE=InnoDB; @@ -117,11 +118,13 @@ )TYPE=InnoDB; -INSERT INTO tl_lamc11_content(uid, content_id , title, instructions, creation_date , questions_sequenced , username_visible , created_by , monitoring_report_title , report_title , run_offline , define_later, synch_in_monitor, offline_instructions, online_instructions, end_learning_message, content_in_use, retries, show_feedback, show_report, pass_mark) VALUES (1, ${default_content_id} , 'MCQ Title', 'MCQ Instructions', NOW(), 0, 0,1,'Monitoring Report','Report', 0, 0, 0,'offline instructions','online instructions','Finished Activity...', 0, 0, 0, 0, 50); +INSERT INTO tl_lamc11_content(uid, content_id , title, instructions, creation_date , reflect, questions_sequenced , username_visible , created_by , monitoring_report_title , report_title , run_offline , define_later, synch_in_monitor, offline_instructions, online_instructions, content_in_use, retries, show_feedback, show_report, pass_mark) VALUES (1, ${default_content_id} , 'MCQ Title', 'MCQ Instructions', NOW(), 0, 0, 0,1,'Monitoring Report','Report', 0, 0, 0,'offline instructions','online instructions', 0, 0, 0, 0, 50); INSERT INTO tl_lamc11_que_content (uid,question, weight, disabled, display_order, mc_content_id, feedbackIncorrect, feedbackCorrect) VALUES (1, 'A Sample question?', 100, 0, 1,1, 'Your answer is incorrect', 'Correct'); INSERT INTO tl_lamc11_options_content (uid, correct_option, mc_que_content_id, mc_que_option_text) VALUES (1, 0, 1,'Candidate Answer 1'); INSERT INTO tl_lamc11_options_content (uid, correct_option, mc_que_content_id, mc_que_option_text) VALUES (2, 1, 1,'Candidate Answer 2'); + + Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/pojos/McContent.java =================================================================== diff -u -rc9531327d15636b54f293077ee1cd9f60195381b -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/pojos/McContent.java (.../McContent.java) (revision c9531327d15636b54f293077ee1cd9f60195381b) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/pojos/McContent.java (.../McContent.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -61,13 +61,15 @@ /** nullable persistent field */ private String instructions; - /** nullable persistent field */ private boolean defineLater; - /** nullable persistent field */ private boolean runOffline; /** nullable persistent field */ + private boolean reflect; + + + /** nullable persistent field */ private Date creationDate; /** nullable persistent field */ @@ -100,10 +102,8 @@ /** nullable persistent field */ private String onlineInstructions; + /** nullable persistent field */ - private String endLearningMessage; - - /** nullable persistent field */ private boolean retries; private boolean showReport; @@ -114,6 +114,8 @@ /** nullable persistent field */ private boolean showFeedback; + + private String reflectionSubject; /** persistent field */ @@ -129,7 +131,8 @@ public McContent(Long mcContentId, String content, String title, String instructions, boolean defineLater, boolean runOffline, Date creationDate, Date updateDate, boolean questionsSequenced, boolean usernameVisible, String reportTitle, String monitoringReportTitle, long createdBy, boolean synchInMonitor, boolean contentInUse, String offlineInstructions, String onlineInstructions, - String endLearningMessage, Integer passMark, boolean showReport, boolean showFeedback, boolean retries, Set mcQueContents, Set mcSessions, + Integer passMark, boolean showReport, boolean showFeedback, boolean retries, boolean reflect, + String reflectionSubject, Set mcQueContents, Set mcSessions, Set mcAttachments) { this.mcContentId = mcContentId; this.content=content; @@ -149,8 +152,9 @@ this.showFeedback = showFeedback; this.offlineInstructions = offlineInstructions; this.onlineInstructions = onlineInstructions; - this.endLearningMessage = endLearningMessage; this.retries=retries; + this.reflectionSubject=reflectionSubject; + this.reflect=reflect; this.passMark = passMark; this.showReport = showReport; this.mcQueContents = mcQueContents; @@ -202,11 +206,12 @@ mc.isContentInUse(), mc.getOfflineInstructions(), mc.getOnlineInstructions(), - mc.getEndLearningMessage(), mc.getPassMark(), mc.isShowReport(), mc.isShowFeedback(), mc.isRetries(), + mc.isReflect(), + mc.getReflectionSubject(), new TreeSet(), new TreeSet(), new TreeSet() @@ -393,14 +398,6 @@ this.onlineInstructions = onlineInstructions; } - public String getEndLearningMessage() { - return this.endLearningMessage; - } - - public void setEndLearningMessage(String endLearningMessage) { - this.endLearningMessage = endLearningMessage; - } - public Integer getPassMark() { return this.passMark; } @@ -506,4 +503,26 @@ public void setContent(String content) { this.content = content; } + /** + * @return Returns the reflect. + */ + public boolean isReflect() { + return reflect; + } + /** + * @param reflect The reflect to set. + */ + public void setReflect(boolean reflect) { + this.reflect = reflect; + } + + public String getReflectionSubject() { + return reflectionSubject; + } + /** + * @param reflectionSubject The reflectionSubject to set. + */ + public void setReflectionSubject(String reflectionSubject) { + this.reflectionSubject = reflectionSubject; + } } Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/service/McServicePOJO.java =================================================================== diff -u -r24ca84b9e61b98c068eaa369cb194a35e5511162 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/service/McServicePOJO.java (.../McServicePOJO.java) (revision 24ca84b9e61b98c068eaa369cb194a35e5511162) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/service/McServicePOJO.java (.../McServicePOJO.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -2617,17 +2617,17 @@ { Date now = new Date(); McContent toolContentObj = new McContent(); - toolContentObj.setContentInUse(Boolean.FALSE); + toolContentObj.setContentInUse(Boolean.FALSE.booleanValue()); toolContentObj.setCreatedBy(user.getUserID().longValue()); toolContentObj.setCreationDate(now); - toolContentObj.setDefineLater(Boolean.FALSE); + toolContentObj.setDefineLater(Boolean.FALSE.booleanValue()); toolContentObj.setInstructions((String)importValues.get(ToolContentImport102Manager.CONTENT_BODY)); toolContentObj.setOfflineInstructions(null); toolContentObj.setOnlineInstructions(null); // TODO add reflection //toolContentObj.setReflectInstructions(null); //toolContentObj.setReflectOnActivity(Boolean.FALSE); - toolContentObj.setRunOffline(Boolean.FALSE); + toolContentObj.setRunOffline(Boolean.FALSE.booleanValue()); toolContentObj.setTitle((String)importValues.get(ToolContentImport102Manager.CONTENT_TITLE)); toolContentObj.setContent(null); @@ -2642,7 +2642,7 @@ // not supported in 1.0.2 so set to blank. Fields are mandatory in the database toolContentObj.setReportTitle(""); toolContentObj.setMonitoringReportTitle(""); - toolContentObj.setEndLearningMessage(""); + //toolContentObj.setEndLearningMessage(""); try { Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/AuthoringUtil.java =================================================================== diff -u -r915cf301e0c040728f0254ddd45ebb647b404ab7 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/AuthoringUtil.java (.../AuthoringUtil.java) (revision 915cf301e0c040728f0254ddd45ebb647b404ab7) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/AuthoringUtil.java (.../AuthoringUtil.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -1467,8 +1467,8 @@ String richTextReportTitle=(String)request.getSession().getAttribute(RICHTEXT_REPORT_TITLE); logger.debug("richTextReportTitle: " + richTextReportTitle); - String richTextEndLearningMessage=(String)request.getSession().getAttribute(RICHTEXT_END_LEARNING_MSG); - logger.debug("richTextEndLearningMessage: " + richTextEndLearningMessage); + //String richTextEndLearningMessage=(String)request.getSession().getAttribute(RICHTEXT_END_LEARNING_MSG); + ///logger.debug("richTextEndLearningMessage: " + richTextEndLearningMessage); creationDate=(Date)request.getSession().getAttribute(CREATION_DATE); if (creationDate == null) @@ -1503,11 +1503,11 @@ mc.setDefineLater(false); mc.setSynchInMonitor(isSynchInMonitor); mc.setContentInUse(isContentInUse); - mc.setEndLearningMessage("Thanks"); + //mc.setEndLearningMessage("Thanks"); mc.setRunOffline(isRunOffline); mc.setReportTitle(richTextReportTitle); mc.setMonitoringReportTitle(monitoringReportTitle); - mc.setEndLearningMessage(richTextEndLearningMessage); + //mc.setEndLearningMessage(richTextEndLearningMessage); mc.setRetries(isRetries); mc.setPassMark(new Integer(passmark)); mc.setShowReport(isSln); @@ -3143,7 +3143,7 @@ request.getSession().removeAttribute(IS_REVISITING_USER); request.getSession().removeAttribute(MAP_WEIGHTS); request.getSession().removeAttribute(DEFINE_LATER_EDIT_ACTIVITY); - request.getSession().removeAttribute(RICHTEXT_END_LEARNING_MSG); + //request.getSession().removeAttribute(RICHTEXT_END_LEARNING_MSG); request.getSession().removeAttribute(RICHTEXT_FEEDBACK_CORRECT); request.getSession().removeAttribute(RICHTEXT_FEEDBACK_INCORRECT); request.getSession().removeAttribute(RICHTEXT_TITLE); Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/ClearSessionAction.java =================================================================== diff -u -r62210e3b3fc129093d235b83d585690eff4e0752 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/ClearSessionAction.java (.../ClearSessionAction.java) (revision 62210e3b3fc129093d235b83d585690eff4e0752) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/ClearSessionAction.java (.../ClearSessionAction.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -68,7 +68,7 @@ session.removeAttribute(McAction.LIST_ONLINEFILES_METADATA); session.removeAttribute(McAction.QUESTIONS_WITHNO_OPTIONS); session.removeAttribute(McAction.RICHTEXT_CORRECT_FEEDBACK); - session.removeAttribute(McAction.RICHTEXT_END_LEARNING_MSG); + //session.removeAttribute(McAction.RICHTEXT_END_LEARNING_MSG); session.removeAttribute(McAction.RICHTEXT_OFFLINEINSTRUCTIONS); session.removeAttribute(McAction.RICHTEXT_ONLINEINSTRUCTIONS); session.removeAttribute(McAction.RICHTEXT_INSTRUCTIONS); Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McAction.java =================================================================== diff -u -r915cf301e0c040728f0254ddd45ebb647b404ab7 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McAction.java (.../McAction.java) (revision 915cf301e0c040728f0254ddd45ebb647b404ab7) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McAction.java (.../McAction.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -2205,8 +2205,8 @@ String richTextReportTitle=(String)request.getSession().getAttribute(RICHTEXT_REPORT_TITLE); logger.debug("richTextReportTitle: " + richTextReportTitle); - String richTextEndLearningMessage=(String)request.getSession().getAttribute(RICHTEXT_END_LEARNING_MSG); - logger.debug("richTextEndLearningMessage: " + richTextEndLearningMessage); + //String richTextEndLearningMessage=(String)request.getSession().getAttribute(RICHTEXT_END_LEARNING_MSG); + //logger.debug("richTextEndLearningMessage: " + richTextEndLearningMessage); logger.debug("existing mcContent:" + mcContent); @@ -2245,7 +2245,7 @@ mcContent.setOnlineInstructions(richTextOnlineInstructions); mcContent.setReportTitle(richTextReportTitle); mcContent.setMonitoringReportTitle("Monitoring Report"); - mcContent.setEndLearningMessage(richTextEndLearningMessage); + //mcContent.setEndLearningMessage(richTextEndLearningMessage); } } Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McAuthoringForm.java =================================================================== diff -u -r2e1913a4770c9bc154693d8c35f6e7a6b6e0e3fd -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McAuthoringForm.java (.../McAuthoringForm.java) (revision 2e1913a4770c9bc154693d8c35f6e7a6b6e0e3fd) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McAuthoringForm.java (.../McAuthoringForm.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -103,6 +103,9 @@ protected String usernameVisible; protected String questionsSequenced; + protected String reflect; + protected String reflectionSubject; + /* proxy controllers for Monitoring tabs */ protected String summaryMonitoring; protected String instructionsMonitoring; @@ -205,6 +208,7 @@ this.sln =OPTION_OFF; this.showFeedback =OPTION_OFF; this.usernameVisible =OPTION_OFF; + this.reflect =OPTION_OFF; } @@ -849,4 +853,30 @@ public void setEditOptionsMode(String editOptionsMode) { this.editOptionsMode = editOptionsMode; } + + /** + * @return Returns the reflect. + */ + public String getReflect() { + return reflect; + } + /** + * @param reflect The reflect to set. + */ + public void setReflect(String reflect) { + this.reflect = reflect; + } + /** + * @return Returns the reflectionSubject. + */ + public String getReflectionSubject() { + return reflectionSubject; + } + /** + * @param reflectionSubject The reflectionSubject to set. + */ + public void setReflectionSubject(String reflectionSubject) { + this.reflectionSubject = reflectionSubject; + } + } Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java =================================================================== diff -u -r51cec6d26c1b76f99d5c1cdcff04da5b48731de5 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java (.../McLearningStarterAction.java) (revision 51cec6d26c1b76f99d5c1cdcff04da5b48731de5) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McLearningStarterAction.java (.../McLearningStarterAction.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -333,7 +333,7 @@ (mcSessionLocal.getMcSessionId().longValue() != new Long(toolSessionID).longValue())) { McUtils.cleanUpSessionAbsolute(request); - persistError(request, "error.learner.sessionId.inconsistent"); + //persistError(request, "error.learner.sessionId.inconsistent"); return (mapping.findForward(ERROR_LIST)); } LearningUtil.saveFormRequestData(request, mcLearningForm, true); @@ -560,7 +560,7 @@ if ((mode == null) || (mode.length() == 0)) { McUtils.cleanUpSessionAbsolute(request); - persistError(request, "error.mode.required"); + //persistError(request, "error.mode.required"); return (mapping.findForward(ERROR_LIST)); } Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringStarterAction.java =================================================================== diff -u -r5de7bccf84e718b3d78091c0a4c7d29097f1c22e -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringStarterAction.java (.../McMonitoringStarterAction.java) (revision 5de7bccf84e718b3d78091c0a4c7d29097f1c22e) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McMonitoringStarterAction.java (.../McMonitoringStarterAction.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -437,7 +437,7 @@ { McUtils.cleanUpSessionAbsolute(request); request.getSession().setAttribute(USER_EXCEPTION_NUMBERFORMAT, new Boolean(true).toString()); - persistError(request, "error.numberFormatException"); + //persistError(request, "error.numberFormatException"); logger.debug("add error.numberFormatException to ActionMessages."); return (mapping.findForward(ERROR_LIST)); } Index: lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McStarterAction.java =================================================================== diff -u -r915cf301e0c040728f0254ddd45ebb647b404ab7 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McStarterAction.java (.../McStarterAction.java) (revision 915cf301e0c040728f0254ddd45ebb647b404ab7) +++ lams_tool_lamc/src/java/org/lamsfoundation/lams/tool/mc/web/McStarterAction.java (.../McStarterAction.java) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -277,7 +277,7 @@ { McUtils.cleanUpSessionAbsolute(request); request.getSession().setAttribute(USER_EXCEPTION_NUMBERFORMAT, new Boolean(true).toString()); - persistError(request,"error.numberFormatException"); + //persistError(request,"error.numberFormatException"); logger.debug("forwarding to: " + ERROR_LIST); return (mapping.findForward(ERROR_LIST)); } @@ -546,7 +546,7 @@ /*used in advanced tab*/ request.getSession().setAttribute(RICHTEXT_REPORT_TITLE,mcContent.getReportTitle()); - request.getSession().setAttribute(RICHTEXT_END_LEARNING_MSG,mcContent.getEndLearningMessage()); + //request.getSession().setAttribute(RICHTEXT_END_LEARNING_MSG,mcContent.getEndLearningMessage()); /* used in instructions tab*/ request.getSession().setAttribute(RICHTEXT_OFFLINEINSTRUCTIONS,mcContent.getOfflineInstructions()); @@ -677,7 +677,7 @@ request.getSession().setAttribute(RETRIES, new Boolean(mcContent.isRetries())); request.getSession().setAttribute(PASSMARK, mcContent.getPassMark()); //Integer request.getSession().setAttribute(RICHTEXT_REPORT_TITLE,mcContent.getReportTitle()); - request.getSession().setAttribute(RICHTEXT_END_LEARNING_MSG,mcContent.getEndLearningMessage()); + //request.getSession().setAttribute(RICHTEXT_END_LEARNING_MSG,mcContent.getEndLearningMessage()); request.getSession().setAttribute(RICHTEXT_INCORRECT_FEEDBACK,""); request.getSession().setAttribute(RICHTEXT_CORRECT_FEEDBACK,""); Index: lams_tool_lamc/test/java/org/lamsfoundation/lams/tool/mc/McContent.hbm.xml =================================================================== diff -u -rdef2dd6db95cbaa6ae8116e6a63e948db2c403f5 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/test/java/org/lamsfoundation/lams/tool/mc/McContent.hbm.xml (.../McContent.hbm.xml) (revision def2dd6db95cbaa6ae8116e6a63e948db2c403f5) +++ lams_tool_lamc/test/java/org/lamsfoundation/lams/tool/mc/McContent.hbm.xml (.../McContent.hbm.xml) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -86,6 +86,14 @@ length="1" /> + + - - - - - - - - - - - - - - - - - - - - - @@ -165,24 +132,7 @@ - - - - - - - - - - - + - + + + + + + + + + + + + + Index: lams_tool_lamc/web/learning/RunOffline.jsp =================================================================== diff -u -r8a81c117f2bb66e5e4c7e5be0f2ca4bb8a1db7de -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/web/learning/RunOffline.jsp (.../RunOffline.jsp) (revision 8a81c117f2bb66e5e4c7e5be0f2ca4bb8a1db7de) +++ lams_tool_lamc/web/learning/RunOffline.jsp (.../RunOffline.jsp) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -46,7 +46,7 @@
- +      
- -
- -
- -
- -
- -
- -
- +
- -
- -
- -
Index: lams_tool_lamc/web/authoring/AdvancedContent.jsp =================================================================== diff -u -r33a828c4cef478536cf95e7c69422e6708c4a265 -r3a998c9b8c2ba60c293759d9bd20c2ca71edb68a --- lams_tool_lamc/web/authoring/AdvancedContent.jsp (.../AdvancedContent.jsp) (revision 33a828c4cef478536cf95e7c69422e6708c4a265) +++ lams_tool_lamc/web/authoring/AdvancedContent.jsp (.../AdvancedContent.jsp) (revision 3a998c9b8c2ba60c293759d9bd20c2ca71edb68a) @@ -77,8 +77,35 @@
+ : + + + + + + + + +
+   + + +