Index: lams_admin/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_admin/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_admin/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -111,6 +111,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_central/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_central/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_central/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -242,6 +242,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_common/src/java/org/lamsfoundation/lams/util/FileUtil.java =================================================================== diff -u -rab2f7c3e533151dd417f9e365dac97e84864b831 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_common/src/java/org/lamsfoundation/lams/util/FileUtil.java (.../FileUtil.java) (revision ab2f7c3e533151dd417f9e365dac97e84864b831) +++ lams_common/src/java/org/lamsfoundation/lams/util/FileUtil.java (.../FileUtil.java) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -919,6 +919,7 @@ public static boolean isVirusFree(InputStream inputStream) throws IOException { boolean scanEnabled = Configuration.getAsBoolean(ConfigurationKeys.ANTIVIRUS_ENABLE); if (!scanEnabled) { + inputStream.close(); return true; } Index: lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java =================================================================== diff -u -r88da40288a02be7961fe7f2e5b6c1c6c78655d59 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java (.../ZipFileUtil.java) (revision 88da40288a02be7961fe7f2e5b6c1c6c78655d59) +++ lams_common/src/java/org/lamsfoundation/lams/util/zipfile/ZipFileUtil.java (.../ZipFileUtil.java) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -23,6 +23,11 @@ package org.lamsfoundation.lams.util.zipfile; +import org.apache.logging.log4j.LogManager; +import org.apache.logging.log4j.Logger; +import org.lamsfoundation.lams.util.FileUtil; +import org.lamsfoundation.lams.util.FileUtilException; + import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.File; @@ -35,10 +40,6 @@ import java.util.zip.ZipInputStream; import java.util.zip.ZipOutputStream; -import org.apache.logging.log4j.Logger; import org.apache.logging.log4j.LogManager; -import org.lamsfoundation.lams.util.FileUtil; -import org.lamsfoundation.lams.util.FileUtilException; - /** * Handles zip files - expands them to a temporary directory, and deletes them on request. * @@ -76,13 +77,13 @@ } /** - * Create a temporary directory in which the zip file contents will go. + * Create a temporary directory in which the zip file contents will go. * * @param zipFileName * @return name of the new directory * @throws ZipFileUtilException - * if the java io temp directory is not defined, or we are unable to calculate a unique name for the - * expanded directory, or an IOException occurs. + * if the java io temp directory is not defined, or we are unable to calculate a unique name for the expanded + * directory, or an IOException occurs. */ public static String prepareTempDirectory(String zipFileName) throws ZipFileUtilException { int dotIndex = zipFileName.indexOf("."); @@ -94,8 +95,8 @@ "No temporary directory known to the server. [System.getProperty( \"java.io.tmpdir\" ) returns null. ]\n Cannot upload package."); } - String tempDirName = tempSysDirName + File.separator + ZipFileUtil.prefix + System.currentTimeMillis() + "_" - + shortZipName; + String tempDirName = + tempSysDirName + File.separator + ZipFileUtil.prefix + System.currentTimeMillis() + "_" + shortZipName; // Set up the directory. Check it doesn't exist and if it does // try 100 slightly different variations. If I can't find a unique @@ -120,14 +121,14 @@ private static void extractZipFile(InputStream is, String tempDirName) throws ZipFileUtilException { // got our directory, so write out the input file and expand the zip file // this is really a hack - write it out temporarily then read it back in again! urg!!!! - ZipInputStream zis = new ZipInputStream(is); + int count; byte data[] = new byte[ZipFileUtil.BUFFER_SIZE]; ZipEntry entry = null; BufferedOutputStream dest = null; String entryName = null; - try { + try (ZipInputStream zis = new ZipInputStream(is)) { // work through each file, creating a node for each file while ((entry = zis.getNextEntry()) != null) { @@ -192,17 +193,18 @@ * * @param directoryName * @return false if directoryName == null or one or more of the files/directories could not be deleted. See log for - * list of not deleted files. + * list of not deleted files. * @throws ZipFileUtilException - * if the directory name doesn't look like a temporary directory created by the helper. + * if the directory name doesn't look like a temporary directory created by the helper. */ public static boolean deleteDirectory(String directoryName) throws ZipFileUtilException { if (directoryName != null) { String tempSysDirNamePrefix = System.getProperty("java.io.tmpdir") + File.separator + ZipFileUtil.prefix; if (!directoryName.startsWith(tempSysDirNamePrefix)) { - throw new ZipFileUtilException("Invalid directory delete request. Received request to delete directory " - + directoryName + " but name doesn't start with the temporary directory location (" - + tempSysDirNamePrefix + "). Not deleting directory"); + throw new ZipFileUtilException( + "Invalid directory delete request. Received request to delete directory " + directoryName + + " but name doesn't start with the temporary directory location (" + + tempSysDirNamePrefix + "). Not deleting directory"); } return FileUtil.deleteDirectory(new File(directoryName)); @@ -223,26 +225,26 @@ * compression level of the Deflater. * * @param zipFileName - * the filename of the zip to create + * the filename of the zip to create * @param directoryToZip - * the directory you want to zip + * the directory you want to zip * @return the filename of the zip file created * @throws ZipFileUtilException */ public static String createZipFile(String zipFileName, String directoryToZip) throws ZipFileUtilException // public - // static - // String - // createZipFile(String - // ZipFileName, - // String[] - // filesToZip) + // static + // String + // createZipFile(String + // ZipFileName, + // String[] + // filesToZip) { int dotIndex = zipFileName.indexOf("."); String fileNameOfZipToCreate = dotIndex > -1 ? zipFileName : zipFileName + ".zip"; // append ".zip" extension if - // the filename doesnt - // contain .zip extension + // the filename doesnt + // contain .zip extension try { ZipOutputStream out = new ZipOutputStream( @@ -268,11 +270,11 @@ * compression level of the Deflater. * * @param zipFileName - * the filename of the zip to create + * the filename of the zip to create * @param directoryToZip - * the directory you want to zip + * the directory you want to zip * @param directoryToPlaceZip - * the place where you want to place the newly created zip file. + * the place where you want to place the newly created zip file. * @return the (absolute) filename of the zip that was created * @throws ZipFileUtilException */ @@ -294,7 +296,7 @@ int dotIndex = zipFileName.indexOf("."); String zipFile = dotIndex > -1 ? zipFileName : zipFileName + ".zip"; // append ".zip" extension if the filename - // doesnt contain .zip extension + // doesnt contain .zip extension String fileNameOfZipToCreate = directoryToPlaceZip + File.separator + zipFile; try { @@ -322,7 +324,7 @@ ZipEntry entry = null; BufferedInputStream source = null; byte[] data = new byte[ZipFileUtil.BUFFER_SIZE]; // byte[] buffer = new byte[ 1024 ]; //what size should we use? - // 1024? + // 1024? try { for (int i = 0; i < files.length; i++) { @@ -365,16 +367,16 @@ * path so that when zipped up, the upper directories arent shown. * * @param absoluteFilePath - * the absolute pathname of the file + * the absolute pathname of the file * @param rootDirPath - * the root directory path + * the root directory path * @return */ private static String removeDirPath(String absoluteFilePath, String rootDirPath) { int rootDirLength = rootDirPath.length(); return absoluteFilePath.substring(rootDirLength + 1, absoluteFilePath.length()); // added one to remove the - // trailing "\" that is behind - // the root dir + // trailing "\" that is behind + // the root dir } } \ No newline at end of file Index: lams_gradebook/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_gradebook/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_gradebook/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -101,6 +101,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_learning/web/WEB-INF/web.xml =================================================================== diff -u -r44cc1e311b449f4af21b8153341a355b2f1820a0 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_learning/web/WEB-INF/web.xml (.../web.xml) (revision 44cc1e311b449f4af21b8153341a355b2f1820a0) +++ lams_learning/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -75,8 +75,9 @@ org.springframework.web.servlet.DispatcherServlet - true 1 + true + Index: lams_monitoring/web/WEB-INF/web.xml =================================================================== diff -u -r44cc1e311b449f4af21b8153341a355b2f1820a0 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_monitoring/web/WEB-INF/web.xml (.../web.xml) (revision 44cc1e311b449f4af21b8153341a355b2f1820a0) +++ lams_monitoring/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -88,8 +88,9 @@ org.springframework.web.servlet.DispatcherServlet - true 1 + true + Index: lams_tool_assessment/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_assessment/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_assessment/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -90,8 +90,8 @@ org.springframework.web.servlet.DispatcherServlet 1 - true + Index: lams_tool_bbb/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_bbb/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_bbb/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -31,7 +31,8 @@ org.springframework.web.servlet.DispatcherServlet - 1 + 1 + true Index: lams_tool_chat/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_chat/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_chat/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -69,6 +69,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_daco/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_daco/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_daco/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -78,7 +78,8 @@ org.springframework.web.servlet.DispatcherServlet - 1 + 1 + true Index: lams_tool_dimdim/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_dimdim/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_dimdim/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -32,6 +32,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_doku/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_doku/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_doku/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -90,8 +90,8 @@ org.springframework.web.servlet.DispatcherServlet 1 - true + Index: lams_tool_eadventure/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_eadventure/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_eadventure/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -31,7 +31,8 @@ org.springframework.web.servlet.DispatcherServlet - 1 + 1 + true Index: lams_tool_forum/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_forum/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_forum/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -71,6 +71,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_gmap/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_gmap/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_gmap/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -31,7 +31,8 @@ org.springframework.web.servlet.DispatcherServlet - 1 + 1 + true Index: lams_tool_images/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_images/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_images/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -77,6 +77,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_imscc/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_imscc/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_imscc/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -84,6 +84,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_kaltura/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_kaltura/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_kaltura/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -33,6 +33,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_lamc/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_lamc/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_lamc/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -67,6 +67,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_laqa/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_laqa/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_laqa/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -74,6 +74,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_larsrc/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_larsrc/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_larsrc/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -88,6 +88,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_leader/web/WEB-INF/web.xml =================================================================== diff -u -r44cc1e311b449f4af21b8153341a355b2f1820a0 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_leader/web/WEB-INF/web.xml (.../web.xml) (revision 44cc1e311b449f4af21b8153341a355b2f1820a0) +++ lams_tool_leader/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -76,6 +76,8 @@ spring org.springframework.web.servlet.DispatcherServlet 1 + true + Index: lams_tool_nb/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_nb/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_nb/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -75,6 +75,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_notebook/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_notebook/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_notebook/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -71,6 +71,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_pixlr/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_pixlr/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_pixlr/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -69,6 +69,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_sbmt/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_sbmt/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_sbmt/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -70,6 +70,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_scratchie/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_scratchie/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_scratchie/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -97,8 +97,8 @@ org.springframework.web.servlet.DispatcherServlet 1 - true + Index: lams_tool_scribe/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_scribe/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_scribe/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -69,6 +69,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_spreadsheet/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_spreadsheet/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_spreadsheet/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -79,6 +79,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_task/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_task/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_task/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -78,6 +78,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_videorecorder/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_videorecorder/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_videorecorder/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -33,6 +33,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_whiteboard/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_whiteboard/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_whiteboard/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -89,8 +89,8 @@ org.springframework.web.servlet.DispatcherServlet 1 - true + Index: lams_tool_wiki/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_wiki/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_wiki/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -69,6 +69,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_wookie/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_wookie/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_wookie/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -33,6 +33,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true Index: lams_tool_zoom/web/WEB-INF/web.xml =================================================================== diff -u -rf5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8 -r52b0be8aff9fda9efc23ac346b96786dfb10f9c1 --- lams_tool_zoom/web/WEB-INF/web.xml (.../web.xml) (revision f5c1bfbe0683f40cf0e36a668d3ef2f2986a0ae8) +++ lams_tool_zoom/web/WEB-INF/web.xml (.../web.xml) (revision 52b0be8aff9fda9efc23ac346b96786dfb10f9c1) @@ -79,6 +79,7 @@ org.springframework.web.servlet.DispatcherServlet 1 + true