Index: lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml,v diff -u -r1.2 -r1.3 --- lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml 10 Mar 2006 16:34:17 -0000 1.2 +++ lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml 20 Sep 2006 15:08:34 -0000 1.3 @@ -34,7 +34,16 @@ > + + + DTO that holds users attempt history data for jsp purposes + *

+ * + * @author Ozgur Demirtas + */ +public class QaQuestionContentDTO implements Comparable +{ + private String question; + private String displayOrder; + private String feedback; + + public String toString() { + return new ToStringBuilder(this) + .append("question:", question) + .append("feedback:", feedback) + .append("displayOrder:", displayOrder) + .toString(); + } + + public int compareTo(Object o) + { + QaMonitoredUserDTO qaMonitoredUserDTO = (QaMonitoredUserDTO) o; + + if (qaMonitoredUserDTO == null) + return 1; + else + return 0; + } + /** + * @return Returns the displayOrder. + */ + public String getDisplayOrder() { + return displayOrder; + } + /** + * @param displayOrder The displayOrder to set. + */ + public void setDisplayOrder(String displayOrder) { + this.displayOrder = displayOrder; + } + /** + * @return Returns the feedback. + */ + public String getFeedback() { + return feedback; + } + /** + * @param feedback The feedback to set. + */ + public void setFeedback(String feedback) { + this.feedback = feedback; + } + /** + * @return Returns the question. + */ + public String getQuestion() { + return question; + } + /** + * @param question The question to set. + */ + public void setQuestion(String question) { + this.question = question; + } +} Fisheye: Tag 1.9 refers to a dead (removed) revision in file `lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaSession.hbm.xml'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaStatsDTO.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/Attic/QaStatsDTO.java,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaStatsDTO.java 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,84 @@ +/**************************************************************** + * Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) + * ============================================================= + * License Information: http://lamsfoundation.org/licensing/lams/2.0/ + * + * 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. + * + * 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 + * USA + * + * http://www.gnu.org/licenses/gpl.txt + * **************************************************************** + */ + +/* $$Id: QaStatsDTO.java,v 1.1 2006/09/20 15:08:31 ozgurd Exp $$ */ +package org.lamsfoundation.lams.tool.qa; + +import org.apache.commons.lang.builder.ToStringBuilder; + + +/** + *

DTO that holds stats data + *

+ * + * @author Ozgur Demirtas + */ +public class QaStatsDTO implements Comparable +{ + private String countAllUsers; + + private String countSessionComplete; + + public String toString() { + return new ToStringBuilder(this) + .append("question", countAllUsers) + .append("countSessionComplete", countSessionComplete) + .toString(); + } + + public int compareTo(Object o) + { + QaStatsDTO qaStatsDTO = (QaStatsDTO) o; + + if (qaStatsDTO == null) + return 1; + else + return 0; + } + + + /** + * @return Returns the countAllUsers. + */ + public String getCountAllUsers() { + return countAllUsers; + } + /** + * @param countAllUsers The countAllUsers to set. + */ + public void setCountAllUsers(String countAllUsers) { + this.countAllUsers = countAllUsers; + } + /** + * @return Returns the countSessionComplete. + */ + public String getCountSessionComplete() { + return countSessionComplete; + } + /** + * @param countSessionComplete The countSessionComplete to set. + */ + public void setCountSessionComplete(String countSessionComplete) { + this.countSessionComplete = countSessionComplete; + } +} Fisheye: Tag 1.9 refers to a dead (removed) revision in file `lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaUploadedFile.hbm.xml'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.8 refers to a dead (removed) revision in file `lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaUsrResp.hbm.xml'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_laqa/web/403.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/403.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_laqa/web/403.jsp 25 Jul 2006 05:22:38 -0000 1.1 +++ lams_tool_laqa/web/403.jsp 20 Sep 2006 15:08:31 -0000 1.2 @@ -1,3 +1,22 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> <%@ page language="java" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %> <%@ taglib uri="tags-lams" prefix="lams"%> <%@ taglib uri="tags-core" prefix="c" %> Index: lams_tool_laqa/web/404.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/404.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_laqa/web/404.jsp 25 Jul 2006 05:22:38 -0000 1.1 +++ lams_tool_laqa/web/404.jsp 20 Sep 2006 15:08:31 -0000 1.2 @@ -1,3 +1,22 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> <%@ page language="java" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %> <%@ taglib uri="tags-lams" prefix="lams"%> <%@ taglib uri="tags-core" prefix="c" %> Index: lams_tool_laqa/web/error.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/error.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_laqa/web/error.jsp 8 Aug 2006 00:52:02 -0000 1.2 +++ lams_tool_laqa/web/error.jsp 20 Sep 2006 15:08:31 -0000 1.3 @@ -1,3 +1,24 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + Index: lams_tool_laqa/web/login.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/login.jsp,v diff -u -r1.7 -r1.8 --- lams_tool_laqa/web/login.jsp 25 Jul 2006 05:22:38 -0000 1.7 +++ lams_tool_laqa/web/login.jsp 20 Sep 2006 15:08:31 -0000 1.8 @@ -1,3 +1,23 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + <%@ page language="java" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %> <%@ taglib uri="tags-lams" prefix="lams"%> <%@ taglib uri="tags-core" prefix="c" %> Fisheye: Tag 1.3 refers to a dead (removed) revision in file `lams_tool_laqa/web/WEB-INF/struts/struts-config.xml'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_laqa/web/WEB-INF/struts/validator-rules.xml =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/WEB-INF/struts/Attic/validator-rules.xml,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/WEB-INF/struts/validator-rules.xml 20 Sep 2006 15:08:36 -0000 1.1 @@ -0,0 +1,324 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Index: lams_tool_laqa/web/WEB-INF/tags/FCKEditor.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/WEB-INF/tags/Attic/FCKEditor.tag,v diff -u Binary files differ Index: lams_tool_laqa/web/authoring/editQuestionBox.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/authoring/editQuestionBox.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/authoring/editQuestionBox.jsp 20 Sep 2006 15:08:34 -0000 1.1 @@ -0,0 +1,113 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + + +<%@ include file="/common/taglibs.jsp"%> + + + <%@ include file="/common/header.jsp"%> + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+
+ +
+ + +
+
+ +
+ +
+ + + + +     + + + + + +

+
+
+ + + Index: lams_tool_laqa/web/authoring/itemlist.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/authoring/itemlist.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/authoring/itemlist.jsp 20 Sep 2006 15:08:32 -0000 1.1 @@ -0,0 +1,104 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + +<%@ include file="/common/taglibs.jsp" %> + + +<%-- This script will works when a new resoruce item submit in order to refresh "Resource List" panel. --%> + + Index: lams_tool_laqa/web/authoring/itemlistViewOnly.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/authoring/Attic/itemlistViewOnly.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/authoring/itemlistViewOnly.jsp 20 Sep 2006 15:08:34 -0000 1.1 @@ -0,0 +1,94 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + +<%@ include file="/common/taglibs.jsp" %> + + Index: lams_tool_laqa/web/authoring/newQuestionBox.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/authoring/newQuestionBox.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/authoring/newQuestionBox.jsp 20 Sep 2006 15:08:33 -0000 1.1 @@ -0,0 +1,109 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + + +<%@ include file="/common/taglibs.jsp"%> + + + <%@ include file="/common/header.jsp"%> + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+
+ +
+ +
+
+ +
+ +
+ + + + +     + + + + + +

+
+
+ + + Index: lams_tool_laqa/web/common/header.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/common/header.jsp,v diff -u -r1.2 -r1.3 --- lams_tool_laqa/web/common/header.jsp 6 Jul 2006 04:37:27 -0000 1.2 +++ lams_tool_laqa/web/common/header.jsp 20 Sep 2006 15:08:35 -0000 1.3 @@ -1,25 +1,36 @@ <%@ include file="/common/taglibs.jsp"%> - - - + + + + + + + - - - - - - - - - - - + + + + + + - - - - - + - \ No newline at end of file + + + + + + + + + + + + + + + +<%@ include file="/common/fckeditorheader.jsp"%> + Index: lams_tool_laqa/web/common/messages.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/common/messages.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_laqa/web/common/messages.jsp 29 Jun 2006 00:41:25 -0000 1.1 +++ lams_tool_laqa/web/common/messages.jsp 20 Sep 2006 15:08:35 -0000 1.2 @@ -2,9 +2,9 @@
- -
+   
@@ -13,8 +13,8 @@
- -
+    +   
\ No newline at end of file Index: lams_tool_laqa/web/common/taglibs.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/common/taglibs.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_laqa/web/common/taglibs.jsp 29 Jun 2006 00:41:25 -0000 1.1 +++ lams_tool_laqa/web/common/taglibs.jsp 20 Sep 2006 15:08:35 -0000 1.2 @@ -1,4 +1,4 @@ -<%@ page language="java" errorPage="/error.jsp" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %> +<%@ page language="java" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %> <%@ taglib uri="tags-tiles" prefix="tiles" %> <%@ taglib uri="tags-bean" prefix="bean" %> <%@ taglib uri="tags-html" prefix="html" %> @@ -10,4 +10,3 @@ <%@ taglib uri="tags-lams" prefix="lams" %> <%@ taglib uri="fck-editor" prefix="FCK"%> - Index: lams_tool_laqa/web/images/iconInformation.gif =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/images/iconInformation.gif,v diff -u Binary files differ Index: lams_tool_laqa/web/images/iconWarning.gif =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/images/iconWarning.gif,v diff -u Binary files differ Index: lams_tool_laqa/web/includes/blank.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/Attic/blank.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/blank.jsp 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,3 @@ +<%@ include file="/common/taglibs.jsp" %> +<%@ include file="/common/messages.jsp" %> + Index: lams_tool_laqa/web/includes/error.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/Attic/error.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/error.jsp 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,7 @@ +<%@ page language="java" %> +<%@ include file="/includes/taglibs.jsp" %> +
+ + + +
Index: lams_tool_laqa/web/includes/layout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/Attic/layout.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/layout.jsp 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,32 @@ + + +<%@ include file="/common/taglibs.jsp"%> +<%@ taglib uri="tags-tiles" prefix="tiles"%> + + + + <bean:message key="activity.title" /> + <%@ include file="/common/header.jsp"%> + + +
+ + + +

+ +

+
+ + + +
+ +
+ + +
+ + Index: lams_tool_laqa/web/includes/learnerLayout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/Attic/learnerLayout.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/learnerLayout.jsp 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,33 @@ + + +<%@ include file="/common/taglibs.jsp"%> +<%@ taglib uri="tags-tiles" prefix="tiles"%> + + + + + + + + + <bean:message key="activity.title" /> + <%@ include file="/common/header.jsp"%> + + + + + + +
+ +
+ + Index: lams_tool_laqa/web/includes/tablayout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/Attic/tablayout.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/tablayout.jsp 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,31 @@ + + +<%@ include file="/common/taglibs.jsp"%> +<%@ taglib uri="tags-tiles" prefix="tiles"%> + + + + <bean:message key="activity.title" /> + <%@ include file="/common/header.jsp"%> + + + + + +
+ + + + +

+ +

+
+ + + + +
+ + Index: lams_tool_laqa/web/includes/taglibs.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/Attic/taglibs.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/taglibs.jsp 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,10 @@ +<%@ page language="java" pageEncoding="UTF-8" contentType="text/html;charset=utf-8" %> +<%@ taglib uri="tags-bean" prefix="bean" %> +<%@ taglib uri="tags-logic" prefix="logic" %> +<%@ taglib uri="tags-tiles" prefix="tiles" %> +<%@ taglib uri="tags-html" prefix="html" %> +<%@ taglib uri="tags-core" prefix="c"%> +<%@ taglib uri="tags-fmt" prefix="fmt"%> +<%@ taglib uri="tags-lams" prefix="lams" %> +<%@ taglib uri="fck-editor" prefix="fck"%> + Fisheye: Tag 1.2 refers to a dead (removed) revision in file `lams_tool_laqa/web/includes/css/tool_custom.css'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_laqa/web/includes/javascript/common.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/javascript/common.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/javascript/common.js 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,18 @@ + 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(); + } + function showBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.show(targetDiv+"_Busy"); + } + } + function hideBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.hide(targetDiv+"_Busy"); + } + } \ No newline at end of file Index: lams_tool_laqa/web/includes/javascript/forum.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/javascript/Attic/forum.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/javascript/forum.js 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,18 @@ + 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(); + } + function showBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.show(targetDiv+"_Busy"); + } + } + function hideBusy(targetDiv){ + if($(targetDiv+"_Busy") != null){ + Element.hide(targetDiv+"_Busy"); + } + } \ No newline at end of file Index: lams_tool_laqa/web/includes/javascript/message.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/includes/javascript/Attic/message.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/includes/javascript/message.js 20 Sep 2006 15:08:31 -0000 1.1 @@ -0,0 +1,31 @@ + /* + This is Resource Item instrcution area. + */ + var itemAttachmentTargetDiv = "itemAttachmentArea"; +// Please set these 1 variables in JSP file for using tag reason: +//removeItemAttachmentUrl + function removeItemAttachment(){ + //var id = "instructionItem" + idx; + //Element.remove(id); + var url= removeItemAttachmentUrl; + var reqIDVar = new Date(); + var param = "reqID="+reqIDVar.getTime(); + removeItemAttachmentLoading(); + var myAjax = new Ajax.Updater( + itemAttachmentTargetDiv, + url, + { + method:'get', + parameters:param, + onComplete:removeItemAttachmentComplete, + evalScripts:true + } + ); + } + function removeItemAttachmentLoading(){ + showBusy(itemAttachmentTargetDiv); + } + function removeItemAttachmentComplete(){ + hideBusy(itemAttachmentTargetDiv); + } + Index: lams_tool_laqa/web/monitoring/editQuestionBox.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/monitoring/Attic/editQuestionBox.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/monitoring/editQuestionBox.jsp 20 Sep 2006 15:08:35 -0000 1.1 @@ -0,0 +1,112 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + + +<%@ include file="/common/taglibs.jsp"%> + + + <%@ include file="/common/header.jsp"%> + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + +
+
+ +
+ + +
+
+ +
+ +
+ + + + +     + + + + + +

