Index: lams_tool_forum/conf/language/lams/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/conf/language/lams/ApplicationResources.properties,v diff -u -r1.55.2.18 -r1.55.2.19 --- lams_tool_forum/conf/language/lams/ApplicationResources.properties 13 Dec 2016 14:33:25 -0000 1.55.2.18 +++ lams_tool_forum/conf/language/lams/ApplicationResources.properties 27 Feb 2017 10:11:07 -0000 1.55.2.19 @@ -241,6 +241,7 @@ js.error.validate.posting.number =There is an error with the minimum and/or maximum set for postings. Please check and try again. js.error.validate.reply.number =There is an error with the minimum and/or maximum number of posts per thread. label.topics =Topics +label.authoring.basic.resource.file.input =File #======= End labels: Exported 236 labels for en AU ===== Index: lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/AuthoringAction.java =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/AuthoringAction.java,v diff -u -r1.82.2.8 -r1.82.2.9 --- lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/AuthoringAction.java 20 Feb 2017 01:11:45 -0000 1.82.2.8 +++ lams_tool_forum/src/java/org/lamsfoundation/lams/tool/forum/web/actions/AuthoringAction.java 27 Feb 2017 10:11:07 -0000 1.82.2.9 @@ -72,9 +72,6 @@ import org.lamsfoundation.lams.tool.forum.web.forms.ForumPedagogicalPlannerForm; import org.lamsfoundation.lams.tool.forum.web.forms.MessageForm; import org.lamsfoundation.lams.usermanagement.dto.UserDTO; -import org.lamsfoundation.lams.util.Configuration; -import org.lamsfoundation.lams.util.ConfigurationKeys; -import org.lamsfoundation.lams.util.FileValidatorUtil; import org.lamsfoundation.lams.util.WebUtil; import org.lamsfoundation.lams.web.session.SessionManager; import org.lamsfoundation.lams.web.util.AttributeNames; @@ -189,9 +186,6 @@ forumForm.setContentFolderID(contentFolderID); sessionMap.put(AttributeNames.PARAM_CONTENT_FOLDER_ID, contentFolderID); - sessionMap.put(ForumConstants.ATTR_UPLOAD_MAX_FILE_SIZE, - FileValidatorUtil.formatSize(Configuration.getAsInt(ConfigurationKeys.UPLOAD_FILE_LARGE_MAX_SIZE))); - // get back the topic list and display them on page forumService = getForumManager(); Index: lams_tool_forum/web/WEB-INF/tags/AuthoringButton.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/WEB-INF/tags/AuthoringButton.tag,v diff -u -r1.22.2.3 -r1.22.2.4 --- lams_tool_forum/web/WEB-INF/tags/AuthoringButton.tag 13 Dec 2016 04:20:12 -0000 1.22.2.3 +++ lams_tool_forum/web/WEB-INF/tags/AuthoringButton.tag 27 Feb 2017 10:11:07 -0000 1.22.2.4 @@ -123,10 +123,10 @@ }
- + - +
Fisheye: Tag 1.1 refers to a dead (removed) revision in file `lams_tool_forum/web/WEB-INF/tags/FileUpload.tag'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `lams_tool_forum/web/WEB-INF/tags/WaitingSpinner.tag'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_forum/web/WEB-INF/tlds/lams/lams.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/WEB-INF/tlds/lams/lams.tld,v diff -u -r1.3.2.8 -r1.3.2.9 --- lams_tool_forum/web/WEB-INF/tlds/lams/lams.tld 25 Nov 2016 17:09:40 -0000 1.3.2.8 +++ lams_tool_forum/web/WEB-INF/tlds/lams/lams.tld 27 Feb 2017 10:11:07 -0000 1.3.2.9 @@ -529,5 +529,13 @@ CommentsAuthor /WEB-INF/tags/CommentsAuthor.tag + + FileUpload + /WEB-INF/tags/FileUpload.tag + + + WaitingSpinner + /WEB-INF/tags/WaitingSpinner.tag + Index: lams_tool_forum/web/common/tabbedheader.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/common/tabbedheader.jsp,v diff -u -r1.6.2.3 -r1.6.2.4 --- lams_tool_forum/web/common/tabbedheader.jsp 9 May 2016 12:03:50 -0000 1.6.2.3 +++ lams_tool_forum/web/common/tabbedheader.jsp 27 Feb 2017 10:11:07 -0000 1.6.2.4 @@ -29,5 +29,6 @@ + Index: lams_tool_forum/web/includes/learnerLayout.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/includes/learnerLayout.jsp,v diff -u -r1.6.12.6 -r1.6.12.7 --- lams_tool_forum/web/includes/learnerLayout.jsp 20 Aug 2016 07:10:48 -0000 1.6.12.6 +++ lams_tool_forum/web/includes/learnerLayout.jsp 27 Feb 2017 10:11:07 -0000 1.6.12.7 @@ -1,7 +1,10 @@ - <%@ include file="/common/taglibs.jsp"%> <%@ taglib uri="tags-tiles" prefix="tiles"%> +<%@ page import="org.lamsfoundation.lams.util.Configuration" %> +<%@ page import="org.lamsfoundation.lams.util.ConfigurationKeys" %> +<%=Configuration.get(ConfigurationKeys.UPLOAD_FILE_MAX_SIZE)%> +<%=Configuration.get(ConfigurationKeys.EXE_EXTENSIONS)%> @@ -28,10 +31,15 @@ + Index: lams_tool_forum/web/includes/javascript/learner.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/includes/javascript/learner.js,v diff -u -r1.1.2.3 -r1.1.2.4 --- lams_tool_forum/web/includes/javascript/learner.js 18 Apr 2016 01:05:39 -0000 1.1.2.3 +++ lams_tool_forum/web/includes/javascript/learner.js 27 Feb 2017 10:11:07 -0000 1.1.2.4 @@ -19,8 +19,18 @@ if (!isValid) { var warningMsg = warning.replace("{0}", charsMissing); alert(warningMsg); + } else { + var fileSelect = document.getElementById('attachmentFile'); + if ( fileSelect ) { + // Get the selected files from the input. + var files = fileSelect.files; + if (files.length > 0) { + var file = files[0]; + isValid = validateShowErrorNotExecutable(file, LABEL_NOT_ALLOWED_FORMAT, false, EXE_FILE_TYPES) && validateShowErrorFileSize(file, UPLOAD_FILE_MAX_SIZE, LABEL_MAX_FILE_SIZE, false); + } + } } - + return isValid; } @@ -35,6 +45,20 @@ return wordCount; } +function showBusy(targetDiv){ + var div = document.getElementById(targetDiv+"_Busy"); + if(div != null){ + document.getElementById(targetDiv+"_Busy").style.display = ''; + } +} + +function hideBusy(targetDiv){ + var div = document.getElementById(targetDiv+"_Busy"); + if(div != null){ + document.getElementById(targetDiv+"_Busy").style.display = 'none'; + } +} + /* Used by both Reply and Edit */ function disableSubmitButton() { $("#submitButton").attr("disabled", true); Index: lams_tool_forum/web/includes/javascript/message.js =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/includes/javascript/message.js,v diff -u -r1.3.14.4 -r1.3.14.5 --- lams_tool_forum/web/includes/javascript/message.js 13 Feb 2017 07:48:01 -0000 1.3.14.4 +++ lams_tool_forum/web/includes/javascript/message.js 27 Feb 2017 10:11:07 -0000 1.3.14.5 @@ -30,13 +30,16 @@ } function showBusy(targetDiv){ - if($(targetDiv+"_Busy") != null){ - $(targetDiv+"_Busy").show(); + var div = document.getElementById(targetDiv+"_Busy"); + if(div != null){ + document.getElementById(targetDiv+"_Busy").style.display = ''; } } + function hideBusy(targetDiv){ - if($(targetDiv+"_Busy") != null){ - $(targetDiv+"_Busy").hide(); + var div = document.getElementById(targetDiv+"_Busy"); + if(div != null){ + document.getElementById(targetDiv+"_Busy").style.display = 'none'; } } Index: lams_tool_forum/web/jsps/authoring/basic.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/basic.jsp,v diff -u -r1.37.2.6 -r1.37.2.7 --- lams_tool_forum/web/jsps/authoring/basic.jsp 16 Nov 2016 17:35:35 -0000 1.37.2.6 +++ lams_tool_forum/web/jsps/authoring/basic.jsp 27 Feb 2017 10:11:07 -0000 1.37.2.7 @@ -1,4 +1,9 @@ <%@ include file="/common/taglibs.jsp"%> +<%@ page import="org.lamsfoundation.lams.util.Configuration" %> +<%@ page import="org.lamsfoundation.lams.util.ConfigurationKeys" %> +<%=Configuration.get(ConfigurationKeys.UPLOAD_FILE_LARGE_MAX_SIZE)%> +<%=Configuration.get(ConfigurationKeys.EXE_EXTENSIONS)%> + @@ -115,6 +120,19 @@ CKEDITOR.instances[instance].updateElement(); } + var LABEL_MAX_FILE_SIZE = '{0}'; + var LABEL_NOT_ALLOWED_FORMAT = ''; + + var fileSelect = document.getElementById('attachmentFile'); + // Get the selected files from the input. + var files = fileSelect.files; + if (files.length > 0) { + var file = files[0]; + if ( ! validateShowErrorNotExecutable(file, LABEL_NOT_ALLOWED_FORMAT, false, '${EXE_FILE_TYPES}') || ! validateShowErrorFileSize(file, '${UPLOAD_FILE_MAX_SIZE}', LABEL_MAX_FILE_SIZE, false) ) + return false; + } + + showBusy("itemAttachmentArea"); var formData = new FormData(document.getElementById("topicFormId")); $.ajax({ // create an AJAX call... data: formData, @@ -123,7 +141,8 @@ type: $("#topicFormId").attr('method'), url: $("#topicFormId").attr('action'), success: function(data) { - $('#messageArea').html(data); + $('#messageArea').html(data); + hideBusy("itemAttachmentArea"); } }); } @@ -144,6 +163,8 @@ <%@ include file="/jsps/authoring/message/topiclist.jsp"%> + +
');" id="addTopic" class="btn btn-default btn-sm">  Index: lams_tool_forum/web/jsps/authoring/conditionList.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/conditionList.jsp,v diff -u -r1.3.2.4 -r1.3.2.5 --- lams_tool_forum/web/jsps/authoring/conditionList.jsp 20 Oct 2016 22:17:28 -0000 1.3.2.4 +++ lams_tool_forum/web/jsps/authoring/conditionList.jsp 27 Feb 2017 10:11:07 -0000 1.3.2.5 @@ -3,9 +3,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.39.2.8 -r1.39.2.9 --- lams_tool_forum/web/jsps/authoring/message/create.jsp 20 Feb 2017 01:11:45 -0000 1.39.2.8 +++ lams_tool_forum/web/jsps/authoring/message/create.jsp 27 Feb 2017 10:11:07 -0000 1.39.2.9 @@ -1,6 +1,10 @@ - <%@ include file="/common/taglibs.jsp"%> +<%@ page import="org.lamsfoundation.lams.util.Configuration" %> +<%@ page import="org.lamsfoundation.lams.util.ConfigurationKeys" %> +<%@ page import="org.lamsfoundation.lams.util.FileValidatorUtil" %> +<%=FileValidatorUtil.formatSize(Configuration.getAsInt(ConfigurationKeys.UPLOAD_FILE_LARGE_MAX_SIZE))%> + <%@ include file="/common/header.jsp"%> @@ -37,13 +41,9 @@
-
-

