Index: lams_tool_forum/conf/language/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/conf/language/Attic/ApplicationResources.properties,v diff -u -r1.5 -r1.6 --- lams_tool_forum/conf/language/ApplicationResources.properties 8 Jun 2006 07:37:34 -0000 1.5 +++ lams_tool_forum/conf/language/ApplicationResources.properties 9 Jun 2006 06:16:38 -0000 1.6 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java,v diff -u -r1.25 -r1.26 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java 18 May 2006 01:57:58 -0000 1.25 +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java 9 Jun 2006 06:16:40 -0000 1.26 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java,v diff -u -r1.30 -r1.31 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java 8 Jun 2006 07:37:33 -0000 1.30 +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/LearningAction.java 9 Jun 2006 06:16:39 -0000 1.31 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/WEB-INF/struts/Attic/tiles-defs.xml,v diff -u -r1.24 -r1.25 --- lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml 9 Jun 2006 01:58:45 -0000 1.24 +++ lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml 9 Jun 2006 06:16:40 -0000 1.25 @@ -25,23 +25,15 @@ - - - - - - - - @@ -57,29 +49,10 @@ - + - @@ -119,16 +92,14 @@ - - + - - + Index: lams_tool_forum/web/common/header.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/common/header.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/common/header.jsp 8 Jun 2006 07:37:32 -0000 1.1 +++ lams_tool_forum/web/common/header.jsp 9 Jun 2006 06:16:38 -0000 1.2 @@ -27,7 +27,8 @@ + +<%@ include file="/common/fckeditorheader.jsp"%> - Fisheye: Tag 1.8 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 1.4 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 1.17 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/layout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/includes/layout.jsp,v diff -u -r1.11 -r1.12 --- lams_tool_forum/web/includes/layout.jsp 9 Jun 2006 02:26:33 -0000 1.11 +++ lams_tool_forum/web/includes/layout.jsp 9 Jun 2006 06:16:38 -0000 1.12 @@ -9,7 +9,7 @@ <bean:message key="activity.title" /> - + <%@ include file="/common/header.jsp"%> @@ -22,6 +22,5 @@ - Fisheye: Tag 1.8 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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/includes/tablayout.jsp,v diff -u -r1.5 -r1.6 --- lams_tool_forum/web/includes/tablayout.jsp 9 Jun 2006 00:35:07 -0000 1.5 +++ lams_tool_forum/web/includes/tablayout.jsp 9 Jun 2006 06:16:38 -0000 1.6 @@ -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/includes/javascript/forum.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/includes/javascript/Attic/forum.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/web/includes/javascript/forum.js 9 Jun 2006 06:16:40 -0000 1.1 @@ -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/jsps/authoring/basic.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/basic.jsp,v diff -u -r1.17 -r1.18 --- lams_tool_forum/web/jsps/authoring/basic.jsp 9 Jun 2006 01:58:45 -0000 1.17 +++ lams_tool_forum/web/jsps/authoring/basic.jsp 9 Jun 2006 06:16:38 -0000 1.18 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/header.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/web/jsps/authoring/header.jsp 9 Jun 2006 06:16:38 -0000 1.1 @@ -0,0 +1,43 @@ +<%@ include file="/common/taglibs.jsp"%> + + + + + + + Index: lams_tool_forum/web/jsps/authoring/message/create.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/message/create.jsp,v diff -u -r1.16 -r1.17 --- lams_tool_forum/web/jsps/authoring/message/create.jsp 8 Jun 2006 07:37:32 -0000 1.16 +++ lams_tool_forum/web/jsps/authoring/message/create.jsp 9 Jun 2006 06:16:38 -0000 1.17 @@ -14,20 +14,63 @@ } success(); - + + Index: lams_tool_forum/web/jsps/authoring/message/edit.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/message/edit.jsp,v diff -u -r1.6 -r1.7 --- lams_tool_forum/web/jsps/authoring/message/edit.jsp 9 Jun 2006 01:58:46 -0000 1.6 +++ lams_tool_forum/web/jsps/authoring/message/edit.jsp 9 Jun 2006 06:16:38 -0000 1.7 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/message/topiclist.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/web/jsps/authoring/message/topiclist.jsp 9 Jun 2006 06:16:38 -0000 1.1 @@ -0,0 +1,42 @@ +<%@ include file="/includes/taglibs.jsp" %> + +
+
+
+ + + + + + + + + + + + + + + + + +
+ + + + + + + + + "> + + + + + + +
+
+
+
Index: lams_tool_forum/web/jsps/authoring/message/view.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/message/Attic/view.jsp,v diff -u -r1.5 -r1.6 --- lams_tool_forum/web/jsps/authoring/message/view.jsp 8 Jun 2006 07:37:32 -0000 1.5 +++ lams_tool_forum/web/jsps/authoring/message/view.jsp 9 Jun 2006 06:16:38 -0000 1.6 @@ -24,7 +24,67 @@
- <%@ include file="/jsps/message/topicview.jsp"%> +
+ +
+
+
+ + + + + + + + + + + + + + + + +
+ +
+ + + - + + +
+
+ +
+
+ + + + + + +
+
+ + + + + + + + + + + + + + + +
+
+
+
Index: lams_tool_forum/web/jsps/export/exportportfolio.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/export/exportportfolio.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/jsps/export/exportportfolio.jsp 8 Dec 2005 03:04:46 -0000 1.1 +++ lams_tool_forum/web/jsps/export/exportportfolio.jsp 9 Jun 2006 06:16:40 -0000 1.2 @@ -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/viewforum.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/viewforum.jsp,v diff -u -r1.4 -r1.5 --- lams_tool_forum/web/jsps/learning/viewforum.jsp 18 Jan 2006 23:23:35 -0000 1.4 +++ lams_tool_forum/web/jsps/learning/viewforum.jsp 9 Jun 2006 06:16:38 -0000 1.5 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/viewtopic.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_forum/web/jsps/learning/viewtopic.jsp 11 Nov 2005 00:33:38 -0000 1.3 +++ lams_tool_forum/web/jsps/learning/viewtopic.jsp 9 Jun 2006 06:16:38 -0000 1.4 @@ -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"%> Index: lams_tool_forum/web/jsps/learning/message/bodyarea.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/bodyarea.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_forum/web/jsps/learning/message/bodyarea.jsp 16 Jan 2006 00:00:49 -0000 1.2 +++ lams_tool_forum/web/jsps/learning/message/bodyarea.jsp 9 Jun 2006 06:16:39 -0000 1.3 @@ -1,36 +1,43 @@ - * - - - - - - - - -
- - - -
-
-
\ No newline at end of file + + +
+ Index: lams_tool_forum/web/jsps/learning/message/topiceditform.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topiceditform.jsp,v diff -u -r1.5 -r1.6 --- lams_tool_forum/web/jsps/learning/message/topiceditform.jsp 13 Jan 2006 06:16:44 -0000 1.5 +++ lams_tool_forum/web/jsps/learning/message/topiceditform.jsp 9 Jun 2006 06:16:39 -0000 1.6 @@ -1,49 +1,58 @@ - - +
- - + + - - + + - - + -
* - + * + +
+ +
<%@include file="bodyarea.jsp"%> + * + + <%@include file="bodyarea.jsp"%> +
  + - + - - - + - +   - - - + - + +
   - + +