+
+
+ + + Index: lams_tool_laqa/web/monitoring/itemlist.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/monitoring/Attic/itemlist.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/monitoring/itemlist.jsp 20 Sep 2006 15:08:35 -0000 1.1 @@ -0,0 +1,104 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + +<%@ include file="/common/taglibs.jsp" %> + + +<%-- This script will works when a new resoruce item submit in order to refresh "Resource List" panel. --%> + + Index: lams_tool_laqa/web/monitoring/newQuestionBox.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_laqa/web/monitoring/Attic/newQuestionBox.jsp,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_laqa/web/monitoring/newQuestionBox.jsp 20 Sep 2006 15:08:35 -0000 1.1 @@ -0,0 +1,109 @@ +<%-- +Copyright (C) 2005 LAMS Foundation (http://lamsfoundation.org) +License Information: http://lamsfoundation.org/licensing/lams/2.0/ + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License version 2 as + published by the Free Software Foundation. + + 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + + http://www.gnu.org/licenses/gpl.txt +--%> + + + +<%@ include file="/common/taglibs.jsp"%> + + + <%@ include file="/common/header.jsp"%> + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + + + + + + + + + + + + + + + +
+
+ +
+ +
+
+ +
+ +
+ + + + +     + + + + + +

+
+
+ + +