Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/index.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/index.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/index.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/index.html
 Mon Apr  4 13:47:28 2022
@@ -2,8 +2,8 @@
 <!-- NewPage -->
 <html lang="de">
 <head>
-<!-- Generated by javadoc (11.0.9) on Wed Feb 02 09:51:06 CET 2022 -->
-<title>Torque Generator Ant tasks 5.1 Test API</title>
+<!-- Generated by javadoc -->
+<title>Torque Generator Ant tasks 5.2-SNAPSHOT Test API</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <script 
type="text/javascript">window.location.replace('org/apache/torque/ant/task/package-summary.html')</script>
 <noscript>

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.js
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.js?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.js
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.js
 Mon Apr  4 13:47:28 2022
@@ -1,6 +1,6 @@
 /*!
 
-JSZip v3.2.1 - A JavaScript class for generating and reading zip files
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
 <http://stuartk.com/jszip>
 
 (c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
@@ -123,7 +123,6 @@ exports.decode = function(input) {
 
 var external = require("./external");
 var DataWorker = require('./stream/DataWorker');
-var DataLengthProbe = require('./stream/DataLengthProbe');
 var Crc32Probe = require('./stream/Crc32Probe');
 var DataLengthProbe = require('./stream/DataLengthProbe');
 
@@ -149,14 +148,14 @@ CompressedObject.prototype = {
      * Create a worker to get the uncompressed content.
      * @return {GenericWorker} the worker.
      */
