Index: lams_tool_chat/web/WEB-INF/lams.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/Attic/lams.tld,v diff -u -r1.9 -r1.10 --- lams_tool_chat/web/WEB-INF/lams.tld 23 Aug 2006 07:51:09 -0000 1.9 +++ lams_tool_chat/web/WEB-INF/lams.tld 30 Aug 2006 07:35:17 -0000 1.10 @@ -287,14 +287,10 @@ /WEB-INF/tags/TabBody.tag - HTMLEditor - /WEB-INF/tags/HTMLEditor.tag + FCKEditor + /WEB-INF/tags/FCKEditor.tag - SetEditor - /WEB-INF/tags/SetEditor.tag - - AuthoringButton /WEB-INF/tags/AuthoringButton.tag Index: lams_tool_chat/web/WEB-INF/fckeditor/tlds/FCKeditor.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/fckeditor/tlds/Attic/FCKeditor.tld,v diff -u -r1.1 -r1.2 --- lams_tool_chat/web/WEB-INF/fckeditor/tlds/FCKeditor.tld 28 Mar 2006 02:15:07 -0000 1.1 +++ lams_tool_chat/web/WEB-INF/fckeditor/tlds/FCKeditor.tld 30 Aug 2006 07:35:17 -0000 1.2 @@ -14,6 +14,7 @@ id true + true basePath Index: lams_tool_chat/web/WEB-INF/tags/AuthoringButton.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/tags/AuthoringButton.tag,v diff -u -r1.4 -r1.5 --- lams_tool_chat/web/WEB-INF/tags/AuthoringButton.tag 13 Jul 2006 00:20:02 -0000 1.4 +++ lams_tool_chat/web/WEB-INF/tags/AuthoringButton.tag 30 Aug 2006 07:35:17 -0000 1.5 @@ -37,6 +37,7 @@ <%@ attribute name="formID" required="true" rtexprvalue="true" %> <%@ attribute name="toolSignature" required="true" rtexprvalue="true" %> <%@ attribute name="toolContentID" required="true" rtexprvalue="true" %> +<%@ attribute name="contentFolderID" required="true" rtexprvalue="true" %> <%@ attribute name="clearSessionActionUrl" required="true" rtexprvalue="true" %> <%-- Optional attribute --%> @@ -64,7 +65,7 @@ -

+

