Index: lams_tool_forum/conf/hibernate/mappings/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml =================================================================== diff -u --- lams_tool_forum/conf/hibernate/mappings/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml (revision 0) +++ lams_tool_forum/conf/hibernate/mappings/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_tool_forum/conf/hibernate/mappings/org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml =================================================================== diff -u -rf88a2a4d76c8b1b50ef5a09a64c0564cc929cf11 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/conf/hibernate/mappings/org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml (.../ForumUser.hbm.xml) (revision f88a2a4d76c8b1b50ef5a09a64c0564cc929cf11) +++ lams_tool_forum/conf/hibernate/mappings/org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml (.../ForumUser.hbm.xml) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -52,6 +52,26 @@ length="255" /> + + + + - + @@ -201,7 +201,48 @@ parameter="finish"> - + + + + + + + + + + + + + + + + + + + + Index: lams_tool_forum/conf/xdoclet/struts-forms.xml =================================================================== diff -u -re2d5d907aabab2d2bc94f232285ff086fb11ed37 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/conf/xdoclet/struts-forms.xml (.../struts-forms.xml) (revision e2d5d907aabab2d2bc94f232285ff086fb11ed37) +++ lams_tool_forum/conf/xdoclet/struts-forms.xml (.../struts-forms.xml) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -1,3 +1,2 @@ - - + \ No newline at end of file Index: lams_tool_forum/db/model/forum.clay =================================================================== diff -u -r5cf73c3c3892579e89ad206d4d04c97bda7fd949 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/db/model/forum.clay (.../forum.clay) (revision 5cf73c3c3892579e89ad206d4d04c97bda7fd949) +++ lams_tool_forum/db/model/forum.clay (.../forum.clay) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -14,7 +14,7 @@ - + @@ -140,7 +140,7 @@
- + @@ -226,25 +226,22 @@ - + - - - + + - + - - - + + - + - - - + + @@ -332,7 +329,7 @@
- + @@ -374,23 +371,72 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + +
- + @@ -625,7 +671,7 @@
- + @@ -716,9 +762,65 @@
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
- + Index: lams_tool_forum/db/sql/create_lams_tool_forum.sql =================================================================== diff -u -r698a7ada57ba2c64fac842ee39355e01cd7d3870 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/db/sql/create_lams_tool_forum.sql (.../create_lams_tool_forum.sql) (revision 698a7ada57ba2c64fac842ee39355e01cd7d3870) +++ lams_tool_forum/db/sql/create_lams_tool_forum.sql (.../create_lams_tool_forum.sql) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -25,9 +25,9 @@ allow_anonym bit, run_offline bit, lock_on_finished bit, - instructions varchar(255), - online_instructions varchar(255), - offline_instructions varchar(255), + instructions text, + online_instructions text, + offline_instructions text, content_in_use bit, define_later bit, content_id bigint unique, @@ -40,6 +40,8 @@ user_id bigint, last_name varchar(255), first_name varchar(255), + session_id bigint, + report_id bigint, primary key (uid) ); create table tl_lafrum11_message ( @@ -67,6 +69,13 @@ message_level smallint, primary key (uid) ); +create table tl_lafrum11_report ( + uid bigint not null auto_increment, + comment text, + release_date datetime, + mark integer, + primary key (uid) +); create table tl_lafrum11_tool_session ( uid bigint not null auto_increment, session_end_date datetime, @@ -78,6 +87,8 @@ ); alter table tl_lafrum11_attachment add index FK389AD9A2FE939F2A (message_uid), add constraint FK389AD9A2FE939F2A foreign key (message_uid) references tl_lafrum11_message (uid); alter table tl_lafrum11_attachment add index FK389AD9A2131CE31E (forum_uid), add constraint FK389AD9A2131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); +alter table tl_lafrum11_forum_user add index FK7B83A4A85F0116B6 (session_id), add constraint FK7B83A4A85F0116B6 foreign key (session_id) references tl_lafrum11_tool_session (uid); +alter table tl_lafrum11_forum_user add index FK7B83A4A897F0DB46 (report_id), add constraint FK7B83A4A897F0DB46 foreign key (report_id) references tl_lafrum11_report (uid); alter table tl_lafrum11_message add index FK4A6067E8E42F4351 (create_by), add constraint FK4A6067E8E42F4351 foreign key (create_by) references tl_lafrum11_forum_user (uid); alter table tl_lafrum11_message add index FK4A6067E8131CE31E (forum_uid), add constraint FK4A6067E8131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); alter table tl_lafrum11_message add index FK4A6067E824089E4D (parent_uid), add constraint FK4A6067E824089E4D foreign key (parent_uid) references tl_lafrum11_message (uid); Index: lams_tool_forum/db/sql/table-schema.sql =================================================================== diff -u -r5cf73c3c3892579e89ad206d4d04c97bda7fd949 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/db/sql/table-schema.sql (.../table-schema.sql) (revision 5cf73c3c3892579e89ad206d4d04c97bda7fd949) +++ lams_tool_forum/db/sql/table-schema.sql (.../table-schema.sql) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -1,5 +1,7 @@ alter table tl_lafrum11_attachment drop foreign key FK389AD9A2FE939F2A; alter table tl_lafrum11_attachment drop foreign key FK389AD9A2131CE31E; +alter table tl_lafrum11_forum_user drop foreign key FK7B83A4A85F0116B6; +alter table tl_lafrum11_forum_user drop foreign key FK7B83A4A897F0DB46; alter table tl_lafrum11_message drop foreign key FK4A6067E8E42F4351; alter table tl_lafrum11_message drop foreign key FK4A6067E8131CE31E; alter table tl_lafrum11_message drop foreign key FK4A6067E824089E4D; @@ -13,6 +15,7 @@ drop table if exists tl_lafrum11_forum_user; drop table if exists tl_lafrum11_message; drop table if exists tl_lafrum11_message_seq; +drop table if exists tl_lafrum11_report; drop table if exists tl_lafrum11_tool_session; create table tl_lafrum11_attachment ( uid bigint not null auto_increment, @@ -34,9 +37,9 @@ allow_anonym bit, run_offline bit, lock_on_finished bit, - instructions varchar(255), - online_instructions varchar(255), - offline_instructions varchar(255), + instructions text, + online_instructions text, + offline_instructions text, content_in_use bit, define_later bit, content_id bigint unique, @@ -49,6 +52,8 @@ user_id bigint, last_name varchar(255), first_name varchar(255), + session_id bigint, + report_id bigint, primary key (uid) ); create table tl_lafrum11_message ( @@ -76,6 +81,13 @@ message_level smallint, primary key (uid) ); +create table tl_lafrum11_report ( + uid bigint not null auto_increment, + comment text, + release_date datetime, + mark integer, + primary key (uid) +); create table tl_lafrum11_tool_session ( uid bigint not null auto_increment, session_end_date datetime, @@ -87,6 +99,8 @@ ); alter table tl_lafrum11_attachment add index FK389AD9A2FE939F2A (message_uid), add constraint FK389AD9A2FE939F2A foreign key (message_uid) references tl_lafrum11_message (uid); alter table tl_lafrum11_attachment add index FK389AD9A2131CE31E (forum_uid), add constraint FK389AD9A2131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); +alter table tl_lafrum11_forum_user add index FK7B83A4A85F0116B6 (session_id), add constraint FK7B83A4A85F0116B6 foreign key (session_id) references tl_lafrum11_tool_session (uid); +alter table tl_lafrum11_forum_user add index FK7B83A4A897F0DB46 (report_id), add constraint FK7B83A4A897F0DB46 foreign key (report_id) references tl_lafrum11_report (uid); alter table tl_lafrum11_message add index FK4A6067E8E42F4351 (create_by), add constraint FK4A6067E8E42F4351 foreign key (create_by) references tl_lafrum11_forum_user (uid); alter table tl_lafrum11_message add index FK4A6067E8131CE31E (forum_uid), add constraint FK4A6067E8131CE31E foreign key (forum_uid) references tl_lafrum11_forum (uid); alter table tl_lafrum11_message add index FK4A6067E824089E4D (parent_uid), add constraint FK4A6067E824089E4D foreign key (parent_uid) references tl_lafrum11_message (uid); Index: lams_tool_forum/db/sql/tool_insert.sql =================================================================== diff -u -rba321110afa57d72c60af29f234d420fd864bef9 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/db/sql/tool_insert.sql (.../tool_insert.sql) (revision ba321110afa57d72c60af29f234d420fd864bef9) +++ lams_tool_forum/db/sql/tool_insert.sql (.../tool_insert.sql) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -43,9 +43,9 @@ 1, 1, 0, -'tool/lafrum11/learning/viewForum.do', -'tool/lafrum11/authoring/init.do', -'tool/lafrum11/monitoring/listContentUsers.do', +'lams/tool/lafrum11/learning/viewForum.do', +'lams/tool/lafrum11/authoring/init.do', +'lams/tool/lafrum11/monitoring/listContentUsers.do', 'tool/lafrum11/export.do', 'tool/lafrum11/monitor.do', 'tool/lafrum11/contribute.do', Index: lams_tool_forum/src/java/forumApplicationContext.xml =================================================================== diff -u -r7b1c6b460337d9cd62f8350d620d7915eae800b8 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/src/java/forumApplicationContext.xml (.../forumApplicationContext.xml) (revision 7b1c6b460337d9cd62f8350d620d7915eae800b8) +++ lams_tool_forum/src/java/forumApplicationContext.xml (.../forumApplicationContext.xml) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -14,6 +14,7 @@ org/lamsfoundation/lams/tool/forum/persistence/Message.hbm.xml org/lamsfoundation/lams/tool/forum/persistence/Attachment.hbm.xml org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml + org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml org/lamsfoundation/lams/tool/forum/persistence/ForumToolSession.hbm.xml org/lamsfoundation/lams/tool/forum/persistence/MessageSeq.hbm.xml Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/Forum.java =================================================================== diff -u -r6847f3627bbb8393b88988cae6c3cd8ad97f1600 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/Forum.java (.../Forum.java) (revision 6847f3627bbb8393b88988cae6c3cd8ad97f1600) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/Forum.java (.../Forum.java) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -20,6 +20,7 @@ * @hibernate.query name="forumByContentId" query="from Forum forum where forum.contentId=?" */ public class Forum implements Cloneable{ + private static final Logger log = Logger.getLogger(Forum.class); //key Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml =================================================================== diff -u --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml (revision 0) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.hbm.xml (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,60 @@ + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.java =================================================================== diff -u --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.java (revision 0) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumReport.java (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,76 @@ +/* + *Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * + *This program is free software; you can redistribute it and/or modify + *it under the terms of the GNU General Public License as published by + *the Free Software Foundation; either version 2 of the License, or + *(at your option) any later version. + * + *This program is distributed in the hope that it will be useful, + *but WITHOUT ANY WARRANTY; without even the implied warranty of + *MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + *GNU General Public License for more details. + * + *You should have received a copy of the GNU General Public License + *along with this program; if not, write to the Free Software + *Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + *USA + * + *http://www.gnu.org/licenses/gpl.txt + */ +package org.lamsfoundation.lams.tool.forum.persistence; + +import java.util.Date; + +/** + * + * @hibernate.class table="tl_lafrum11_report" + * + */ +public class ForumReport { + + private Long uid; + private int mark; + private String comment; + private Date dateMarksReleased; + /** + * @hibernate.id column="uid" generator-class="native" + */ + public Long getUid() { + return uid; + } + public void setUid(Long uid) { + this.uid = uid; + } + /** + * @hibernate.property column="comment" type="text" + * @return + */ + public String getComment() { + return comment; + } + public void setComment(String comment) { + this.comment = comment; + } + /** + * @hibernate.property column="release_date" + * @return + */ + public Date getDateMarksReleased() { + return dateMarksReleased; + } + public void setDateMarksReleased(Date dateMarksReleased) { + this.dateMarksReleased = dateMarksReleased; + } + /** + * @hibernate.property column="mark" + * @return + */ + public int getMark() { + return mark; + } + public void setMark(int mark) { + this.mark = mark; + } + +} Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumToolSession.java =================================================================== diff -u -r37bc758b9d7d1ba5a285a640e6d58113126f9620 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumToolSession.java (.../ForumToolSession.java) (revision 37bc758b9d7d1ba5a285a640e6d58113126f9620) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumToolSession.java (.../ForumToolSession.java) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -31,7 +31,7 @@ * @version $Revision$ */ public class ForumToolSession implements Cloneable{ - + private static Logger log = Logger.getLogger(ForumToolSession.class); private Long uid; Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumToolSessionDao.java =================================================================== diff -u -r5cf73c3c3892579e89ad206d4d04c97bda7fd949 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumToolSessionDao.java (.../ForumToolSessionDao.java) (revision 5cf73c3c3892579e89ad206d4d04c97bda7fd949) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumToolSessionDao.java (.../ForumToolSessionDao.java) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -27,6 +27,9 @@ public class ForumToolSessionDao extends HibernateDaoSupport { private static final String SQL_QUERY_FIND_BY_SESSION_ID = "from " + ForumToolSession.class.getName() + " where session_id=?"; + private static final String SQL_QUERY_FIND_BY_CONTENT_ID = "select s from " + Forum.class.getName()+ " as f, " + + ForumToolSession.class.getName() + " as s" + + " where f.contentId=? and s.forum.uid=f.uid"; public ForumToolSession getBySessionId(Long sessionId) { List list = this.getHibernateTemplate().find(SQL_QUERY_FIND_BY_SESSION_ID,sessionId); @@ -40,4 +43,9 @@ this.getHibernateTemplate().flush(); } + public List getByContentId(Long contentID) { + List list = this.getHibernateTemplate().find(SQL_QUERY_FIND_BY_CONTENT_ID,contentID); + return list; + } + } Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml =================================================================== diff -u -rf88a2a4d76c8b1b50ef5a09a64c0564cc929cf11 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml (.../ForumUser.hbm.xml) (revision f88a2a4d76c8b1b50ef5a09a64c0564cc929cf11) +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/persistence/ForumUser.hbm.xml (.../ForumUser.hbm.xml) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -52,6 +52,26 @@ length="255" /> + + + + @@ -159,7 +160,7 @@ - + @@ -231,7 +232,46 @@ parameter="finish"> - + + + + + + + + + + + + + + + + + + Index: lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml =================================================================== diff -u -r7e5622f2a1facf741b442bd53556f769b51433b2 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml (.../tiles-defs.xml) (revision 7e5622f2a1facf741b442bd53556f769b51433b2) +++ lams_tool_forum/web/WEB-INF/struts/tiles-defs.xml (.../tiles-defs.xml) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -72,5 +72,12 @@ - + + + + + + + + Index: lams_tool_forum/web/includes/header.jsp =================================================================== diff -u -rdd63636214e3a807dc010aa392ba85e62fb7dee1 -r811003bdaefc92c8f7ddc49a1caaa9116cb8f729 --- lams_tool_forum/web/includes/header.jsp (.../header.jsp) (revision dd63636214e3a807dc010aa392ba85e62fb7dee1) +++ lams_tool_forum/web/includes/header.jsp (.../header.jsp) (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -1,11 +1,14 @@ <%@ include file="/includes/taglibs.jsp" %> -<% - String LAMS_WEB_ROOT="/lams"; -%> + + + + <bean:message key="appName" /> - - + +/css/aqua.css" rel="stylesheet" type="text/css"> + + Index: lams_tool_forum/web/jsps/monitoring/contentuserlist.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/contentuserlist.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/contentuserlist.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,51 @@ +<%@ include file="/includes/taglibs.jsp" %> + + +
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
SESSION ID:
NO USERS AVAILABLE
+ + + + + + + + + + + + + + +
+

+ + Index: lams_tool_forum/web/jsps/monitoring/editactivity.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/editactivity.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/editactivity.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,55 @@ +<%@include file="../sharing/share.jsp" %> +<%@ taglib uri="fck-editor" prefix="FCK"%> + + + + + +Submit Files + + + + + + + + + + +
+

+

+ + + + + + + + + + + + + + + +
: + +
: + + + +
+ + + + + + +
+
+
+ +
\ No newline at end of file Index: lams_tool_forum/web/jsps/monitoring/instructions.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/instructions.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/instructions.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,70 @@ +<%@include file="../sharing/share.jsp" %> + + + + + + Monitoring Instructions + + + + + +

+

+ + + + + + + + + + + + + + + + + + + + + + + +
: + +
: + +
  • + + + + + + +
  • +
    +

    + : + +
    : + +
  • + + + + + + +
    +
    + + + +
    Index: lams_tool_forum/web/jsps/monitoring/showactivity.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/showactivity.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/showactivity.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,45 @@ +<%@include file="../sharing/share.jsp" %> + + + + + Submit Files + + + + + + + + +
    +

    +

    + + + + + + + + + + + + + + + +
    : + +
    : + +
    + + + +
    +
    +
    + +
    \ No newline at end of file Index: lams_tool_forum/web/jsps/monitoring/statistic.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/statistic.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/statistic.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,33 @@ +<%@include file="../sharing/share.jsp" %> + + + + Monitoring Statistic + + + + +

    +
    + + + + + + + + + + + + + + + + + +
    TitleCount
    +
    + +
    + Index: lams_tool_forum/web/jsps/monitoring/success.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/success.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/success.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,5 @@ + + +Success, back to index. + + \ No newline at end of file Index: lams_tool_forum/web/jsps/monitoring/updatemarks.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/updatemarks.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/updatemarks.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,62 @@ +<%@include file="../sharing/share.jsp" %> +<%@ taglib uri="fck-editor" prefix="FCK" %> + + + + + Files Submitted + + + + + + + + Please assign a mark and a comment for the report by + , +

    + + + + + + + + + + +
    File Path:
    File Description:
    Date of Submission:
    + + + + + + + + + + + + + + + + + + + +
    Marks: + > +
    Comments: + + + +
    + +
    + +
    + Index: lams_tool_forum/web/jsps/monitoring/usermarkslist.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/usermarkslist.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/usermarkslist.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,87 @@ +<%@include file="../sharing/share.jsp" %> + + + + + Files Submitted + + + + + + + + + Following files have been submitted by + , + +

    + + +

    +

    + + + + + + + + + + + + + + + + + + + + + + +
    + File Path: + + + + + +   + + + + + + +
    File Description:
    Date of Submission:
    Marks: + + + + + + + +
    Comments: + + + + + + + + +
    +
    + > + > + > + > + +
    +
    + +
    + Index: lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp =================================================================== diff -u --- lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp (revision 0) +++ lams_tool_forum/web/jsps/monitoring/viewallmarks.jsp (revision 811003bdaefc92c8f7ddc49a1caaa9116cb8f729) @@ -0,0 +1,96 @@ +<%@include file="../sharing/share.jsp" %> + + + + All Learner Submission Details + + + + + + + + + + + + +

    + + +

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + , + , provides following submisstion: +
    File Path: + File Path: + + + + + +   + + + + + + +
    File Description:
    Date of Submission:
    Marks: + + + + + + + +
    Comments: + + + + + + + + +
    +
    + > + > + > + > + +
    +
    + +
    +