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.41 -r1.42 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java 17 Sep 2006 06:22:30 -0000 1.41 +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/util/ForumConstants.java 29 Sep 2006 06:11:18 -0000 1.42 @@ -30,6 +30,9 @@ * Time: 10:33:00 */ public interface ForumConstants { + public static final String TOOL_SIGNATURE = "lafrum11"; + public static final String TOOL_CONTENT_HANDLER_NAME = "forumToolContentHandler"; + //See LDEV652 // For old style (Fiona's description): The oldest topic is at the top, does not depends the reply date etc. @@ -40,8 +43,6 @@ public static final int COMPLETED = 1; public static final int SESSION_STATUS_FINISHED = 1; - public static final String TOOL_SIGNATURE = "lafrum11"; - public final static int MAX_FILE_SIZE = 250 * 1000; public final static String FORUM_SERVICE = "forumService"; @@ -110,6 +111,7 @@ public static final String ATTR_REFLECTION_INSTRUCTION = "reflectInstructions"; + } Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/ExportServlet.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/ExportServlet.java,v diff -u -r1.10 -r1.11 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/ExportServlet.java 17 Sep 2006 06:22:30 -0000 1.10 +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/ExportServlet.java 29 Sep 2006 06:11:18 -0000 1.11 @@ -223,7 +223,7 @@ private ForumToolContentHandler getToolContentHandler() { if ( handler == null ) { WebApplicationContext wac = WebApplicationContextUtils.getRequiredWebApplicationContext(this.getServletContext()); - handler = (ForumToolContentHandler) wac.getBean("forumToolContentHandler"); + handler = (ForumToolContentHandler) wac.getBean(ForumConstants.TOOL_CONTENT_HANDLER_NAME); } return handler; } Index: lams_tool_forum/web/WEB-INF/tags/FCKEditor.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/WEB-INF/tags/Attic/FCKEditor.tag,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/WEB-INF/tags/FCKEditor.tag 31 Aug 2006 07:51:15 -0000 1.1 +++ lams_tool_forum/web/WEB-INF/tags/FCKEditor.tag 29 Sep 2006 06:11:18 -0000 1.2 @@ -5,7 +5,7 @@ <%@ attribute name="id" required="true" rtexprvalue="true"%> <%@ attribute name="value" required="true" rtexprvalue="true"%> <%@ attribute name="toolbarSet" required="false" rtexprvalue="true"%> -<%@ attribute name="contentFolderID" required="true" rtexprvalue="true"%> +<%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> Index: lams_tool_forum/web/jsps/authoring/advance.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/advance.jsp,v diff -u -r1.17 -r1.18 --- lams_tool_forum/web/jsps/authoring/advance.jsp 30 Aug 2006 06:37:40 -0000 1.17 +++ lams_tool_forum/web/jsps/authoring/advance.jsp 29 Sep 2006 06:11:18 -0000 1.18 @@ -50,7 +50,7 @@ - + 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.25 -r1.26 --- lams_tool_forum/web/jsps/authoring/message/create.jsp 28 Sep 2006 23:30:18 -0000 1.25 +++ lams_tool_forum/web/jsps/authoring/message/create.jsp 29 Sep 2006 06:11:18 -0000 1.26 @@ -24,16 +24,7 @@ *
- - - + 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.13 -r1.14 --- lams_tool_forum/web/jsps/authoring/message/edit.jsp 28 Sep 2006 23:30:18 -0000 1.13 +++ lams_tool_forum/web/jsps/authoring/message/edit.jsp 29 Sep 2006 06:11:18 -0000 1.14 @@ -33,18 +33,7 @@ * - - - - - + Index: lams_tool_forum/web/jsps/learning/notebook.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/notebook.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_forum/web/jsps/learning/notebook.jsp 28 Sep 2006 23:30:18 -0000 1.2 +++ lams_tool_forum/web/jsps/learning/notebook.jsp 29 Sep 2006 06:11:18 -0000 1.3 @@ -19,13 +19,13 @@ - ${sessionMap.reflectInstructions} + - + 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.8 -r1.9 --- lams_tool_forum/web/jsps/learning/message/bodyarea.jsp 22 Aug 2006 04:50:35 -0000 1.8 +++ lams_tool_forum/web/jsps/learning/message/bodyarea.jsp 29 Sep 2006 06:11:18 -0000 1.9 @@ -4,19 +4,12 @@ - - - - + + <%-- Does not user general tag becuase this field need keep compatible with FCKEditor's content --%>
: Index: lams_tool_forum/web/jsps/monitoring/notebook.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/Attic/notebook.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_forum/web/jsps/monitoring/notebook.jsp 30 Aug 2006 06:37:40 -0000 1.1 +++ lams_tool_forum/web/jsps/monitoring/notebook.jsp 29 Sep 2006 06:11:18 -0000 1.2 @@ -1,25 +1,17 @@ <%@ include file="/common/taglibs.jsp"%> - + ${userDTO.fullName} +
- + - - - Index: lams_tool_larsrc/web/WEB-INF/tags/FCKEditor.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/WEB-INF/tags/Attic/FCKEditor.tag,v diff -u -r1.1 -r1.2 --- lams_tool_larsrc/web/WEB-INF/tags/FCKEditor.tag 1 Sep 2006 02:47:00 -0000 1.1 +++ lams_tool_larsrc/web/WEB-INF/tags/FCKEditor.tag 29 Sep 2006 06:11:15 -0000 1.2 @@ -5,7 +5,7 @@ <%@ attribute name="id" required="true" rtexprvalue="true"%> <%@ attribute name="value" required="true" rtexprvalue="true"%> <%@ attribute name="toolbarSet" required="false" rtexprvalue="true"%> -<%@ attribute name="contentFolderID" required="true" rtexprvalue="true"%> +<%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> Index: lams_tool_larsrc/web/pages/authoring/advance.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/pages/authoring/advance.jsp,v diff -u -r1.8 -r1.9 --- lams_tool_larsrc/web/pages/authoring/advance.jsp 31 Aug 2006 06:39:02 -0000 1.8 +++ lams_tool_larsrc/web/pages/authoring/advance.jsp 29 Sep 2006 06:11:15 -0000 1.9 @@ -60,7 +60,7 @@
-

- ${userDTO.fullName} -

-
+ +
-

- ${userDTO.reflectInstrctions} -

-
- + 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.14 -r1.15 --- lams_tool_forum/web/jsps/monitoring/updatemarks.jsp 24 Aug 2006 00:05:40 -0000 1.14 +++ lams_tool_forum/web/jsps/monitoring/updatemarks.jsp 29 Sep 2006 06:11:18 -0000 1.15 @@ -58,18 +58,10 @@
-
- - - +
- +
\ No newline at end of file Index: lams_tool_larsrc/web/pages/learning/addfile.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/pages/learning/addfile.jsp,v diff -u -r1.9 -r1.10 --- lams_tool_larsrc/web/pages/learning/addfile.jsp 28 Sep 2006 23:31:18 -0000 1.9 +++ lams_tool_larsrc/web/pages/learning/addfile.jsp 29 Sep 2006 06:11:15 -0000 1.10 @@ -35,7 +35,7 @@
- + Index: lams_tool_larsrc/web/pages/learning/addurl.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/pages/learning/addurl.jsp,v diff -u -r1.11 -r1.12 --- lams_tool_larsrc/web/pages/learning/addurl.jsp 28 Sep 2006 23:31:18 -0000 1.11 +++ lams_tool_larsrc/web/pages/learning/addurl.jsp 29 Sep 2006 06:11:15 -0000 1.12 @@ -43,7 +43,7 @@
- + Index: lams_tool_larsrc/web/pages/learning/notebook.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/pages/learning/notebook.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_larsrc/web/pages/learning/notebook.jsp 28 Sep 2006 23:31:18 -0000 1.3 +++ lams_tool_larsrc/web/pages/learning/notebook.jsp 29 Sep 2006 06:11:15 -0000 1.4 @@ -28,13 +28,13 @@ - ${sessionMap.reflectInstructions} + - + Index: lams_tool_larsrc/web/pages/monitoring/notebook.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_larsrc/web/pages/monitoring/Attic/notebook.jsp,v diff -u -r1.3 -r1.4 --- lams_tool_larsrc/web/pages/monitoring/notebook.jsp 28 Sep 2006 23:31:18 -0000 1.3 +++ lams_tool_larsrc/web/pages/monitoring/notebook.jsp 29 Sep 2006 06:11:15 -0000 1.4 @@ -8,31 +8,23 @@ <%@ include file="/common/header.jsp"%> -

- -

- +
- +

+ +

+ ${userDTO.fullName}

+
- + - - -
-

- ${userDTO.fullName} -

-
+ +
-

- ${userDTO.reflectInstrctions} -

-
- + Index: lams_tool_sbmt/web/WEB-INF/tags/FCKEditor.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/WEB-INF/tags/Attic/FCKEditor.tag,v diff -u -r1.1 -r1.2 --- lams_tool_sbmt/web/WEB-INF/tags/FCKEditor.tag 31 Aug 2006 05:48:25 -0000 1.1 +++ lams_tool_sbmt/web/WEB-INF/tags/FCKEditor.tag 29 Sep 2006 06:11:19 -0000 1.2 @@ -5,7 +5,7 @@ <%@ attribute name="id" required="true" rtexprvalue="true"%> <%@ attribute name="value" required="true" rtexprvalue="true"%> <%@ attribute name="toolbarSet" required="false" rtexprvalue="true"%> -<%@ attribute name="contentFolderID" required="true" rtexprvalue="true"%> +<%@ attribute name="contentFolderID" required="false" rtexprvalue="true"%> Index: lams_tool_sbmt/web/authoring/advance.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/authoring/advance.jsp,v diff -u -r1.8 -r1.9 --- lams_tool_sbmt/web/authoring/advance.jsp 5 Sep 2006 04:05:23 -0000 1.8 +++ lams_tool_sbmt/web/authoring/advance.jsp 29 Sep 2006 06:11:19 -0000 1.9 @@ -33,7 +33,7 @@
- +
Index: lams_tool_sbmt/web/learner/notebook.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/learner/notebook.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_sbmt/web/learner/notebook.jsp 28 Sep 2006 23:32:05 -0000 1.2 +++ lams_tool_sbmt/web/learner/notebook.jsp 29 Sep 2006 06:11:19 -0000 1.3 @@ -28,13 +28,13 @@ - ${sessionMap.reflectInstructions} + - + Index: lams_tool_sbmt/web/monitoring/notebook.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/monitoring/notebook.jsp,v diff -u -r1.4 -r1.5 --- lams_tool_sbmt/web/monitoring/notebook.jsp 28 Sep 2006 23:32:05 -0000 1.4 +++ lams_tool_sbmt/web/monitoring/notebook.jsp 29 Sep 2006 06:11:19 -0000 1.5 @@ -4,37 +4,28 @@ - <fmt:message key="label.learning.title" /> + <fmt:message key="page.title.monitoring.view.reflection" /> <%@ include file="/common/header.jsp"%> + +

- -
- + ${userDTO.firstName} ${userDTO.lastName}

+
- + - - -
-

- ${userDTO.firstName} - ${userDTO.lastName} -

-
+ +
-

- ${userDTO.reflectInstrctions} -

-
- + Index: lams_tool_sbmt/web/monitoring/mark/updatemark.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_sbmt/web/monitoring/mark/updatemark.jsp,v diff -u -r1.4 -r1.5 --- lams_tool_sbmt/web/monitoring/mark/updatemark.jsp 28 Sep 2006 23:32:05 -0000 1.4 +++ lams_tool_sbmt/web/monitoring/mark/updatemark.jsp 29 Sep 2006 06:11:19 -0000 1.5 @@ -41,18 +41,10 @@
-
- - - +