Index: lams_tool_chat/web/WEB-INF/tags/FCKEditor.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/tags/Attic/FCKEditor.tag,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_chat/web/WEB-INF/tags/FCKEditor.tag 30 Aug 2006 07:35:17 -0000 1.1 @@ -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_chat/web/WEB-INF/tags/Tab.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/tags/Tab.tag,v diff -u -r1.3 -r1.4 Binary files differ Index: lams_tool_chat/web/WEB-INF/tags/TabBody.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/tags/TabBody.tag,v diff -u -r1.3 -r1.4 Binary files differ Index: lams_tool_chat/web/WEB-INF/tags/Tabs.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/WEB-INF/tags/Tabs.tag,v diff -u -r1.3 -r1.4 Binary files differ Index: lams_tool_chat/web/includes/javascript/authoring.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/includes/javascript/authoring.js,v diff -u --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ lams_tool_chat/web/includes/javascript/authoring.js 30 Aug 2006 07:35:17 -0000 1.1 @@ -0,0 +1,29 @@ + +function init() { + + // initialising tabs + initTabSize(3); + + // open the current tab + var tag = document.getElementById("currentTab"); + if (tag.value != "") { + selectTab(tag.value); + } else { + selectTab(1); + } +} +function doSelectTab(tabId) { + var tag = document.getElementById("currentTab"); + tag.value = tabId; + selectTab(tabId); +} +function doSubmit(method) { + document.authoringForm.dispatch.value = method; + document.authoringForm.submit(); +} +function deleteAttachment(dispatch, uuid) { + document.authoringForm.dispatch.value = dispatch; + document.authoringForm.deleteFileUuid.value = uuid; + document.authoringForm.submit(); +} + Index: lams_tool_chat/web/layouts/defaultLayout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/layouts/defaultLayout.jsp,v diff -u -r1.7 -r1.8 --- lams_tool_chat/web/layouts/defaultLayout.jsp 10 Aug 2006 01:18:27 -0000 1.7 +++ lams_tool_chat/web/layouts/defaultLayout.jsp 30 Aug 2006 07:35:17 -0000 1.8 @@ -1,5 +1,5 @@ - + <%@ include file="/common/taglibs.jsp"%> Index: lams_tool_chat/web/layouts/learningLayout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/layouts/learningLayout.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_chat/web/layouts/learningLayout.jsp 2 Jul 2006 07:12:17 -0000 1.1 +++ lams_tool_chat/web/layouts/learningLayout.jsp 30 Aug 2006 07:35:17 -0000 1.2 @@ -1,5 +1,5 @@ - + <%@ include file="/common/taglibs.jsp"%> Index: lams_tool_chat/web/layouts/tabLayout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/layouts/tabLayout.jsp,v diff -u -r1.5 -r1.6 --- lams_tool_chat/web/layouts/tabLayout.jsp 10 Aug 2006 01:18:27 -0000 1.5 +++ lams_tool_chat/web/layouts/tabLayout.jsp 30 Aug 2006 07:35:17 -0000 1.6 @@ -1,5 +1,5 @@ - + <%@ include file="/common/taglibs.jsp"%> Index: lams_tool_chat/web/pages/authoring/advanced.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/pages/authoring/advanced.jsp,v diff -u -r1.5 -r1.6 --- lams_tool_chat/web/pages/authoring/advanced.jsp 9 Aug 2006 01:12:11 -0000 1.5 +++ lams_tool_chat/web/pages/authoring/advanced.jsp 30 Aug 2006 07:35:17 -0000 1.6 @@ -1,27 +1,32 @@ <%@ include file="/common/taglibs.jsp"%> - - - + @@ -31,10 +36,13 @@ @@ -47,4 +55,3 @@
- + + - +
- + - +
 
- + - +
- Index: lams_tool_chat/web/pages/authoring/authoring.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/pages/authoring/authoring.jsp,v diff -u -r1.9 -r1.10 --- lams_tool_chat/web/pages/authoring/authoring.jsp 10 Aug 2006 01:18:27 -0000 1.9 +++ lams_tool_chat/web/pages/authoring/authoring.jsp 30 Aug 2006 07:35:17 -0000 1.10 @@ -1,14 +1,11 @@ <%@ include file="/common/taglibs.jsp"%>

@@ -17,6 +14,7 @@ enctype="multipart/form-data">
+ @@ -49,11 +47,11 @@ cancelButtonLabelKey="button.cancel" saveButtonLabelKey="button.save" toolContentID="${formBean.toolContentID}" accessMode="${sessionMap.mode}" defineLater="${defineLater}" - customiseSessionID="${sessionMap.sessionID}" /> + customiseSessionID="${sessionMap.sessionID}" + contentFolderID="${formBean.contentFolderID}" />
+ - - Index: lams_tool_chat/web/pages/authoring/basic.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/pages/authoring/basic.jsp,v diff -u -r1.4 -r1.5 --- lams_tool_chat/web/pages/authoring/basic.jsp 27 Jun 2006 03:45:25 -0000 1.4 +++ lams_tool_chat/web/pages/authoring/basic.jsp 30 Aug 2006 07:35:17 -0000 1.5 @@ -1,18 +1,27 @@ <%@ include file="/common/taglibs.jsp"%> - + Index: lams_tool_chat/web/pages/authoring/headItems.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/pages/authoring/headItems.jsp,v diff -u -r1.1 -r1.2 --- lams_tool_chat/web/pages/authoring/headItems.jsp 23 May 2006 04:59:50 -0000 1.1 +++ lams_tool_chat/web/pages/authoring/headItems.jsp 30 Aug 2006 07:35:17 -0000 1.2 @@ -1,49 +1,9 @@ <%@ include file="/common/taglibs.jsp"%> - - + + -<%-- Authoring Script --%> - - \ No newline at end of file + Index: lams_tool_chat/web/pages/authoring/instructions.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_chat/web/pages/authoring/Attic/instructions.jsp,v diff -u -r1.7 -r1.8 --- lams_tool_chat/web/pages/authoring/instructions.jsp 9 Aug 2006 01:12:11 -0000 1.7 +++ lams_tool_chat/web/pages/authoring/instructions.jsp 30 Aug 2006 07:35:17 -0000 1.8 @@ -1,70 +1,92 @@ <%@ include file="/common/taglibs.jsp"%> -
- +
+ +
+
- +
+ +
+
- + <%-- Online Instructions --%> - - + <%-- Online Attachments --%> + - + <%-- Online Attachments Upload --%> @@ -74,7 +96,8 @@
- +
@@ -87,70 +110,91 @@
- +
+ +
+
- -
  • - - - - -   +
      + + <%-- Online Saved Files --%> + +
    • + + + + + +   - - - -   + + + + +   - - - -
    • -
      + + + + + - <%-- Displaying unsaved Files --%> - -
    • - - * - - - -   + <%-- Online Unsaved Files --%> + +
    • + + * + + + + +   - - - -   + + + + +   - - - -
    • -
      + + + + + + +
  • -
    +
    - + <%-- Offline Instructions --%> - - + <%-- Offline Attachments --%> + - - + <%--Offline Attachments Upload --%> @@ -160,7 +204,8 @@
    - +
    - +
    + +
    +
    - - -
  • - - - - -   +
      - - - -   + <%-- Offline Saved Attachments --%> + +
    • + + + + + +   - - - -
    • -
      + + + + +   - - -
    • - - * - - - -   + + + +
    • +
      + + <%-- Offline Unsaved Attachments --%> + +
    • + + * + + + + +   - - - -   + + + + +   - - - -
    • -
      + + + + + + +
  • -
    +