- - ${sessionMap.uploadMaxFileSize} - -

+ +
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.25.2.7 -r1.25.2.8 --- lams_tool_forum/web/jsps/authoring/message/edit.jsp 13 Sep 2016 09:22:06 -0000 1.25.2.7 +++ lams_tool_forum/web/jsps/authoring/message/edit.jsp 27 Feb 2017 10:11:07 -0000 1.25.2.8 @@ -1,5 +1,4 @@ - <%@ include file="/common/taglibs.jsp"%> @@ -16,7 +15,7 @@ <%@ include file="/common/messages.jsp"%> - + "> Index: lams_tool_forum/web/jsps/authoring/parts/msgattachment.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/authoring/parts/msgattachment.jsp,v diff -u -r1.4.2.3 -r1.4.2.4 --- lams_tool_forum/web/jsps/authoring/parts/msgattachment.jsp 20 Feb 2017 01:11:45 -0000 1.4.2.3 +++ lams_tool_forum/web/jsps/authoring/parts/msgattachment.jsp 27 Feb 2017 10:11:07 -0000 1.4.2.4 @@ -1,4 +1,9 @@ <%@ include file="/common/taglibs.jsp"%> +<%@ page import="org.lamsfoundation.lams.util.Configuration" %> +<%@ page import="org.lamsfoundation.lams.util.ConfigurationKeys" %> +<%@ page import="org.lamsfoundation.lams.util.FileValidatorUtil" %> +<%=FileValidatorUtil.formatSize(Configuration.getAsInt(ConfigurationKeys.UPLOAD_FILE_LARGE_MAX_SIZE))%> + @@ -17,20 +22,14 @@ - - - - -