+ + + + + + +
-
Index: lams_tool_forum/web/jsps/learning/message/topicform.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topicform.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_forum/web/jsps/learning/message/topicform.jsp 13 Jan 2006 06:16:44 -0000 1.3 +++ lams_tool_forum/web/jsps/learning/message/topicform.jsp 9 Jun 2006 06:16:39 -0000 1.4 @@ -1,28 +1,46 @@ - +
- - + + - - + + - + - + +
* - + * + + +
+ +
<%@include file="bodyarea.jsp"%> + * + + <%@include file="bodyarea.jsp"%> +
-    + + + +
   - +
+
+ + + + + + +
Index: lams_tool_forum/web/jsps/learning/message/topiclist.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topiclist.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_forum/web/jsps/learning/message/topiclist.jsp 11 Nov 2005 00:33:39 -0000 1.2 +++ lams_tool_forum/web/jsps/learning/message/topiclist.jsp 9 Jun 2006 06:16:39 -0000 1.3 @@ -14,7 +14,7 @@ - + Index: lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp 13 Jan 2006 06:16:44 -0000 1.3 +++ lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp 9 Jun 2006 06:16:39 -0000 1.4 @@ -1,26 +1,43 @@ - - + + - - + + - + - + +
* - + * + + + +
<%@include file="bodyarea.jsp"%> + * + + <%@include file="bodyarea.jsp"%> +
-    + + + +
   - +
