Index: lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml
===================================================================
diff -u -r7affae8017cd4fc74dc2316f2104740253241228 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml (.../QaQueContent.hbm.xml) (revision 7affae8017cd4fc74dc2316f2104740253241228)
+++ lams_tool_laqa/conf/hibernate/mappings/org/lamsfoundation/lams/tool/qa/QaQueContent.hbm.xml (.../QaQueContent.hbm.xml) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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 987a74c62956d533b5e9dc73443257d7931fe40a 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
===================================================================
diff -u
--- lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaStatsDTO.java (revision 0)
+++ lams_tool_laqa/src/java/org/lamsfoundation/lams/tool/qa/QaStatsDTO.java (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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$$ */
+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 987a74c62956d533b5e9dc73443257d7931fe40a 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 987a74c62956d533b5e9dc73443257d7931fe40a 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
===================================================================
diff -u -r0409f98dc17dfd380badf33ae103a47d0fffc4e5 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/403.jsp (.../403.jsp) (revision 0409f98dc17dfd380badf33ae103a47d0fffc4e5)
+++ lams_tool_laqa/web/403.jsp (.../403.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u -r0409f98dc17dfd380badf33ae103a47d0fffc4e5 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/404.jsp (.../404.jsp) (revision 0409f98dc17dfd380badf33ae103a47d0fffc4e5)
+++ lams_tool_laqa/web/404.jsp (.../404.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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" %>
Fisheye: Tag a482f3de574e2bf3b630812178ef2ceee1b849cf 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
===================================================================
diff -u
--- lams_tool_laqa/web/WEB-INF/struts/validator-rules.xml (revision 0)
+++ lams_tool_laqa/web/WEB-INF/struts/validator-rules.xml (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,324 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_tool_laqa/web/WEB-INF/tags/FCKEditor.tag
===================================================================
diff -u
--- lams_tool_laqa/web/WEB-INF/tags/FCKEditor.tag (revision 0)
+++ lams_tool_laqa/web/WEB-INF/tags/FCKEditor.tag (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,57 @@
+<%@ taglib uri="tags-core" prefix="c"%>
+<%@ taglib uri="tags-lams" prefix="lams"%>
+<%@ taglib uri="fck-editor" prefix="fck"%>
+
+<%@ 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"%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ ${value}
+
+
+
+
+
Index: lams_tool_laqa/web/authoring/editQuestionBox.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/authoring/editQuestionBox.jsp (revision 0)
+++ lams_tool_laqa/web/authoring/editQuestionBox.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/authoring/itemlist.jsp (revision 0)
+++ lams_tool_laqa/web/authoring/itemlist.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/authoring/itemlistViewOnly.jsp (revision 0)
+++ lams_tool_laqa/web/authoring/itemlistViewOnly.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/authoring/newQuestionBox.jsp (revision 0)
+++ lams_tool_laqa/web/authoring/newQuestionBox.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u -rc277bb1c30c1283b5f66c6f651855c51a5f87bc5 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/common/header.jsp (.../header.jsp) (revision c277bb1c30c1283b5f66c6f651855c51a5f87bc5)
+++ lams_tool_laqa/web/common/header.jsp (.../header.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u -re48a67de27af42221ddce80419f05c1be4680430 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/common/messages.jsp (.../messages.jsp) (revision e48a67de27af42221ddce80419f05c1be4680430)
+++ lams_tool_laqa/web/common/messages.jsp (.../messages.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -2,9 +2,9 @@
-
-
+   
@@ -13,8 +13,8 @@
-
-
+   
+   
\ No newline at end of file
Index: lams_tool_laqa/web/common/taglibs.jsp
===================================================================
diff -u -re48a67de27af42221ddce80419f05c1be4680430 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/common/taglibs.jsp (.../taglibs.jsp) (revision e48a67de27af42221ddce80419f05c1be4680430)
+++ lams_tool_laqa/web/common/taglibs.jsp (.../taglibs.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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/error.jsp
===================================================================
diff -u -r88acb04987abd12bc87754fbbe1f835dcd99a5cc -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/error.jsp (.../error.jsp) (revision 88acb04987abd12bc87754fbbe1f835dcd99a5cc)
+++ lams_tool_laqa/web/error.jsp (.../error.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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/images/iconInformation.gif
===================================================================
diff -u
Binary files differ
Index: lams_tool_laqa/web/images/iconWarning.gif
===================================================================
diff -u
Binary files differ
Index: lams_tool_laqa/web/includes/blank.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/includes/blank.jsp (revision 0)
+++ lams_tool_laqa/web/includes/blank.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,3 @@
+<%@ include file="/common/taglibs.jsp" %>
+<%@ include file="/common/messages.jsp" %>
+
Fisheye: Tag c277bb1c30c1283b5f66c6f651855c51a5f87bc5 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/error.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/includes/error.jsp (revision 0)
+++ lams_tool_laqa/web/includes/error.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,7 @@
+<%@ page language="java" %>
+<%@ include file="/includes/taglibs.jsp" %>
+
+
Index: lams_tool_laqa/web/includes/javascript/common.js
===================================================================
diff -u
--- lams_tool_laqa/web/includes/javascript/common.js (revision 0)
+++ lams_tool_laqa/web/includes/javascript/common.js (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/includes/javascript/forum.js (revision 0)
+++ lams_tool_laqa/web/includes/javascript/forum.js (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/includes/javascript/message.js (revision 0)
+++ lams_tool_laqa/web/includes/javascript/message.js (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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/includes/layout.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/includes/layout.jsp (revision 0)
+++ lams_tool_laqa/web/includes/layout.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,32 @@
+
+
+<%@ include file="/common/taglibs.jsp"%>
+<%@ taglib uri="tags-tiles" prefix="tiles"%>
+
+
+
+
+ <%@ include file="/common/header.jsp"%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_tool_laqa/web/includes/learnerLayout.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/includes/learnerLayout.jsp (revision 0)
+++ lams_tool_laqa/web/includes/learnerLayout.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,33 @@
+
+
+<%@ include file="/common/taglibs.jsp"%>
+<%@ taglib uri="tags-tiles" prefix="tiles"%>
+
+
+
+
+
+
+
+
+
+ <%@ include file="/common/header.jsp"%>
+
+
+
+
+
+
+
+
+
+
+
Index: lams_tool_laqa/web/includes/tablayout.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/includes/tablayout.jsp (revision 0)
+++ lams_tool_laqa/web/includes/tablayout.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -0,0 +1,31 @@
+
+
+<%@ include file="/common/taglibs.jsp"%>
+<%@ taglib uri="tags-tiles" prefix="tiles"%>
+
+
+
+
+ <%@ include file="/common/header.jsp"%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Index: lams_tool_laqa/web/includes/taglibs.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/includes/taglibs.jsp (revision 0)
+++ lams_tool_laqa/web/includes/taglibs.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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"%>
+
Index: lams_tool_laqa/web/login.jsp
===================================================================
diff -u -r0409f98dc17dfd380badf33ae103a47d0fffc4e5 -r987a74c62956d533b5e9dc73443257d7931fe40a
--- lams_tool_laqa/web/login.jsp (.../login.jsp) (revision 0409f98dc17dfd380badf33ae103a47d0fffc4e5)
+++ lams_tool_laqa/web/login.jsp (.../login.jsp) (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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" %>
Index: lams_tool_laqa/web/monitoring/editQuestionBox.jsp
===================================================================
diff -u
--- lams_tool_laqa/web/monitoring/editQuestionBox.jsp (revision 0)
+++ lams_tool_laqa/web/monitoring/editQuestionBox.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/monitoring/itemlist.jsp (revision 0)
+++ lams_tool_laqa/web/monitoring/itemlist.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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
===================================================================
diff -u
--- lams_tool_laqa/web/monitoring/newQuestionBox.jsp (revision 0)
+++ lams_tool_laqa/web/monitoring/newQuestionBox.jsp (revision 987a74c62956d533b5e9dc73443257d7931fe40a)
@@ -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"%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ |
+
+
+
+
+
+
+