- - ${sessionMap.uploadMaxFileSize} - -

- +
+ + + Index: lams_tool_forum/web/jsps/learning/create.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/create.jsp,v diff -u -r1.12.2.3 -r1.12.2.4 --- lams_tool_forum/web/jsps/learning/create.jsp 18 Apr 2016 02:22:18 -0000 1.12.2.3 +++ lams_tool_forum/web/jsps/learning/create.jsp 27 Feb 2017 10:11:07 -0000 1.12.2.4 @@ -4,6 +4,7 @@ function doSubmit() { disableSubmitButton(); if (validateForm()) { + showBusy("itemAttachmentArea"); return true; } enableSubmitButton(); Index: lams_tool_forum/web/jsps/learning/edit.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/edit.jsp,v diff -u -r1.8.2.6 -r1.8.2.7 --- lams_tool_forum/web/jsps/learning/edit.jsp 19 Aug 2016 00:54:28 -0000 1.8.2.6 +++ lams_tool_forum/web/jsps/learning/edit.jsp 27 Feb 2017 10:11:07 -0000 1.8.2.7 @@ -13,7 +13,6 @@ }); $('#editForm').submit(function() { // catch the form's submit event - disableSubmitButton(); if ( validateForm() ) { @@ -22,6 +21,7 @@ CKEDITOR.instances[instance].updateElement(); } + showBusy("itemAttachmentArea"); var formData = new FormData(this); $.ajax({ // create an AJAX call... @@ -54,6 +54,7 @@ // No valid id? Validation failed! Assume it is the form coming back. $('#edit').html(response); } + hideBusy("itemAttachmentArea"); } }); } // end validateForm() Index: lams_tool_forum/web/jsps/learning/reply.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/reply.jsp,v diff -u -r1.16.2.11 -r1.16.2.12 --- lams_tool_forum/web/jsps/learning/reply.jsp 5 Dec 2016 12:00:46 -0000 1.16.2.11 +++ lams_tool_forum/web/jsps/learning/reply.jsp 27 Feb 2017 10:11:07 -0000 1.16.2.12 @@ -22,8 +22,8 @@ CKEDITOR.instances[instance].updateElement(); } + showBusy("itemAttachmentArea"); var formData = new FormData(this); - $.ajax({ // create an AJAX call... data: formData, processData: false, // tell jQuery not to process the data @@ -78,6 +78,7 @@ } // end validateForm() else { enableSubmitButton(); + hideBusy("itemAttachmentArea"); } return false; }); @@ -103,10 +104,10 @@
-
+
<%@ include file="/jsps/learning/message/topicreplyform.jsp"%> -
+
Index: lams_tool_forum/web/jsps/learning/message/topiceditform.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topiceditform.jsp,v diff -u -r1.18.2.8 -r1.18.2.9 --- lams_tool_forum/web/jsps/learning/message/topiceditform.jsp 20 Oct 2016 22:17:29 -0000 1.18.2.8 +++ lams_tool_forum/web/jsps/learning/message/topiceditform.jsp 27 Feb 2017 10:11:07 -0000 1.18.2.9 @@ -15,7 +15,7 @@
- +
@@ -33,10 +33,12 @@ - +
+ +
Index: lams_tool_forum/web/jsps/learning/message/topicform.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topicform.jsp,v diff -u -r1.17.2.6 -r1.17.2.7 --- lams_tool_forum/web/jsps/learning/message/topicform.jsp 20 Feb 2017 01:11:45 -0000 1.17.2.6 +++ lams_tool_forum/web/jsps/learning/message/topicform.jsp 27 Feb 2017 10:11:07 -0000 1.17.2.7 @@ -14,12 +14,7 @@

-
-

- - ${sessionMap.uploadMaxFileSize} - -

+
Index: lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp,v diff -u -r1.18.2.9 -r1.18.2.10 --- lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp 20 Feb 2017 01:11:45 -0000 1.18.2.9 +++ lams_tool_forum/web/jsps/learning/message/topicreplyform.jsp 27 Feb 2017 10:11:07 -0000 1.18.2.10 @@ -13,16 +13,11 @@
- - - -

- - ${sessionMap.uploadMaxFileSize} - -

- + +
+ +
Index: lams_tool_forum/web/jsps/monitoring/summary.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_forum/web/jsps/monitoring/summary.jsp,v diff -u -r1.31.2.14 -r1.31.2.15 --- lams_tool_forum/web/jsps/monitoring/summary.jsp 13 Dec 2016 22:51:37 -0000 1.31.2.14 +++ lams_tool_forum/web/jsps/monitoring/summary.jsp 27 Feb 2017 10:11:07 -0000 1.31.2.15 @@ -158,7 +158,7 @@ - +
Index: lams_tool_pixlr/conf/language/lams/ApplicationResources.properties =================================================================== RCS file: /usr/local/cvsroot/lams_tool_pixlr/conf/language/lams/ApplicationResources.properties,v diff -u -r1.13.2.5 -r1.13.2.6 --- lams_tool_pixlr/conf/language/lams/ApplicationResources.properties 4 Dec 2016 01:41:47 -0000 1.13.2.5 +++ lams_tool_pixlr/conf/language/lams/ApplicationResources.properties 27 Feb 2017 10:01:40 -0000 1.13.2.6 @@ -104,6 +104,8 @@ message.no.reflection.available =No notebook entry has been added. label.image.options =Image options label.activity.completion =End of activity +errors.maxfilesize =Uploaded file exceeded maximum size of {0} +label.upload.info =Uploaded file must not be executable and not exceed size of {0} #======= End labels: Exported 98 labels for en AU ===== Index: lams_tool_pixlr/web/WEB-INF/tags/AuthoringButton.tag =================================================================== RCS file: /usr/local/cvsroot/lams_tool_pixlr/web/WEB-INF/tags/AuthoringButton.tag,v diff -u -r1.11.2.2 -r1.11.2.3 --- lams_tool_pixlr/web/WEB-INF/tags/AuthoringButton.tag 13 Dec 2016 04:32:51 -0000 1.11.2.2 +++ lams_tool_pixlr/web/WEB-INF/tags/AuthoringButton.tag 27 Feb 2017 10:01:40 -0000 1.11.2.3 @@ -123,7 +123,7 @@ }
- + Fisheye: Tag 1.1 refers to a dead (removed) revision in file `lams_tool_pixlr/web/WEB-INF/tags/FileUpload.tag'. Fisheye: No comparison available. Pass `N' to diff? Fisheye: Tag 1.1 refers to a dead (removed) revision in file `lams_tool_pixlr/web/WEB-INF/tags/WaitingSpinner.tag'. Fisheye: No comparison available. Pass `N' to diff? Index: lams_tool_pixlr/web/WEB-INF/tlds/lams/lams.tld =================================================================== RCS file: /usr/local/cvsroot/lams_tool_pixlr/web/WEB-INF/tlds/lams/lams.tld,v diff -u -r1.3.2.7 -r1.3.2.8 --- lams_tool_pixlr/web/WEB-INF/tlds/lams/lams.tld 25 Nov 2016 17:09:08 -0000 1.3.2.7 +++ lams_tool_pixlr/web/WEB-INF/tlds/lams/lams.tld 27 Feb 2017 10:01:40 -0000 1.3.2.8 @@ -529,5 +529,13 @@ CommentsAuthor /WEB-INF/tags/CommentsAuthor.tag + + FileUpload + /WEB-INF/tags/FileUpload.tag + + + WaitingSpinner + /WEB-INF/tags/WaitingSpinner.tag + Index: lams_tool_pixlr/web/pages/authoring/authoring.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_pixlr/web/pages/authoring/authoring.jsp,v diff -u -r1.2.2.1 -r1.2.2.2 --- lams_tool_pixlr/web/pages/authoring/authoring.jsp 16 May 2016 10:16:33 -0000 1.2.2.1 +++ lams_tool_pixlr/web/pages/authoring/authoring.jsp 27 Feb 2017 10:01:40 -0000 1.2.2.2 @@ -1,7 +1,32 @@ <%@ include file="/common/taglibs.jsp"%> <%@ page import="org.lamsfoundation.lams.tool.pixlr.util.PixlrConstants"%> +<%@ page import="org.lamsfoundation.lams.util.Configuration" %> +<%@ page import="org.lamsfoundation.lams.util.ConfigurationKeys" %> +<%@ page import="org.lamsfoundation.lams.util.FileValidatorUtil" %> +<%=Configuration.get(ConfigurationKeys.UPLOAD_FILE_LARGE_MAX_SIZE)%> +<%=FileValidatorUtil.formatSize(Configuration.getAsInt(ConfigurationKeys.UPLOAD_FILE_LARGE_MAX_SIZE))%> - + + + Index: lams_tool_pixlr/web/pages/authoring/basic.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_pixlr/web/pages/authoring/basic.jsp,v diff -u -r1.3.2.2 -r1.3.2.3 --- lams_tool_pixlr/web/pages/authoring/basic.jsp 15 Nov 2016 13:59:41 -0000 1.3.2.2 +++ lams_tool_pixlr/web/pages/authoring/basic.jsp 27 Feb 2017 10:01:40 -0000 1.3.2.3 @@ -50,10 +50,11 @@
- - +
+ + + + Index: lams_tool_pixlr/web/pages/authoring/headItems.jsp =================================================================== RCS file: /usr/local/cvsroot/lams_tool_pixlr/web/pages/authoring/headItems.jsp,v diff -u -r1.1.10.1 -r1.1.10.2 --- lams_tool_pixlr/web/pages/authoring/headItems.jsp 16 May 2016 10:16:33 -0000 1.1.10.1 +++ lams_tool_pixlr/web/pages/authoring/headItems.jsp 27 Feb 2017 10:01:40 -0000 1.1.10.2 @@ -8,3 +8,4 @@ +