+
+ + + + + + +
Index: lams_tool_forum/web/jsps/learning/message/topicview.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topicview.jsp,v diff -u -r1.7 -r1.8 --- lams_tool_forum/web/jsps/learning/message/topicview.jsp 8 Mar 2006 23:46:06 -0000 1.7 +++ lams_tool_forum/web/jsps/learning/message/topicview.jsp 9 Jun 2006 06:16:39 -0000 1.8 @@ -1,6 +1,4 @@

- -
@@ -12,9 +10,7 @@ - - - + @@ -24,11 +20,13 @@ - - - - - - + + + + - + + + @@ -39,9 +37,7 @@
- - - +
@@ -52,9 +48,7 @@ - - - + @@ -70,47 +64,41 @@ - - - - + + - - - - + +
- - - - - - + + + + + + - - + + - + - - - - + + Fisheye: Tag 1.8 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 1.8 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 1.12 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 1.3 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 1.10 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 1.11 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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/editactivity.jsp,v diff -u -r1.10 -r1.11 --- lams_tool_forum/web/jsps/monitoring/editactivity.jsp 8 Jun 2006 07:37:32 -0000 1.10 +++ lams_tool_forum/web/jsps/monitoring/editactivity.jsp 9 Jun 2006 06:16:38 -0000 1.11 @@ -36,7 +36,7 @@ - +
Index: lams_tool_forum/web/jsps/monitoring/header.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/header.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/web/jsps/monitoring/header.jsp 9 Jun 2006 06:16:38 -0000 1.1 @@ -0,0 +1,26 @@ +<%@ include file="/includes/taglibs.jsp"%> + + + + + + + + \ No newline at end of file Index: lams_tool_forum/web/jsps/monitoring/monitoring.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/monitoring.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/jsps/monitoring/monitoring.jsp 16 Mar 2006 03:23:54 -0000 1.1 +++ lams_tool_forum/web/jsps/monitoring/monitoring.jsp 9 Jun 2006 06:16:38 -0000 1.2 @@ -1,16 +1,16 @@ -<%@ include file="/includes/taglibs.jsp"%> +<%@ include file="/common/taglibs.jsp"%> - - - - - - - - -
- - - - -
+ + + + + + + + +
+ + + + +
Index: lams_tool_forum/web/jsps/monitoring/summary.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/summary.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_forum/web/jsps/monitoring/summary.jsp 9 Jun 2006 06:16:38 -0000 1.1 @@ -0,0 +1,90 @@ +<%@ include file="/includes/taglibs.jsp"%> + + +
+ + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ : + +
+ + + + + + + + + + + + +
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + +
+ +
+
+ + + +
Fisheye: Tag 1.5 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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/updatemarks.jsp,v diff -u -r1.7 -r1.8 --- lams_tool_forum/web/jsps/monitoring/updatemarks.jsp 16 Mar 2006 03:23:54 -0000 1.7 +++ lams_tool_forum/web/jsps/monitoring/updatemarks.jsp 9 Jun 2006 06:16:38 -0000 1.8 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/Attic/usermarklist.jsp,v diff -u -r1.5 -r1.6 --- lams_tool_forum/web/jsps/monitoring/usermarklist.jsp 6 Mar 2006 05:23:14 -0000 1.5 +++ lams_tool_forum/web/jsps/monitoring/usermarklist.jsp 9 Jun 2006 06:16:38 -0000 1.6 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/Attic/viewallmarks.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp 6 Mar 2006 05:23:14 -0000 1.3 +++ lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp 9 Jun 2006 06:16:38 -0000 1.4 @@ -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 =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/Attic/viewtopic.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/jsps/monitoring/viewtopic.jsp 24 Nov 2005 06:25:24 -0000 1.1 +++ lams_tool_forum/web/jsps/monitoring/viewtopic.jsp 9 Jun 2006 06:16:38 -0000 1.2 @@ -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
Index: lams_tool_forum/web/jsps/monitoring/message/topicview.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/message/Attic/topicview.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/jsps/monitoring/message/topicview.jsp 24 Nov 2005 06:25:24 -0000 1.1 +++ lams_tool_forum/web/jsps/monitoring/message/topicview.jsp 9 Jun 2006 06:16:40 -0000 1.2 @@ -15,13 +15,13 @@ - +
- +