Index: lams_tool_wiki/conf/language/ApplicationResources.properties =================================================================== diff -u -rff341c0d1e171ace0d2144ed148472745449c066 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/conf/language/ApplicationResources.properties (.../ApplicationResources.properties) (revision ff341c0d1e171ace0d2144ed148472745449c066) +++ lams_tool_wiki/conf/language/ApplicationResources.properties (.../ApplicationResources.properties) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -111,6 +111,8 @@ label.wiki.add.title.required =A title is required for the Wiki page. label.wiki.last.edit =Last edited by {0}, at {1} label.wiki.view =View +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content label.wiki.view.toolTip =View this Wiki page label.wiki.remove =Remove label.wiki.remove.toolTip =Remove this Wiki page Index: lams_tool_wiki/conf/language/lams/ApplicationResources.properties =================================================================== diff -u -rff341c0d1e171ace0d2144ed148472745449c066 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision ff341c0d1e171ace0d2144ed148472745449c066) +++ lams_tool_wiki/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -110,6 +110,8 @@ label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title. label.wiki.add.title.required =A title is required for the Wiki page. label.wiki.last.edit =Last edited by {0}, at {1} +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content label.wiki.view =View label.wiki.view.toolTip =View this Wiki page label.wiki.remove =Remove Index: lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties =================================================================== diff -u -rff341c0d1e171ace0d2144ed148472745449c066 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision ff341c0d1e171ace0d2144ed148472745449c066) +++ lams_tool_wiki/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -110,6 +110,8 @@ label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title. label.wiki.add.title.required =A title is required for the Wiki page. label.wiki.last.edit =Last edited by {0}, at {1} +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content label.wiki.view =View label.wiki.view.toolTip =View this Wiki page label.wiki.remove =Remove Index: lams_tool_wiki/conf/language/rams/ApplicationResources.properties =================================================================== diff -u -rff341c0d1e171ace0d2144ed148472745449c066 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/conf/language/rams/ApplicationResources.properties (.../ApplicationResources.properties) (revision ff341c0d1e171ace0d2144ed148472745449c066) +++ lams_tool_wiki/conf/language/rams/ApplicationResources.properties (.../ApplicationResources.properties) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -110,6 +110,8 @@ label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title. label.wiki.add.title.required =A title is required for the Wiki page. label.wiki.last.edit =Last edited by {0}, at {1} +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content label.wiki.view =View label.wiki.view.toolTip =View this Wiki page label.wiki.remove =Remove Index: lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties =================================================================== diff -u -rff341c0d1e171ace0d2144ed148472745449c066 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision ff341c0d1e171ace0d2144ed148472745449c066) +++ lams_tool_wiki/conf/language/rams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -110,6 +110,8 @@ label.wiki.add.title.exists =A Wiki page with title "{0}" already exists, please choose a different title. label.wiki.add.title.required =A title is required for the Wiki page. label.wiki.last.edit =Last edited by {0}, at {1} +label.wiki.refresh =Refresh +label.wiki.refresh.toolTip =Refresh the page to get the current content label.wiki.view =View label.wiki.view.toolTip =View this Wiki page label.wiki.remove =Remove Index: lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/actions/MonitoringAction.java =================================================================== diff -u -rf08d91b95c1892c71594dd4f7fd6e9b4509cccc7 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/actions/MonitoringAction.java (.../MonitoringAction.java) (revision f08d91b95c1892c71594dd4f7fd6e9b4509cccc7) +++ lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/actions/MonitoringAction.java (.../MonitoringAction.java) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -159,6 +159,7 @@ HttpServletResponse response) { Long toolSessionId = WebUtil.readLongParam(request, AttributeNames.PARAM_TOOL_SESSION_ID); + String contentFolderID = WebUtil.readStrParam(request, AttributeNames.PARAM_CONTENT_FOLDER_ID); if (wikiService == null) { wikiService = WikiServiceProxy.getWikiService(this.getServlet().getServletContext()); @@ -216,6 +217,7 @@ currentWikiPageHistoryDTOs.add(new WikiPageContentDTO(wikiPageContentHistoryItem)); } request.setAttribute(WikiConstants.ATTR_WIKI_PAGE_CONTENT_HISTORY, currentWikiPageHistoryDTOs); + request.setAttribute(WikiConstants.ATTR_CONTENT_FOLDER_ID, contentFolderID); return mapping.findForward("wiki_display"); } Index: lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/forms/MonitoringForm.java =================================================================== diff -u -r16b67860ab51e6ba2a8f91220dda61d67334e1b0 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/forms/MonitoringForm.java (.../MonitoringForm.java) (revision 16b67860ab51e6ba2a8f91220dda61d67334e1b0) +++ lams_tool_wiki/src/java/org/lamsfoundation/lams/tool/wiki/web/forms/MonitoringForm.java (.../MonitoringForm.java) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -35,7 +35,8 @@ String dispatch; boolean teacherVisible; Long toolSessionID; - + String contentFolderID; + // editing message page. Long messageUID; String messageBody; @@ -97,4 +98,12 @@ public void setMode(String mode) { this.mode = mode; } + + public String getContentFolderID() { + return contentFolderID; + } + + public void setContentFolderID(String contentFolderID) { + this.contentFolderID = contentFolderID; + } } Index: lams_tool_wiki/web/pages/learning/wiki.jsp =================================================================== diff -u -r6df697e6df8669a9f51f2ea693ac0fb54beda03b -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/web/pages/learning/wiki.jsp (.../wiki.jsp) (revision 6df697e6df8669a9f51f2ea693ac0fb54beda03b) +++ lams_tool_wiki/web/pages/learning/wiki.jsp (.../wiki.jsp) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -130,7 +130,12 @@ + + + + +   @@ -476,6 +481,12 @@ editorInstance.wikiLinkArray = wikiLinkArray; } + + function refreshPage() + { + var url = "/learning.do?mode=${mode}&toolSessionID=${lrnForm.toolSessionID}¤tWikiPageId=${currentWikiPage.uid}" + window.location=url; + } --> Index: lams_tool_wiki/web/pages/monitoring/summary.jsp =================================================================== diff -u -r23d3a9ebc582896d8379f662e312c6d3b383c226 -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision 23d3a9ebc582896d8379f662e312c6d3b383c226) +++ lams_tool_wiki/web/pages/monitoring/summary.jsp (.../summary.jsp) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -203,7 +203,7 @@ - ${session.sessionName} + ${session.sessionName} ${session.numberOfLearners} Index: lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp =================================================================== diff -u -r6df697e6df8669a9f51f2ea693ac0fb54beda03b -raa23536bf893527084d4b72019050dc457c8b23c --- lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp (.../wikiDisplay.jsp) (revision 6df697e6df8669a9f51f2ea693ac0fb54beda03b) +++ lams_tool_wiki/web/pages/monitoring/wikiDisplay.jsp (.../wikiDisplay.jsp) (revision aa23536bf893527084d4b72019050dc457c8b23c) @@ -10,6 +10,7 @@ + @@ -29,6 +30,10 @@
+ + + +   @@ -302,7 +307,6 @@
-