Index: lams_tool_forum/conf/language/ApplicationResources.properties =================================================================== diff -u -r71a37d456ee2d1d277774c125ac645ef7f06fa00 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/conf/language/ApplicationResources.properties (.../ApplicationResources.properties) (revision 71a37d456ee2d1d277774c125ac645ef7f06fa00) +++ lams_tool_forum/conf/language/ApplicationResources.properties (.../ApplicationResources.properties) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -44,7 +44,7 @@ lable.topic.title.replies =Replies lable.topic.title.mark =Mark lable.topic.subject.by =By -label.back.to.forum =Go back to froum +label.back.to.forum =Go back to forum lable.topic.title.message.number =# of Msg lable.topic.title.average.mark =Aver mark authoring.exception =There is a problem in forum authoring page, the reason is {0} @@ -65,7 +65,7 @@ message.monitoring.edit.activity.not.editable =This Activity is no longer editable errors.header = errors.footer = -error.valueReqd =Value Required +error.valueReqd =Value required error.inputFileTooLarge =Input File size is too large! error.uploading =error uploading error.mark.needNumber =Mark must be int value @@ -142,5 +142,6 @@ #======= End labels: Exported 130 labels for en AU ===== #======= New labels: after 12/05/2006 ============= authoring.msg.cancel.save=Do you want to close this window without saving? +#======= New labels: after 08/06/2006 ============= define.later.message=Please wait for the teacher to define this part. run.offline.message=This activity is not being done on the computer. Please see your instructor for details. Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java =================================================================== diff -u -r12f7e39b451ed00ce91cffcf66efd129252d2cfc -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java (.../ForumConstants.java) (revision 12f7e39b451ed00ce91cffcf66efd129252d2cfc) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java (.../ForumConstants.java) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -80,5 +80,7 @@ public static final String TITLE = "title"; public static final String INSTRUCTIONS = "instructions"; public static final String PAGE_EDITABLE = "isPageEditable"; + + public static final String ROOT_TOPIC_UID = "rootUid"; } Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java =================================================================== diff -u -r71a37d456ee2d1d277774c125ac645ef7f06fa00 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java (.../LearningAction.java) (revision 71a37d456ee2d1d277774c125ac645ef7f06fa00) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java (.../LearningAction.java) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -303,6 +303,7 @@ setAuthorMark(msgDtoList); request.setAttribute(ForumConstants.AUTHORING_TOPIC_THREAD, msgDtoList); + request.getSession().setAttribute(ForumConstants.ROOT_TOPIC_UID,topicId); return mapping.findForward("success"); } @@ -362,7 +363,7 @@ private ActionForward newReplyTopic(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { Long parentId = new Long(WebUtil.readLongParam(request, "parentId")); - + // get parent topic, it can decide default subject of reply. MessageDTO topic = getTopic(parentId); @@ -375,6 +376,7 @@ // cache this parentId in order to create reply request.getSession().setAttribute("parentId", parentId); + return mapping.findForward("success"); } @@ -390,6 +392,7 @@ private ActionForward replyTopic(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { Long parentId = (Long) request.getSession().getAttribute("parentId"); + Long sessionId = (Long) request.getSession().getAttribute( AttributeNames.PARAM_TOOL_SESSION_ID); MessageForm messageForm = (MessageForm) form; @@ -412,8 +415,9 @@ Long rootTopicId = forumService.getRootTopicId(parentId); List msgDtoList = forumService.getTopicThread(rootTopicId); setAuthorMark(msgDtoList); + request.setAttribute(ForumConstants.AUTHORING_TOPIC_THREAD, msgDtoList); - + return mapping.findForward("success"); } @@ -460,6 +464,7 @@ throws PersistenceException { // get value from HttpSession Long topicId = (Long) request.getSession().getAttribute("topicId"); + forumService = getForumManager(); MessageForm messageForm = (MessageForm) form; @@ -495,7 +500,7 @@ List msgDtoList = forumService.getTopicThread(rootTopicId); setAuthorMark(msgDtoList); request.setAttribute(ForumConstants.AUTHORING_TOPIC_THREAD, msgDtoList); - + return mapping.findForward("success"); } Index: lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml =================================================================== diff -u -r427a3b63491fb2f3206a785705ac247af49e1360 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml (.../tiles-defs.xml) (revision 427a3b63491fb2f3206a785705ac247af49e1360) +++ lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml (.../tiles-defs.xml) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -25,23 +25,15 @@ - - - - - - - - @@ -57,29 +49,10 @@ - + - @@ -119,16 +92,14 @@ - - + - - + Index: lams_tool_forum/web/common/header.jsp =================================================================== diff -u -r71a37d456ee2d1d277774c125ac645ef7f06fa00 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/common/header.jsp (.../header.jsp) (revision 71a37d456ee2d1d277774c125ac645ef7f06fa00) +++ lams_tool_forum/web/common/header.jsp (.../header.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -27,7 +27,8 @@ + +<%@ include file="/common/fckeditorheader.jsp"%> - Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/includes/authoringHeader.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/includes/footer.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/includes/header.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_forum/web/includes/javascript/forum.js =================================================================== diff -u --- lams_tool_forum/web/includes/javascript/forum.js (revision 0) +++ lams_tool_forum/web/includes/javascript/forum.js (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -0,0 +1,9 @@ + function launchPopup(url,title) { + var wd = null; + if(wd && wd.open && !wd.closed){ + wd.close(); + } + wd = window.open(url,title,'resizable,width=796,height=570,scrollbars'); + wd.window.focus(); + } + \ No newline at end of file Index: lams_tool_forum/web/includes/layout.jsp =================================================================== diff -u -r0eacb8f457bdd45c0ee25040bb1a793635e24dbf -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/includes/layout.jsp (.../layout.jsp) (revision 0eacb8f457bdd45c0ee25040bb1a793635e24dbf) +++ lams_tool_forum/web/includes/layout.jsp (.../layout.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -9,7 +9,7 @@ <bean:message key="activity.title" /> - + <%@ include file="/common/header.jsp"%> @@ -22,6 +22,5 @@ - Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/includes/scripts.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_forum/web/includes/tablayout.jsp =================================================================== diff -u -r9d22cc9e548d46405f0b12cd1eddb4ae460ef289 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/includes/tablayout.jsp (.../tablayout.jsp) (revision 9d22cc9e548d46405f0b12cd1eddb4ae460ef289) +++ lams_tool_forum/web/includes/tablayout.jsp (.../tablayout.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,11 +1,19 @@ -<%@ include file="/includes/taglibs.jsp"%> +<%@ include file="/common/taglibs.jsp"%> <%@ taglib uri="tags-tiles" prefix="tiles"%> - + + + <bean:message key="activity.title" /> + + <%@ include file="/common/header.jsp"%> + + + + @@ -16,6 +24,5 @@ - Index: lams_tool_forum/web/jsps/authoring/basic.jsp =================================================================== diff -u -r427a3b63491fb2f3206a785705ac247af49e1360 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/authoring/basic.jsp (.../basic.jsp) (revision 427a3b63491fb2f3206a785705ac247af49e1360) +++ lams_tool_forum/web/jsps/authoring/basic.jsp (.../basic.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -45,7 +45,7 @@
- <%@ include file="/jsps/message/topiclist.jsp"%> + <%@ include file="/jsps/authoring/message/topiclist.jsp"%>
Index: lams_tool_forum/web/jsps/authoring/header.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/authoring/header.jsp (revision 0) +++ lams_tool_forum/web/jsps/authoring/header.jsp (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -0,0 +1,43 @@ +<%@ include file="/common/taglibs.jsp"%> + + + + + + + Index: lams_tool_forum/web/jsps/authoring/message/create.jsp =================================================================== diff -u -r71a37d456ee2d1d277774c125ac645ef7f06fa00 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/authoring/message/create.jsp (.../create.jsp) (revision 71a37d456ee2d1d277774c125ac645ef7f06fa00) +++ lams_tool_forum/web/jsps/authoring/message/create.jsp (.../create.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -14,20 +14,63 @@ } success(); - + + Index: lams_tool_forum/web/jsps/authoring/message/edit.jsp =================================================================== diff -u -r427a3b63491fb2f3206a785705ac247af49e1360 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/authoring/message/edit.jsp (.../edit.jsp) (revision 427a3b63491fb2f3206a785705ac247af49e1360) +++ lams_tool_forum/web/jsps/authoring/message/edit.jsp (.../edit.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -13,7 +13,68 @@
"> - <%@ include file="/jsps/message/topiceditform.jsp"%> + +
- <%@ include file="/common/messages.jsp" %> + <%@ include file="/common/messages.jsp"%> - <%@ include file="/jsps/message/topicform.jsp"%> + + + + + + + + + + + + + + + + + +
+ * + + +
+ +
+ * + + + +
+ +
+ + + + +
+ + + + + + +
+
+ + + + + + + + + + + + + + + + +
+ * + + +
+ +
+ * + + + + + +
+ +
+ + + + + + + + + + + + + + + + + + +
+
+ + + + + + +
+ Index: lams_tool_forum/web/jsps/authoring/message/topiclist.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/authoring/message/topiclist.jsp (revision 0) +++ lams_tool_forum/web/jsps/authoring/message/topiclist.jsp (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -0,0 +1,42 @@ +<%@ include file="/includes/taglibs.jsp" %> + +
+
+
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + "> + + + + + + +
+
+
+
Index: lams_tool_forum/web/jsps/authoring/message/view.jsp =================================================================== diff -u -r71a37d456ee2d1d277774c125ac645ef7f06fa00 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/authoring/message/view.jsp (.../view.jsp) (revision 71a37d456ee2d1d277774c125ac645ef7f06fa00) +++ lams_tool_forum/web/jsps/authoring/message/view.jsp (.../view.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -24,7 +24,67 @@
- <%@ include file="/jsps/message/topicview.jsp"%> +
+ +
+
+
+ + + + + + + + + + + + + + + + +
+ +
+ + + - + + +
+
+ +
+
+ + + + + + +
+
+ + + + + + + + + + + + + + + +
+
+
+
Index: lams_tool_forum/web/jsps/export/exportportfolio.jsp =================================================================== diff -u -rde672e5125377cd876df4bf2e9e624ffcfac30a4 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/export/exportportfolio.jsp (.../exportportfolio.jsp) (revision de672e5125377cd876df4bf2e9e624ffcfac30a4) +++ lams_tool_forum/web/jsps/export/exportportfolio.jsp (.../exportportfolio.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,11 +1,8 @@ -<%@ include file="/includes/taglibs.jsp" %> +<%@ include file="/common/taglibs.jsp" %> - Learner Topics Details - - - css/aqua.css" rel="stylesheet" type="text/css"> + <%@ include file="/common/header.jsp" %> Index: lams_tool_forum/web/jsps/learning/message/bodyarea.jsp =================================================================== diff -u -ra1bba4a6e2e8937726524cf853f5cb54932c47c2 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/message/bodyarea.jsp (.../bodyarea.jsp) (revision a1bba4a6e2e8937726524cf853f5cb54932c47c2) +++ lams_tool_forum/web/jsps/learning/message/bodyarea.jsp (.../bodyarea.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,36 +1,43 @@ - * - - - - - - - - -
- - - -
-
-
\ No newline at end of file + + +
+ Index: lams_tool_forum/web/jsps/learning/message/topiceditform.jsp =================================================================== diff -u -r4a636f089ddb22f51c9277aa191e90ab61880515 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/message/topiceditform.jsp (.../topiceditform.jsp) (revision 4a636f089ddb22f51c9277aa191e90ab61880515) +++ lams_tool_forum/web/jsps/learning/message/topiceditform.jsp (.../topiceditform.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,49 +1,58 @@ - - +
- - + + - - + + - - + -
* - + * + +
+ +
<%@include file="bodyarea.jsp"%> + * + + <%@include file="bodyarea.jsp"%> +
  + - + - - - + - +   - - - + - + +
   - + +
+ + + + + + +
-
Index: lams_tool_forum/web/jsps/learning/message/topicform.jsp =================================================================== diff -u -r4a636f089ddb22f51c9277aa191e90ab61880515 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/message/topicform.jsp (.../topicform.jsp) (revision 4a636f089ddb22f51c9277aa191e90ab61880515) +++ lams_tool_forum/web/jsps/learning/message/topicform.jsp (.../topicform.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,28 +1,46 @@ - +
- - + + - - + + - + - + +
* - + * + + +
+ +
<%@include file="bodyarea.jsp"%> + * + + <%@include file="bodyarea.jsp"%> +
-    + + + +
   - +
+
+ + + + + + +
Index: lams_tool_forum/web/jsps/learning/message/topiclist.jsp =================================================================== diff -u -r5cf73c3c3892579e89ad206d4d04c97bda7fd949 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/message/topiclist.jsp (.../topiclist.jsp) (revision 5cf73c3c3892579e89ad206d4d04c97bda7fd949) +++ lams_tool_forum/web/jsps/learning/message/topiclist.jsp (.../topiclist.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -14,7 +14,7 @@ - + Index: lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp =================================================================== diff -u -r4a636f089ddb22f51c9277aa191e90ab61880515 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp (.../topicreplyform.jsp) (revision 4a636f089ddb22f51c9277aa191e90ab61880515) +++ lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp (.../topicreplyform.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,26 +1,43 @@ - - + + - - + + - + - + +
* - + * + + + +
<%@include file="bodyarea.jsp"%> + * + + <%@include file="bodyarea.jsp"%> +
-    + + + +
   - +
+
+ + + + + + +
Index: lams_tool_forum/web/jsps/learning/message/topicview.jsp =================================================================== diff -u -rc077bb71b49a314301b3d6e63f70e41c1649f039 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/message/topicview.jsp (.../topicview.jsp) (revision c077bb71b49a314301b3d6e63f70e41c1649f039) +++ lams_tool_forum/web/jsps/learning/message/topicview.jsp (.../topicview.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,6 +1,4 @@
- -
@@ -12,9 +10,7 @@ - - - + @@ -24,11 +20,13 @@ - - - - - - + + + + - + + + @@ -39,9 +37,7 @@
- - - +
@@ -52,9 +48,7 @@ - - - + @@ -70,47 +64,41 @@ - - - - + + - - - - + +
- - - - - - + + + + + + - - + + - + - - - - + + Index: lams_tool_forum/web/jsps/learning/viewforum.jsp =================================================================== diff -u -rb648e82f0ebdc0178aec9d47c90209b4816c0584 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/viewforum.jsp (.../viewforum.jsp) (revision b648e82f0ebdc0178aec9d47c90209b4816c0584) +++ lams_tool_forum/web/jsps/learning/viewforum.jsp (.../viewforum.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,26 +1,30 @@ -<%@ include file="/includes/taglibs.jsp" %> - - +<%@ include file="/includes/taglibs.jsp"%> +
- <%@ include file="/jsps/learning/message/topiclist.jsp" %> + <%@ include file="/jsps/learning/message/topiclist.jsp"%> + +
+ + + + + + + + + + + + + + + + + + + + + + +
-
- - - - - - - - - - - - - - - - - - - \ No newline at end of file Index: lams_tool_forum/web/jsps/learning/viewtopic.jsp =================================================================== diff -u -r5cf73c3c3892579e89ad206d4d04c97bda7fd949 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/learning/viewtopic.jsp (.../viewtopic.jsp) (revision 5cf73c3c3892579e89ad206d4d04c97bda7fd949) +++ lams_tool_forum/web/jsps/learning/viewtopic.jsp (.../viewtopic.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,11 +1,12 @@ -<%@ include file="/includes/taglibs.jsp" %> +<%@ include file="/common/taglibs.jsp"%> - + - - - +
+ + -
-<%@ include file="/jsps/learning/message/topicview.jsp" %> +

+ +<%@ include file="/jsps/learning/message/topicview.jsp"%> Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/message/topiceditform.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/message/topicform.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/message/topiclist.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/message/topicreplyform.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/message/topicview.jsp'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/monitoring/contentuserlist.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_forum/web/jsps/monitoring/editactivity.jsp =================================================================== diff -u -r71a37d456ee2d1d277774c125ac645ef7f06fa00 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/editactivity.jsp (.../editactivity.jsp) (revision 71a37d456ee2d1d277774c125ac645ef7f06fa00) +++ lams_tool_forum/web/jsps/monitoring/editactivity.jsp (.../editactivity.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -36,7 +36,7 @@ - +

Index: lams_tool_forum/web/jsps/monitoring/header.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/header.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/header.jsp (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -0,0 +1,26 @@ +<%@ include file="/includes/taglibs.jsp"%> + + + + + + + + \ No newline at end of file Index: lams_tool_forum/web/jsps/monitoring/message/topicview.jsp =================================================================== diff -u -rcaa9a3e6d7c7a51d0852c6b350f05ee2a7d3fbab -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/message/topicview.jsp (.../topicview.jsp) (revision caa9a3e6d7c7a51d0852c6b350f05ee2a7d3fbab) +++ lams_tool_forum/web/jsps/monitoring/message/topicview.jsp (.../topicview.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -15,13 +15,13 @@ - +
- +
Index: lams_tool_forum/web/jsps/monitoring/monitoring.jsp =================================================================== diff -u -r907a7ec20d8251fde30699bc3b52d64ed9071ea4 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/monitoring.jsp (.../monitoring.jsp) (revision 907a7ec20d8251fde30699bc3b52d64ed9071ea4) +++ lams_tool_forum/web/jsps/monitoring/monitoring.jsp (.../monitoring.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,16 +1,16 @@ -<%@ include file="/includes/taglibs.jsp"%> +<%@ include file="/common/taglibs.jsp"%> - - - - - - - - -
- - - - -
+ + + + + + + + +
+ + + + +
Index: lams_tool_forum/web/jsps/monitoring/summary.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/summary.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/summary.jsp (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -0,0 +1,90 @@ +<%@ include file="/includes/taglibs.jsp"%> + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ : + +
+ + + + + + + + + + + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + +
Fisheye: Tag 6852794f79069c9b70ee194f74677323d0bf14b7 refers to a dead (removed) revision in file `lams_tool_forum/web/jsps/monitoring/tabmenu.jsp'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_forum/web/jsps/monitoring/updatemarks.jsp =================================================================== diff -u -r907a7ec20d8251fde30699bc3b52d64ed9071ea4 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/updatemarks.jsp (.../updatemarks.jsp) (revision 907a7ec20d8251fde30699bc3b52d64ed9071ea4) +++ lams_tool_forum/web/jsps/monitoring/updatemarks.jsp (.../updatemarks.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,71 +1,76 @@ -<%@ include file="/includes/taglibs.jsp" %> - +<%@ include file="/includes/taglibs.jsp"%> - -" /> - - , -

- - - - - - - - -
- - - - - - - - - "> - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - + + " /> + , +

+
: - -
: - - - -
- -
- " /> -
+ + + + + + + +
+ + + + + + + + + "> + + + + + + + + +
+ + + + + + + + + + + + + + + + + + + + -
+ * + : + + + + +
+ + : + + + + + + +
+ +
+ " style="width:120px" class="buttonStyle" /> +
+
Index: lams_tool_forum/web/jsps/monitoring/usermarklist.jsp =================================================================== diff -u -r0cfeb3255c7e2a66440d8e49efe6cef75a13f053 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/usermarklist.jsp (.../usermarklist.jsp) (revision 0cfeb3255c7e2a66440d8e49efe6cef75a13f053) +++ lams_tool_forum/web/jsps/monitoring/usermarklist.jsp (.../usermarklist.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,76 +1,87 @@ -<%@ include file="/includes/taglibs.jsp" %> - - - - , - - -

- - - - - - - - - - - - - - - - - - - +<%@ include file="/common/taglibs.jsp"%> + + , +

+
- - - - - - - - - "> - - - - - - - - -
: - - - - - - - - -
: - - - - - - - - -
+ + + + + + + + + + + + + + + + + + + + + + + - -
+
+ +
+
+ + + + + + + + + "> + + + + + + + + +
+ + : + + + + + + + + + +
+ + : + + + + + + + + + +
-
- - > - > - > - "/> - +
+ + > + > + > + " style="width:120px" class="buttonStyle" /> +
+
+ Index: lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp =================================================================== diff -u -r0cfeb3255c7e2a66440d8e49efe6cef75a13f053 -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp (.../viewallmarks.jsp) (revision 0cfeb3255c7e2a66440d8e49efe6cef75a13f053) +++ lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp (.../viewallmarks.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,29 +1,40 @@ -<%@ include file="/includes/taglibs.jsp" %> - +<%@ include file="/includes/taglibs.jsp"%> - - - - - - -

- - -

- - - +
- , - , - -
+ + + + + + + + + + +

+ + +

+ + + @@ -33,55 +44,61 @@ - - - + - + + - - + - + -
+
+ +
+
+ + + , + + , + +
- - + + - + - +
: - - - - - - - - +
+ + :
+ + + + + + + + +
: - - - - - - - - + + + : + + + + + + + + +
- > - > - > - "/> + > + > + > + " style="width:120px" class="buttonStyle" />
+ Index: lams_tool_forum/web/jsps/monitoring/viewtopic.jsp =================================================================== diff -u -rcaa9a3e6d7c7a51d0852c6b350f05ee2a7d3fbab -r6852794f79069c9b70ee194f74677323d0bf14b7 --- lams_tool_forum/web/jsps/monitoring/viewtopic.jsp (.../viewtopic.jsp) (revision caa9a3e6d7c7a51d0852c6b350f05ee2a7d3fbab) +++ lams_tool_forum/web/jsps/monitoring/viewtopic.jsp (.../viewtopic.jsp) (revision 6852794f79069c9b70ee194f74677323d0bf14b7) @@ -1,8 +1,7 @@ -<%@ include file="/includes/taglibs.jsp" %> - +<%@ include file="/common/taglibs.jsp"%>
- <%@ include file="message/topicview.jsp" %> -
-close + <%@ include file="message/topicview.jsp"%> +
+ close