-    getContentWorker : function () {
+    getContentWorker: function () {
         var worker = new 
DataWorker(external.Promise.resolve(this.compressedContent))
-        .pipe(this.compression.uncompressWorker())
-        .pipe(new DataLengthProbe("data_length"));
+            .pipe(this.compression.uncompressWorker())
+            .pipe(new DataLengthProbe("data_length"));
 
         var that = this;
         worker.on("end", function () {
-            if(this.streamInfo['data_length'] !== that.uncompressedSize) {
+            if (this.streamInfo['data_length'] !== that.uncompressedSize) {
                 throw new Error("Bug : uncompressed data size mismatch");
             }
         });
@@ -166,19 +165,19 @@ CompressedObject.prototype = {
      * Create a worker to get the compressed content.
      * @return {GenericWorker} the worker.
      */
-    getCompressedWorker : function () {
+    getCompressedWorker: function () {
         return new DataWorker(external.Promise.resolve(this.compressedContent))
-        .withStreamInfo("compressedSize", this.compressedSize)
-        .withStreamInfo("uncompressedSize", this.uncompressedSize)
-        .withStreamInfo("crc32", this.crc32)
-        .withStreamInfo("compression", this.compression)
-        ;
+            .withStreamInfo("compressedSize", this.compressedSize)
+            .withStreamInfo("uncompressedSize", this.uncompressedSize)
+            .withStreamInfo("crc32", this.crc32)
+            .withStreamInfo("compression", this.compression)
+            ;
     }
 };
 
 /**
  * Chain the given worker with other workers to compress the content with the
- * given compresion.
+ * given compression.
  * @param {GenericWorker} uncompressedWorker the worker to pipe.
  * @param {Object} compression the compression object.
  * @param {Object} compressionOptions the options to use when compressing.
@@ -186,11 +185,11 @@ CompressedObject.prototype = {
  */
 CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, 
compressionOptions) {
     return uncompressedWorker
-    .pipe(new Crc32Probe())
-    .pipe(new DataLengthProbe("uncompressedSize"))
-    .pipe(compression.compressWorker(compressionOptions))
-    .pipe(new DataLengthProbe("compressedSize"))
-    .withStreamInfo("compression", compression);
+        .pipe(new Crc32Probe())
+        .pipe(new DataLengthProbe("uncompressedSize"))
+        .pipe(compression.compressWorker(compressionOptions))
+        .pipe(new DataLengthProbe("compressedSize"))
+        .withStreamInfo("compression", compression);
 };
 
 module.exports = CompressedObject;
@@ -484,7 +483,7 @@ var generateDosExternalFileAttr = functi
 
 /**
  * Generate the various parts used in the construction of the final zip file.
- * @param {Object} streamInfo the hash with informations about the compressed 
file.
+ * @param {Object} streamInfo the hash with information about the compressed 
file.
  * @param {Boolean} streamedContent is the content streamed ?
  * @param {Boolean} streamingEnded is the stream finished ?
  * @param {number} offset the current offset from the start of the zip file.
@@ -707,7 +706,7 @@ var generateCentralDirectoryEnd = functi
 
 /**
  * Generate data descriptors for a file entry.
- * @param {Object} streamInfo the hash generated by a worker, containing 
informations
+ * @param {Object} streamInfo the hash generated by a worker, containing 
information
  * on the file entry.
  * @return {String} the data descriptors.
  */
@@ -759,7 +758,7 @@ function ZipFileWorker(streamFiles, comm
     // The total number of entries in this zip file.
     this.entriesCount = 0;
     // the name of the file currently being added, null when handling the end 
of the zip file.
-    // Used for the emited metadata.
+    // Used for the emitted metadata.
     this.currentFile = null;
 
 
@@ -1034,7 +1033,10 @@ function JSZip() {
     //   "folder/" : {...},
     //   "folder/data.txt" : {...}
     // }
-    this.files = {};
+    // NOTE: we use a null prototype because we do not
+    // want filenames like "toString" coming from a zip file
+    // to overwrite methods and attributes in a normal Object.
+    this.files = Object.create(null);
 
     this.comment = null;
 
@@ -1057,7 +1059,7 @@ JSZip.defaults = require('./defaults');
 
 // TODO find a better way to handle this version,
 // a require('package.json').version doesn't work with webpack, see #327
-JSZip.version = "3.2.0";
+JSZip.version = "3.7.1";
 
 JSZip.loadAsync = function (content, options) {
     return new JSZip().loadAsync(content, options);
@@ -1071,7 +1073,6 @@ module.exports = JSZip;
 var utils = require('./utils');
 var external = require("./external");
 var utf8 = require('./utf8');
-var utils = require('./utils');
 var ZipEntries = require('./zipEntries');
 var Crc32Probe = require('./stream/Crc32Probe');
 var nodejsUtils = require("./nodejsUtils");
@@ -1087,18 +1088,18 @@ function checkEntryCRC32(zipEntry) {
         worker.on("error", function (e) {
             reject(e);
         })
-        .on("end", function () {
-            if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
-                reject(new Error("Corrupted zip : CRC32 mismatch"));
-            } else {
-                resolve();
-            }
-        })
-        .resume();
+            .on("end", function () {
+                if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
+                    reject(new Error("Corrupted zip : CRC32 mismatch"));
+                } else {
+                    resolve();
+                }
+            })
+            .resume();
     });
 }
 
-module.exports = function(data, options) {
+module.exports = function (data, options) {
     var zip = this;
     options = utils.extend(options || {}, {
         base64: false,
@@ -1113,41 +1114,41 @@ module.exports = function(data, options)
     }
 
     return utils.prepareContent("the loaded zip file", data, true, 
options.optimizedBinaryString, options.base64)
-    .then(function(data) {
-        var zipEntries = new ZipEntries(options);
-        zipEntries.load(data);
-        return zipEntries;
-    }).then(function checkCRC32(zipEntries) {
-        var promises = [external.Promise.resolve(zipEntries)];
-        var files = zipEntries.files;
-        if (options.checkCRC32) {
+        .then(function (data) {
+            var zipEntries = new ZipEntries(options);
+            zipEntries.load(data);
+            return zipEntries;
+        }).then(function checkCRC32(zipEntries) {
+            var promises = [external.Promise.resolve(zipEntries)];
+            var files = zipEntries.files;
+            if (options.checkCRC32) {
+                for (var i = 0; i < files.length; i++) {
+                    promises.push(checkEntryCRC32(files[i]));
+                }
+            }
+            return external.Promise.all(promises);
+        }).then(function addFiles(results) {
+            var zipEntries = results.shift();
+            var files = zipEntries.files;
             for (var i = 0; i < files.length; i++) {
-                promises.push(checkEntryCRC32(files[i]));
+                var input = files[i];
+                zip.file(input.fileNameStr, input.decompressed, {
+                    binary: true,
+                    optimizedBinaryString: true,
+                    date: input.date,
+                    dir: input.dir,
+                    comment: input.fileCommentStr.length ? 
input.fileCommentStr : null,
+                    unixPermissions: input.unixPermissions,
+                    dosPermissions: input.dosPermissions,
+                    createFolders: options.createFolders
+                });
+            }
+            if (zipEntries.zipComment.length) {
+                zip.comment = zipEntries.zipComment;
             }
-        }
-        return external.Promise.all(promises);
-    }).then(function addFiles(results) {
-        var zipEntries = results.shift();
-        var files = zipEntries.files;
-        for (var i = 0; i < files.length; i++) {
-            var input = files[i];
-            zip.file(input.fileNameStr, input.decompressed, {
-                binary: true,
-                optimizedBinaryString: true,
-                date: input.date,
-                dir: input.dir,
-                comment : input.fileCommentStr.length ? input.fileCommentStr : 
null,
-                unixPermissions : input.unixPermissions,
-                dosPermissions : input.dosPermissions,
-                createFolders: options.createFolders
-            });
-        }
-        if (zipEntries.zipComment.length) {
-            zip.comment = zipEntries.zipComment;
-        }
 
-        return zip;
-    });
+            return zip;
+        });
 };
 
 
},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){
@@ -1511,16 +1512,16 @@ var out = {
      */
     forEach: function(cb) {
         var filename, relativePath, file;
+        /* jshint ignore:start */
+        // ignore warning about unwanted properties because this.files is a 
null prototype object
         for (filename in this.files) {
-            if (!this.files.hasOwnProperty(filename)) {
-                continue;
-            }
             file = this.files[filename];
             relativePath = filename.slice(this.root.length, filename.length);
             if (relativePath && filename.slice(0, this.root.length) === 
this.root) { // the file is in the current root
                 cb(relativePath, file); // TODO reverse the parameters ? need 
to be clean AND consistent with the filter search fn...
             }
         }
+        /* jshint ignore:end */
     },
 
     /**
@@ -1667,7 +1668,7 @@ var out = {
           opts.type = opts.type.toLowerCase();
           opts.compression = opts.compression.toUpperCase();
 
-          // "binarystring" is prefered but the internals use "string".
+          // "binarystring" is preferred but the internals use "string".
           if(opts.type === "binarystring") {
             opts.type = "string";
           }
@@ -1876,9 +1877,9 @@ DataReader.prototype = {
         // see implementations
     },
     /**
-     * Find the last occurence of a zip signature (4 bytes).
+     * Find the last occurrence of a zip signature (4 bytes).
      * @param {string} sig the signature to find.
-     * @return {number} the index of the last occurence, -1 if not found.
+     * @return {number} the index of the last occurrence, -1 if not found.
      */
     lastIndexOfSignature: function(sig) {
         // see implementations
@@ -3122,7 +3123,7 @@ function stringToArrayLike(str, array) {
 
 /**
  * An helper for the function arrayLikeToString.
- * This contains static informations and functions that
+ * This contains static information and functions that
  * can be optimized by the browser JIT compiler.
  */
 var arrayToStringHelper = {
@@ -3862,7 +3863,7 @@ ZipEntry.prototype = {
         reader.skip(localExtraFieldsLength);
 
         if (this.compressedSize === -1 || this.uncompressedSize === -1) {
-            throw new Error("Bug or corrupted zip : didn't get enough 
informations from the central directory " + "(compressedSize === -1 || 
uncompressedSize === -1)");
+            throw new Error("Bug or corrupted zip : didn't get enough 
information from the central directory " + "(compressedSize === -1 || 
uncompressedSize === -1)");
         }
 
         compression = findCompression(this.compressionMethod);
@@ -3976,7 +3977,7 @@ ZipEntry.prototype = {
             this.extraFields = {};
         }
 
-        while (reader.index < end) {
+        while (reader.index + 4 < end) {
             extraFieldId = reader.readInt(2);
             extraFieldLength = reader.readInt(2);
             extraFieldValue = reader.readData(extraFieldLength);
@@ -3987,6 +3988,8 @@ ZipEntry.prototype = {
                 value: extraFieldValue
             };
         }
+
+        reader.setIndex(end);
     },
     /**
      * Apply an UTF8 transformation if needed.

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.min.js
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.min.js?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.min.js
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/jquery/jszip/dist/jszip.min.js
 Mon Apr  4 13:47:28 2022
@@ -1,6 +1,6 @@
 /*!
 
-JSZip v3.2.1 - A JavaScript class for generating and reading zip files
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
 <http://stuartk.com/jszip>
 
 (c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
@@ -10,4 +10,4 @@ JSZip uses the library pako released und
 https://github.com/nodeca/pako/blob/master/LICENSE
 */
 

[... 5 lines stripped ...]
Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/member-search-index.zip
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/member-search-index.zip?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/TorqueGeneratorTaskTest.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/TorqueGeneratorTaskTest.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/TorqueGeneratorTaskTest.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/TorqueGeneratorTaskTest.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>TorqueGeneratorTaskTest (Torque Generator Ant tasks 5.1 Test 
API)</title>
+<title>TorqueGeneratorTaskTest (Torque Generator Ant tasks 5.2-SNAPSHOT Test 
API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="TorqueGeneratorTaskTest (Torque Generator 
Ant tasks 5.1 Test API)";
+            parent.document.title="TorqueGeneratorTaskTest (Torque Generator 
Ant tasks 5.2-SNAPSHOT Test API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/class-use/TorqueGeneratorTaskTest.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/class-use/TorqueGeneratorTaskTest.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/class-use/TorqueGeneratorTaskTest.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/class-use/TorqueGeneratorTaskTest.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Uses of Class org.apache.torque.ant.task.TorqueGeneratorTaskTest 
(Torque Generator Ant tasks 5.1 Test API)</title>
+<title>Uses of Class org.apache.torque.ant.task.TorqueGeneratorTaskTest 
(Torque Generator Ant tasks 5.2-SNAPSHOT Test API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.torque.ant.task.TorqueGeneratorTaskTest (Torque Generator Ant tasks 
5.1 Test API)";
+            parent.document.title="Uses of Class 
org.apache.torque.ant.task.TorqueGeneratorTaskTest (Torque Generator Ant tasks 
5.2-SNAPSHOT Test API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-summary.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-summary.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-summary.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-summary.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>org.apache.torque.ant.task (Torque Generator Ant tasks 5.1 Test 
API)</title>
+<title>org.apache.torque.ant.task (Torque Generator Ant tasks 5.2-SNAPSHOT 
Test API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.torque.ant.task (Torque 
Generator Ant tasks 5.1 Test API)";
+            parent.document.title="org.apache.torque.ant.task (Torque 
Generator Ant tasks 5.2-SNAPSHOT Test API)";
         }
     }
     catch(err) {
@@ -95,6 +95,13 @@ $('.navPadding').css('padding-top', $('.
 <h1 title="Package" class="title">Package&nbsp;org.apache.torque.ant.task</h1>
 </div>
 <div class="contentContainer">
+<section role="region"><a id="package.description">
+<!--   -->
+</a>
+<div class="block"><p>
+      This package contains the ant task classes.
+    </p></div>
+</section>
 <ul class="blockList">
 <li class="blockList">
 <table class="typeSummary">

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-tree.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-tree.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-tree.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-tree.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>org.apache.torque.ant.task Class Hierarchy (Torque Generator Ant tasks 
5.1 Test API)</title>
+<title>org.apache.torque.ant.task Class Hierarchy (Torque Generator Ant tasks 
5.2-SNAPSHOT Test API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="org.apache.torque.ant.task Class Hierarchy 
(Torque Generator Ant tasks 5.1 Test API)";
+            parent.document.title="org.apache.torque.ant.task Class Hierarchy 
(Torque Generator Ant tasks 5.2-SNAPSHOT Test API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-use.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-use.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-use.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/org/apache/torque/ant/task/package-use.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Uses of Package org.apache.torque.ant.task (Torque Generator Ant tasks 
5.1 Test API)</title>
+<title>Uses of Package org.apache.torque.ant.task (Torque Generator Ant tasks 
5.2-SNAPSHOT Test API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Package org.apache.torque.ant.task 
(Torque Generator Ant tasks 5.1 Test API)";
+            parent.document.title="Uses of Package org.apache.torque.ant.task 
(Torque Generator Ant tasks 5.2-SNAPSHOT Test API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/overview-tree.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/overview-tree.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/overview-tree.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/overview-tree.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Class Hierarchy (Torque Generator Ant tasks 5.1 Test API)</title>
+<title>Class Hierarchy (Torque Generator Ant tasks 5.2-SNAPSHOT Test 
API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Class Hierarchy (Torque Generator Ant tasks 
5.1 Test API)";
+            parent.document.title="Class Hierarchy (Torque Generator Ant tasks 
5.2-SNAPSHOT Test API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/package-search-index.zip
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/package-search-index.zip?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/type-search-index.zip
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/ant-tasks/reports/testapidocs/type-search-index.zip?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/dependencies.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/dependencies.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/dependencies.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/dependencies.html
 Mon Apr  4 13:47:28 2022
@@ -146,7 +146,7 @@
           <ul class="breadcrumb">
         <li id="publishDate">Last Published: 2022-02-02<span 
class="divider">|</span>
 </li>
-          <li id="projectVersion">Version: 5.1</li>
+          <li id="projectVersion">Version: 5.2-SNAPSHOT</li>
           </ul>
         </div>
       </header>
@@ -758,7 +758,7 @@
         <ul>
             
             <li>
-                org.apache.torque:torque-generator:jar:5.1 <img id="_img1" 
src="./images/icon_info_sml.gif" alt="[Information]" 
onclick="toggleDependencyDetails( '_dep0', '_img1' );" style="cursor: pointer; 
vertical-align: text-bottom;">
+                org.apache.torque:torque-generator:jar:5.2-SNAPSHOT <img 
id="_img1" src="./images/icon_info_sml.gif" alt="[Information]" 
onclick="toggleDependencyDetails( '_dep0', '_img1' );" style="cursor: pointer; 
vertical-align: text-bottom;">
                 <div id="_dep0" style="display:none">
                     
                     <table border="0" class="bodyTable">

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/index.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/index.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/index.html 
(original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/index.html 
Mon Apr  4 13:47:28 2022
@@ -146,7 +146,7 @@
           <ul class="breadcrumb">
         <li id="publishDate">Last Published: 2022-02-02<span 
class="divider">|</span>
 </li>
-          <li id="projectVersion">Version: 5.1</li>
+          <li id="projectVersion">Version: 5.2-SNAPSHOT</li>
           </ul>
         </div>
       </header>

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses-index.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses-index.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses-index.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses-index.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>All Classes (Torque Generator 5.1 API)</title>
+<title>All Classes (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="All Classes (Torque Generator 5.1 API)";
+            parent.document.title="All Classes (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allclasses.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>All Classes (Torque Generator 5.1 API)</title>
+<title>All Classes (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allpackages-index.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allpackages-index.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allpackages-index.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/allpackages-index.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>All Packages (Torque Generator 5.1 API)</title>
+<title>All Packages (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="All Packages (Torque Generator 5.1 API)";
+            parent.document.title="All Packages (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/constant-values.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/constant-values.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/constant-values.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/constant-values.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Constant Field Values (Torque Generator 5.1 API)</title>
+<title>Constant Field Values (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Constant Field Values (Torque Generator 5.1 
API)";
+            parent.document.title="Constant Field Values (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/deprecated-list.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/deprecated-list.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/deprecated-list.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/deprecated-list.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Deprecated List (Torque Generator 5.1 API)</title>
+<title>Deprecated List (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Deprecated List (Torque Generator 5.1 API)";
+            parent.document.title="Deprecated List (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/help-doc.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/help-doc.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/help-doc.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/help-doc.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>API Help (Torque Generator 5.1 API)</title>
+<title>API Help (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="API Help (Torque Generator 5.1 API)";
+            parent.document.title="API Help (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index-all.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index-all.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index-all.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index-all.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Index (Torque Generator 5.1 API)</title>
+<title>Index (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Index (Torque Generator 5.1 API)";
+            parent.document.title="Index (Torque Generator 5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/index.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Overview (Torque Generator 5.1 API)</title>
+<title>Overview (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="stylesheet.css" title="Style">
 <link rel="stylesheet" type="text/css" href="jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Overview (Torque Generator 5.1 API)";
+            parent.document.title="Overview (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {
@@ -92,7 +92,7 @@ $('.navPadding').css('padding-top', $('.
 </nav>
 </header>
 <div class="header">
-<h1 class="title">Torque Generator 5.1 API</h1>
+<h1 class="title">Torque Generator 5.2-SNAPSHOT API</h1>
 </div>
 <main role="main">
 <div class="contentContainer">

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.js
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.js?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.js
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.js
 Mon Apr  4 13:47:28 2022
@@ -1,6 +1,6 @@
 /*!
 
-JSZip v3.2.1 - A JavaScript class for generating and reading zip files
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
 <http://stuartk.com/jszip>
 
 (c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
@@ -123,7 +123,6 @@ exports.decode = function(input) {
 
 var external = require("./external");
 var DataWorker = require('./stream/DataWorker');
-var DataLengthProbe = require('./stream/DataLengthProbe');
 var Crc32Probe = require('./stream/Crc32Probe');
 var DataLengthProbe = require('./stream/DataLengthProbe');
 
@@ -149,14 +148,14 @@ CompressedObject.prototype = {
      * Create a worker to get the uncompressed content.
      * @return {GenericWorker} the worker.
      */
-    getContentWorker : function () {
+    getContentWorker: function () {
         var worker = new 
DataWorker(external.Promise.resolve(this.compressedContent))
-        .pipe(this.compression.uncompressWorker())
-        .pipe(new DataLengthProbe("data_length"));
+            .pipe(this.compression.uncompressWorker())
+            .pipe(new DataLengthProbe("data_length"));
 
         var that = this;
         worker.on("end", function () {
-            if(this.streamInfo['data_length'] !== that.uncompressedSize) {
+            if (this.streamInfo['data_length'] !== that.uncompressedSize) {
                 throw new Error("Bug : uncompressed data size mismatch");
             }
         });
@@ -166,19 +165,19 @@ CompressedObject.prototype = {
      * Create a worker to get the compressed content.
      * @return {GenericWorker} the worker.
      */
-    getCompressedWorker : function () {
+    getCompressedWorker: function () {
         return new DataWorker(external.Promise.resolve(this.compressedContent))
-        .withStreamInfo("compressedSize", this.compressedSize)
-        .withStreamInfo("uncompressedSize", this.uncompressedSize)
-        .withStreamInfo("crc32", this.crc32)
-        .withStreamInfo("compression", this.compression)
-        ;
+            .withStreamInfo("compressedSize", this.compressedSize)
+            .withStreamInfo("uncompressedSize", this.uncompressedSize)
+            .withStreamInfo("crc32", this.crc32)
+            .withStreamInfo("compression", this.compression)
+            ;
     }
 };
 
 /**
  * Chain the given worker with other workers to compress the content with the
- * given compresion.
+ * given compression.
  * @param {GenericWorker} uncompressedWorker the worker to pipe.
  * @param {Object} compression the compression object.
  * @param {Object} compressionOptions the options to use when compressing.
@@ -186,11 +185,11 @@ CompressedObject.prototype = {
  */
 CompressedObject.createWorkerFrom = function (uncompressedWorker, compression, 
compressionOptions) {
     return uncompressedWorker
-    .pipe(new Crc32Probe())
-    .pipe(new DataLengthProbe("uncompressedSize"))
-    .pipe(compression.compressWorker(compressionOptions))
-    .pipe(new DataLengthProbe("compressedSize"))
-    .withStreamInfo("compression", compression);
+        .pipe(new Crc32Probe())
+        .pipe(new DataLengthProbe("uncompressedSize"))
+        .pipe(compression.compressWorker(compressionOptions))
+        .pipe(new DataLengthProbe("compressedSize"))
+        .withStreamInfo("compression", compression);
 };
 
 module.exports = CompressedObject;
@@ -484,7 +483,7 @@ var generateDosExternalFileAttr = functi
 
 /**
  * Generate the various parts used in the construction of the final zip file.
- * @param {Object} streamInfo the hash with informations about the compressed 
file.
+ * @param {Object} streamInfo the hash with information about the compressed 
file.
  * @param {Boolean} streamedContent is the content streamed ?
  * @param {Boolean} streamingEnded is the stream finished ?
  * @param {number} offset the current offset from the start of the zip file.
@@ -707,7 +706,7 @@ var generateCentralDirectoryEnd = functi
 
 /**
  * Generate data descriptors for a file entry.
- * @param {Object} streamInfo the hash generated by a worker, containing 
informations
+ * @param {Object} streamInfo the hash generated by a worker, containing 
information
  * on the file entry.
  * @return {String} the data descriptors.
  */
@@ -759,7 +758,7 @@ function ZipFileWorker(streamFiles, comm
     // The total number of entries in this zip file.
     this.entriesCount = 0;
     // the name of the file currently being added, null when handling the end 
of the zip file.
-    // Used for the emited metadata.
+    // Used for the emitted metadata.
     this.currentFile = null;
 
 
@@ -1034,7 +1033,10 @@ function JSZip() {
     //   "folder/" : {...},
     //   "folder/data.txt" : {...}
     // }
-    this.files = {};
+    // NOTE: we use a null prototype because we do not
+    // want filenames like "toString" coming from a zip file
+    // to overwrite methods and attributes in a normal Object.
+    this.files = Object.create(null);
 
     this.comment = null;
 
@@ -1057,7 +1059,7 @@ JSZip.defaults = require('./defaults');
 
 // TODO find a better way to handle this version,
 // a require('package.json').version doesn't work with webpack, see #327
-JSZip.version = "3.2.0";
+JSZip.version = "3.7.1";
 
 JSZip.loadAsync = function (content, options) {
     return new JSZip().loadAsync(content, options);
@@ -1071,7 +1073,6 @@ module.exports = JSZip;
 var utils = require('./utils');
 var external = require("./external");
 var utf8 = require('./utf8');
-var utils = require('./utils');
 var ZipEntries = require('./zipEntries');
 var Crc32Probe = require('./stream/Crc32Probe');
 var nodejsUtils = require("./nodejsUtils");
@@ -1087,18 +1088,18 @@ function checkEntryCRC32(zipEntry) {
         worker.on("error", function (e) {
             reject(e);
         })
-        .on("end", function () {
-            if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
-                reject(new Error("Corrupted zip : CRC32 mismatch"));
-            } else {
-                resolve();
-            }
-        })
-        .resume();
+            .on("end", function () {
+                if (worker.streamInfo.crc32 !== zipEntry.decompressed.crc32) {
+                    reject(new Error("Corrupted zip : CRC32 mismatch"));
+                } else {
+                    resolve();
+                }
+            })
+            .resume();
     });
 }
 
-module.exports = function(data, options) {
+module.exports = function (data, options) {
     var zip = this;
     options = utils.extend(options || {}, {
         base64: false,
@@ -1113,41 +1114,41 @@ module.exports = function(data, options)
     }
 
     return utils.prepareContent("the loaded zip file", data, true, 
options.optimizedBinaryString, options.base64)
-    .then(function(data) {
-        var zipEntries = new ZipEntries(options);
-        zipEntries.load(data);
-        return zipEntries;
-    }).then(function checkCRC32(zipEntries) {
-        var promises = [external.Promise.resolve(zipEntries)];
-        var files = zipEntries.files;
-        if (options.checkCRC32) {
+        .then(function (data) {
+            var zipEntries = new ZipEntries(options);
+            zipEntries.load(data);
+            return zipEntries;
+        }).then(function checkCRC32(zipEntries) {
+            var promises = [external.Promise.resolve(zipEntries)];
+            var files = zipEntries.files;
+            if (options.checkCRC32) {
+                for (var i = 0; i < files.length; i++) {
+                    promises.push(checkEntryCRC32(files[i]));
+                }
+            }
+            return external.Promise.all(promises);
+        }).then(function addFiles(results) {
+            var zipEntries = results.shift();
+            var files = zipEntries.files;
             for (var i = 0; i < files.length; i++) {
-                promises.push(checkEntryCRC32(files[i]));
+                var input = files[i];
+                zip.file(input.fileNameStr, input.decompressed, {
+                    binary: true,
+                    optimizedBinaryString: true,
+                    date: input.date,
+                    dir: input.dir,
+                    comment: input.fileCommentStr.length ? 
input.fileCommentStr : null,
+                    unixPermissions: input.unixPermissions,
+                    dosPermissions: input.dosPermissions,
+                    createFolders: options.createFolders
+                });
+            }
+            if (zipEntries.zipComment.length) {
+                zip.comment = zipEntries.zipComment;
             }
-        }
-        return external.Promise.all(promises);
-    }).then(function addFiles(results) {
-        var zipEntries = results.shift();
-        var files = zipEntries.files;
-        for (var i = 0; i < files.length; i++) {
-            var input = files[i];
-            zip.file(input.fileNameStr, input.decompressed, {
-                binary: true,
-                optimizedBinaryString: true,
-                date: input.date,
-                dir: input.dir,
-                comment : input.fileCommentStr.length ? input.fileCommentStr : 
null,
-                unixPermissions : input.unixPermissions,
-                dosPermissions : input.dosPermissions,
-                createFolders: options.createFolders
-            });
-        }
-        if (zipEntries.zipComment.length) {
-            zip.comment = zipEntries.zipComment;
-        }
 
-        return zip;
-    });
+            return zip;
+        });
 };
 
 
},{"./external":6,"./nodejsUtils":14,"./stream/Crc32Probe":25,"./utf8":31,"./utils":32,"./zipEntries":33}],12:[function(require,module,exports){
@@ -1511,16 +1512,16 @@ var out = {
      */
     forEach: function(cb) {
         var filename, relativePath, file;
+        /* jshint ignore:start */
+        // ignore warning about unwanted properties because this.files is a 
null prototype object
         for (filename in this.files) {
-            if (!this.files.hasOwnProperty(filename)) {
-                continue;
-            }
             file = this.files[filename];
             relativePath = filename.slice(this.root.length, filename.length);
             if (relativePath && filename.slice(0, this.root.length) === 
this.root) { // the file is in the current root
                 cb(relativePath, file); // TODO reverse the parameters ? need 
to be clean AND consistent with the filter search fn...
             }
         }
+        /* jshint ignore:end */
     },
 
     /**
@@ -1667,7 +1668,7 @@ var out = {
           opts.type = opts.type.toLowerCase();
           opts.compression = opts.compression.toUpperCase();
 
-          // "binarystring" is prefered but the internals use "string".
+          // "binarystring" is preferred but the internals use "string".
           if(opts.type === "binarystring") {
             opts.type = "string";
           }
@@ -1876,9 +1877,9 @@ DataReader.prototype = {
         // see implementations
     },
     /**
-     * Find the last occurence of a zip signature (4 bytes).
+     * Find the last occurrence of a zip signature (4 bytes).
      * @param {string} sig the signature to find.
-     * @return {number} the index of the last occurence, -1 if not found.
+     * @return {number} the index of the last occurrence, -1 if not found.
      */
     lastIndexOfSignature: function(sig) {
         // see implementations
@@ -3122,7 +3123,7 @@ function stringToArrayLike(str, array) {
 
 /**
  * An helper for the function arrayLikeToString.
- * This contains static informations and functions that
+ * This contains static information and functions that
  * can be optimized by the browser JIT compiler.
  */
 var arrayToStringHelper = {
@@ -3862,7 +3863,7 @@ ZipEntry.prototype = {
         reader.skip(localExtraFieldsLength);
 
         if (this.compressedSize === -1 || this.uncompressedSize === -1) {
-            throw new Error("Bug or corrupted zip : didn't get enough 
informations from the central directory " + "(compressedSize === -1 || 
uncompressedSize === -1)");
+            throw new Error("Bug or corrupted zip : didn't get enough 
information from the central directory " + "(compressedSize === -1 || 
uncompressedSize === -1)");
         }
 
         compression = findCompression(this.compressionMethod);
@@ -3976,7 +3977,7 @@ ZipEntry.prototype = {
             this.extraFields = {};
         }
 
-        while (reader.index < end) {
+        while (reader.index + 4 < end) {
             extraFieldId = reader.readInt(2);
             extraFieldLength = reader.readInt(2);
             extraFieldValue = reader.readData(extraFieldLength);
@@ -3987,6 +3988,8 @@ ZipEntry.prototype = {
                 value: extraFieldValue
             };
         }
+
+        reader.setIndex(end);
     },
     /**
      * Apply an UTF8 transformation if needed.

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.min.js
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.min.js?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.min.js
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/jquery/jszip/dist/jszip.min.js
 Mon Apr  4 13:47:28 2022
@@ -1,6 +1,6 @@
 /*!
 
-JSZip v3.2.1 - A JavaScript class for generating and reading zip files
+JSZip v3.7.1 - A JavaScript class for generating and reading zip files
 <http://stuartk.com/jszip>
 
 (c) 2009-2016 Stuart Knightley <stuart [at] stuartk.com>
@@ -10,4 +10,4 @@ JSZip uses the library pako released und
 https://github.com/nodeca/pako/blob/master/LICENSE
 */
 

[... 5 lines stripped ...]
Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/member-search-index.zip
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/member-search-index.zip?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
Binary files - no diff available.

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/GeneratorException.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/GeneratorException.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/GeneratorException.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/GeneratorException.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>GeneratorException (Torque Generator 5.1 API)</title>
+<title>GeneratorException (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" href="../../../../jquery/jquery-ui.css" 
title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="GeneratorException (Torque Generator 5.1 
API)";
+            parent.document.title="GeneratorException (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/class-use/GeneratorException.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/class-use/GeneratorException.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/class-use/GeneratorException.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/class-use/GeneratorException.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Uses of Class org.apache.torque.generator.GeneratorException (Torque 
Generator 5.1 API)</title>
+<title>Uses of Class org.apache.torque.generator.GeneratorException (Torque 
Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.torque.generator.GeneratorException (Torque Generator 5.1 API)";
+            parent.document.title="Uses of Class 
org.apache.torque.generator.GeneratorException (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/AbstractConfigurationProvider.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/AbstractConfigurationProvider.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/AbstractConfigurationProvider.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/AbstractConfigurationProvider.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>AbstractConfigurationProvider (Torque Generator 5.1 API)</title>
+<title>AbstractConfigurationProvider (Torque Generator 5.2-SNAPSHOT 
API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="AbstractConfigurationProvider (Torque 
Generator 5.1 API)";
+            parent.document.title="AbstractConfigurationProvider (Torque 
Generator 5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClassHelper.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClassHelper.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClassHelper.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClassHelper.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>ClassHelper (Torque Generator 5.1 API)</title>
+<title>ClassHelper (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClassHelper (Torque Generator 5.1 API)";
+            parent.document.title="ClassHelper (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClasspathConfigurationProvider.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClasspathConfigurationProvider.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClasspathConfigurationProvider.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ClasspathConfigurationProvider.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>ClasspathConfigurationProvider (Torque Generator 5.1 API)</title>
+<title>ClasspathConfigurationProvider (Torque Generator 5.2-SNAPSHOT 
API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ClasspathConfigurationProvider (Torque 
Generator 5.1 API)";
+            parent.document.title="ClasspathConfigurationProvider (Torque 
Generator 5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/Configuration.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/Configuration.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/Configuration.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/Configuration.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Configuration (Torque Generator 5.1 API)</title>
+<title>Configuration (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Configuration (Torque Generator 5.1 API)";
+            parent.document.title="Configuration (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationEntityResolver.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationEntityResolver.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationEntityResolver.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationEntityResolver.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>ConfigurationEntityResolver (Torque Generator 5.1 API)</title>
+<title>ConfigurationEntityResolver (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigurationEntityResolver (Torque 
Generator 5.1 API)";
+            parent.document.title="ConfigurationEntityResolver (Torque 
Generator 5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationException.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationException.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationException.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationException.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>ConfigurationException (Torque Generator 5.1 API)</title>
+<title>ConfigurationException (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigurationException (Torque Generator 
5.1 API)";
+            parent.document.title="ConfigurationException (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationHandlers.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationHandlers.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationHandlers.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationHandlers.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>ConfigurationHandlers (Torque Generator 5.1 API)</title>
+<title>ConfigurationHandlers (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigurationHandlers (Torque Generator 5.1 
API)";
+            parent.document.title="ConfigurationHandlers (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationProvider.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationProvider.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationProvider.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/ConfigurationProvider.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>ConfigurationProvider (Torque Generator 5.1 API)</title>
+<title>ConfigurationProvider (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="ConfigurationProvider (Torque Generator 5.1 
API)";
+            parent.document.title="ConfigurationProvider (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/DirectoryConfigurationProvider.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/DirectoryConfigurationProvider.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/DirectoryConfigurationProvider.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/DirectoryConfigurationProvider.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>DirectoryConfigurationProvider (Torque Generator 5.1 API)</title>
+<title>DirectoryConfigurationProvider (Torque Generator 5.2-SNAPSHOT 
API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="DirectoryConfigurationProvider (Torque 
Generator 5.1 API)";
+            parent.document.title="DirectoryConfigurationProvider (Torque 
Generator 5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/JarConfigurationProvider.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/JarConfigurationProvider.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/JarConfigurationProvider.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/JarConfigurationProvider.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>JarConfigurationProvider (Torque Generator 5.1 API)</title>
+<title>JarConfigurationProvider (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="JarConfigurationProvider (Torque Generator 
5.1 API)";
+            parent.document.title="JarConfigurationProvider (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/OutletTypes.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/OutletTypes.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/OutletTypes.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/OutletTypes.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>OutletTypes (Torque Generator 5.1 API)</title>
+<title>OutletTypes (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="OutletTypes (Torque Generator 5.1 API)";
+            parent.document.title="OutletTypes (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/PackageResources.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/PackageResources.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/PackageResources.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/PackageResources.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>PackageResources (Torque Generator 5.1 API)</title>
+<title>PackageResources (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="PackageResources (Torque Generator 5.1 
API)";
+            parent.document.title="PackageResources (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/SaxHelper.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/SaxHelper.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/SaxHelper.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/SaxHelper.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>SaxHelper (Torque Generator 5.1 API)</title>
+<title>SaxHelper (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="SaxHelper (Torque Generator 5.1 API)";
+            parent.document.title="SaxHelper (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitConfiguration.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitConfiguration.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitConfiguration.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitConfiguration.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>UnitConfiguration (Torque Generator 5.1 API)</title>
+<title>UnitConfiguration (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UnitConfiguration (Torque Generator 5.1 
API)";
+            parent.document.title="UnitConfiguration (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.Packaging.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.Packaging.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.Packaging.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.Packaging.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>UnitDescriptor.Packaging (Torque Generator 5.1 API)</title>
+<title>UnitDescriptor.Packaging (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UnitDescriptor.Packaging (Torque Generator 
5.1 API)";
+            parent.document.title="UnitDescriptor.Packaging (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/UnitDescriptor.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>UnitDescriptor (Torque Generator 5.1 API)</title>
+<title>UnitDescriptor (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="UnitDescriptor (Torque Generator 5.1 API)";
+            parent.document.title="UnitDescriptor (Torque Generator 
5.2-SNAPSHOT API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/XMLConstants.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/XMLConstants.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/XMLConstants.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/XMLConstants.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>XMLConstants (Torque Generator 5.1 API)</title>
+<title>XMLConstants (Torque Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="XMLConstants (Torque Generator 5.1 API)";
+            parent.document.title="XMLConstants (Torque Generator 5.2-SNAPSHOT 
API)";
         }
     }
     catch(err) {

Modified: 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/class-use/AbstractConfigurationProvider.html
URL: 
http://svn.apache.org/viewvc/sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/class-use/AbstractConfigurationProvider.html?rev=1079049&r1=1079048&r2=1079049&view=diff
==============================================================================
--- 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/class-use/AbstractConfigurationProvider.html
 (original)
+++ 
sites/db/content/torque/torque-5.1/documentation/modules/generator/reports/apidocs/org/apache/torque/generator/configuration/class-use/AbstractConfigurationProvider.html
 Mon Apr  4 13:47:28 2022
@@ -3,7 +3,7 @@
 <html lang="de">
 <head>
 <!-- Generated by javadoc -->
-<title>Uses of Class 
org.apache.torque.generator.configuration.AbstractConfigurationProvider (Torque 
Generator 5.1 API)</title>
+<title>Uses of Class 
org.apache.torque.generator.configuration.AbstractConfigurationProvider (Torque 
Generator 5.2-SNAPSHOT API)</title>
 <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
 <link rel="stylesheet" type="text/css" href="../../../../../../stylesheet.css" 
title="Style">
 <link rel="stylesheet" type="text/css" 
href="../../../../../../jquery/jquery-ui.css" title="Style">
@@ -20,7 +20,7 @@
 <script type="text/javascript"><!--
     try {
         if (location.href.indexOf('is-external=true') == -1) {
-            parent.document.title="Uses of Class 
org.apache.torque.generator.configuration.AbstractConfigurationProvider (Torque 
Generator 5.1 API)";
+            parent.document.title="Uses of Class 
org.apache.torque.generator.configuration.AbstractConfigurationProvider (Torque 
Generator 5.2-SNAPSHOT API)";
         }
     }
     catch(err) {


Reply via email to