bootstrap-source/bootstrap-3.0.3/docs-assets/js/jszip.js
author stetrabby <info@trabucchi.de>
Fri, 20 Dec 2013 22:49:16 +0100
changeset 54 0ded9d7748b7
permissions -rwxr-xr-x
initial less based on the pymove3d.css
info@54
     1
/**
info@54
     2
info@54
     3
JSZip - A Javascript class for generating and reading zip files
info@54
     4
<http://stuartk.com/jszip>
info@54
     5
info@54
     6
(c) 2009-2012 Stuart Knightley <stuart [at] stuartk.com>
info@54
     7
Dual licenced under the MIT license or GPLv3. See LICENSE.markdown.
info@54
     8
info@54
     9
Usage:
info@54
    10
   zip = new JSZip();
info@54
    11
   zip.file("hello.txt", "Hello, World!").file("tempfile", "nothing");
info@54
    12
   zip.folder("images").file("smile.gif", base64Data, {base64: true});
info@54
    13
   zip.file("Xmas.txt", "Ho ho ho !", {date : new Date("December 25, 2007 00:00:01")});
info@54
    14
   zip.remove("tempfile");
info@54
    15
info@54
    16
   base64zip = zip.generate();
info@54
    17
info@54
    18
**/
info@54
    19
// We use strict, but it should not be placed outside of a function because
info@54
    20
// the environment is shared inside the browser.
info@54
    21
// "use strict";
info@54
    22
info@54
    23
/**
info@54
    24
 * Representation a of zip file in js
info@54
    25
 * @constructor
info@54
    26
 * @param {String=|ArrayBuffer=|Uint8Array=|Buffer=} data the data to load, if any (optional).
info@54
    27
 * @param {Object=} options the options for creating this objects (optional).
info@54
    28
 */
info@54
    29
var JSZip = function(data, options) {
info@54
    30
   // object containing the files :
info@54
    31
   // {
info@54
    32
   //   "folder/" : {...},
info@54
    33
   //   "folder/data.txt" : {...}
info@54
    34
   // }
info@54
    35
   this.files = {};
info@54
    36
info@54
    37
   // Where we are in the hierarchy
info@54
    38
   this.root = "";
info@54
    39
info@54
    40
   if (data) {
info@54
    41
      this.load(data, options);
info@54
    42
   }
info@54
    43
};
info@54
    44
info@54
    45
JSZip.signature = {
info@54
    46
   LOCAL_FILE_HEADER : "\x50\x4b\x03\x04",
info@54
    47
   CENTRAL_FILE_HEADER : "\x50\x4b\x01\x02",
info@54
    48
   CENTRAL_DIRECTORY_END : "\x50\x4b\x05\x06",
info@54
    49
   ZIP64_CENTRAL_DIRECTORY_LOCATOR : "\x50\x4b\x06\x07",
info@54
    50
   ZIP64_CENTRAL_DIRECTORY_END : "\x50\x4b\x06\x06",
info@54
    51
   DATA_DESCRIPTOR : "\x50\x4b\x07\x08"
info@54
    52
};
info@54
    53
info@54
    54
// Default properties for a new file
info@54
    55
JSZip.defaults = {
info@54
    56
   base64: false,
info@54
    57
   binary: false,
info@54
    58
   dir: false,
info@54
    59
   date: null,
info@54
    60
   compression: null
info@54
    61
};
info@54
    62
info@54
    63
/*
info@54
    64
 * List features that require a modern browser, and if the current browser support them.
info@54
    65
 */
info@54
    66
JSZip.support = {
info@54
    67
   // contains true if JSZip can read/generate ArrayBuffer, false otherwise.
info@54
    68
   arraybuffer : (function(){
info@54
    69
      return typeof ArrayBuffer !== "undefined" && typeof Uint8Array !== "undefined";
info@54
    70
   })(),
info@54
    71
   // contains true if JSZip can read/generate nodejs Buffer, false otherwise.
info@54
    72
   nodebuffer : (function(){
info@54
    73
      return typeof Buffer !== "undefined";
info@54
    74
   })(),
info@54
    75
   // contains true if JSZip can read/generate Uint8Array, false otherwise.
info@54
    76
   uint8array : (function(){
info@54
    77
      return typeof Uint8Array !== "undefined";
info@54
    78
   })(),
info@54
    79
   // contains true if JSZip can read/generate Blob, false otherwise.
info@54
    80
   blob : (function(){
info@54
    81
      // the spec started with BlobBuilder then replaced it with a construtor for Blob.
info@54
    82
      // Result : we have browsers that :
info@54
    83
      // * know the BlobBuilder (but with prefix)
info@54
    84
      // * know the Blob constructor
info@54
    85
      // * know about Blob but not about how to build them
info@54
    86
      // About the "=== 0" test : if given the wrong type, it may be converted to a string.
info@54
    87
      // Instead of an empty content, we will get "[object Uint8Array]" for example.
info@54
    88
      if (typeof ArrayBuffer === "undefined") {
info@54
    89
         return false;
info@54
    90
      }
info@54
    91
      var buffer = new ArrayBuffer(0);
info@54
    92
      try {
info@54
    93
         return new Blob([buffer], { type: "application/zip" }).size === 0;
info@54
    94
      }
info@54
    95
      catch(e) {}
info@54
    96
info@54
    97
      try {
info@54
    98
         var BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder || window.MozBlobBuilder || window.MSBlobBuilder;
info@54
    99
         var builder = new BlobBuilder();
info@54
   100
         builder.append(buffer);
info@54
   101
         return builder.getBlob('application/zip').size === 0;
info@54
   102
      }
info@54
   103
      catch(e) {}
info@54
   104
info@54
   105
      return false;
info@54
   106
   })()
info@54
   107
};
info@54
   108
info@54
   109
JSZip.prototype = (function () {
info@54
   110
   var textEncoder, textDecoder;
info@54
   111
   if (
info@54
   112
      JSZip.support.uint8array &&
info@54
   113
      typeof TextEncoder === "function" &&
info@54
   114
      typeof TextDecoder === "function"
info@54
   115
   ) {
info@54
   116
      textEncoder = new TextEncoder("utf-8");
info@54
   117
      textDecoder = new TextDecoder("utf-8");
info@54
   118
   }
info@54
   119
info@54
   120
   /**
info@54
   121
    * Returns the raw data of a ZipObject, decompress the content if necessary.
info@54
   122
    * @param {ZipObject} file the file to use.
info@54
   123
    * @return {String|ArrayBuffer|Uint8Array|Buffer} the data.
info@54
   124
    */
info@54
   125
   var getRawData = function (file) {
info@54
   126
      if (file._data instanceof JSZip.CompressedObject) {
info@54
   127
         file._data = file._data.getContent();
info@54
   128
         file.options.binary = true;
info@54
   129
         file.options.base64 = false;
info@54
   130
info@54
   131
         if (JSZip.utils.getTypeOf(file._data) === "uint8array") {
info@54
   132
            var copy = file._data;
info@54
   133
            // when reading an arraybuffer, the CompressedObject mechanism will keep it and subarray() a Uint8Array.
info@54
   134
            // if we request a file in the same format, we might get the same Uint8Array or its ArrayBuffer (the original zip file).
info@54
   135
            file._data = new Uint8Array(copy.length);
info@54
   136
            // with an empty Uint8Array, Opera fails with a "Offset larger than array size"
info@54
   137
            if (copy.length !== 0) {
info@54
   138
               file._data.set(copy, 0);
info@54
   139
            }
info@54
   140
         }
info@54
   141
      }
info@54
   142
      return file._data;
info@54
   143
   };
info@54
   144
info@54
   145
   /**
info@54
   146
    * Returns the data of a ZipObject in a binary form. If the content is an unicode string, encode it.
info@54
   147
    * @param {ZipObject} file the file to use.
info@54
   148
    * @return {String|ArrayBuffer|Uint8Array|Buffer} the data.
info@54
   149
    */
info@54
   150
   var getBinaryData = function (file) {
info@54
   151
      var result = getRawData(file), type = JSZip.utils.getTypeOf(result);
info@54
   152
      if (type === "string") {
info@54
   153
         if (!file.options.binary) {
info@54
   154
            // unicode text !
info@54
   155
            // unicode string => binary string is a painful process, check if we can avoid it.
info@54
   156
            if (textEncoder) {
info@54
   157
               return textEncoder.encode(result);
info@54
   158
            }
info@54
   159
            if (JSZip.support.nodebuffer) {
info@54
   160
               return new Buffer(result, "utf-8");
info@54
   161
            }
info@54
   162
         }
info@54
   163
         return file.asBinary();
info@54
   164
      }
info@54
   165
      return result;
info@54
   166
   };
info@54
   167
info@54
   168
   /**
info@54
   169
    * Transform this._data into a string.
info@54
   170
    * @param {function} filter a function String -> String, applied if not null on the result.
info@54
   171
    * @return {String} the string representing this._data.
info@54
   172
    */
info@54
   173
   var dataToString = function (asUTF8) {
info@54
   174
      var result = getRawData(this);
info@54
   175
      if (result === null || typeof result === "undefined") {
info@54
   176
         return "";
info@54
   177
      }
info@54
   178
      // if the data is a base64 string, we decode it before checking the encoding !
info@54
   179
      if (this.options.base64) {
info@54
   180
         result = JSZip.base64.decode(result);
info@54
   181
      }
info@54
   182
      if (asUTF8 && this.options.binary) {
info@54
   183
         // JSZip.prototype.utf8decode supports arrays as input
info@54
   184
         // skip to array => string step, utf8decode will do it.
info@54
   185
         result = JSZip.prototype.utf8decode(result);
info@54
   186
      } else {
info@54
   187
         // no utf8 transformation, do the array => string step.
info@54
   188
         result = JSZip.utils.transformTo("string", result);
info@54
   189
      }
info@54
   190
info@54
   191
      if (!asUTF8 && !this.options.binary) {
info@54
   192
         result = JSZip.prototype.utf8encode(result);
info@54
   193
      }
info@54
   194
      return result;
info@54
   195
   };
info@54
   196
   /**
info@54
   197
    * A simple object representing a file in the zip file.
info@54
   198
    * @constructor
info@54
   199
    * @param {string} name the name of the file
info@54
   200
    * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data
info@54
   201
    * @param {Object} options the options of the file
info@54
   202
    */
info@54
   203
   var ZipObject = function (name, data, options) {
info@54
   204
      this.name = name;
info@54
   205
      this._data = data;
info@54
   206
      this.options = options;
info@54
   207
   };
info@54
   208
info@54
   209
   ZipObject.prototype = {
info@54
   210
      /**
info@54
   211
       * Return the content as UTF8 string.
info@54
   212
       * @return {string} the UTF8 string.
info@54
   213
       */
info@54
   214
      asText : function () {
info@54
   215
         return dataToString.call(this, true);
info@54
   216
      },
info@54
   217
      /**
info@54
   218
       * Returns the binary content.
info@54
   219
       * @return {string} the content as binary.
info@54
   220
       */
info@54
   221
      asBinary : function () {
info@54
   222
         return dataToString.call(this, false);
info@54
   223
      },
info@54
   224
      /**
info@54
   225
       * Returns the content as a nodejs Buffer.
info@54
   226
       * @return {Buffer} the content as a Buffer.
info@54
   227
       */
info@54
   228
      asNodeBuffer : function () {
info@54
   229
         var result = getBinaryData(this);
info@54
   230
         return JSZip.utils.transformTo("nodebuffer", result);
info@54
   231
      },
info@54
   232
      /**
info@54
   233
       * Returns the content as an Uint8Array.
info@54
   234
       * @return {Uint8Array} the content as an Uint8Array.
info@54
   235
       */
info@54
   236
      asUint8Array : function () {
info@54
   237
         var result = getBinaryData(this);
info@54
   238
         return JSZip.utils.transformTo("uint8array", result);
info@54
   239
      },
info@54
   240
      /**
info@54
   241
       * Returns the content as an ArrayBuffer.
info@54
   242
       * @return {ArrayBuffer} the content as an ArrayBufer.
info@54
   243
       */
info@54
   244
      asArrayBuffer : function () {
info@54
   245
         return this.asUint8Array().buffer;
info@54
   246
      }
info@54
   247
   };
info@54
   248
info@54
   249
   /**
info@54
   250
    * Transform an integer into a string in hexadecimal.
info@54
   251
    * @private
info@54
   252
    * @param {number} dec the number to convert.
info@54
   253
    * @param {number} bytes the number of bytes to generate.
info@54
   254
    * @returns {string} the result.
info@54
   255
    */
info@54
   256
   var decToHex = function(dec, bytes) {
info@54
   257
      var hex = "", i;
info@54
   258
      for(i = 0; i < bytes; i++) {
info@54
   259
         hex += String.fromCharCode(dec&0xff);
info@54
   260
         dec=dec>>>8;
info@54
   261
      }
info@54
   262
      return hex;
info@54
   263
   };
info@54
   264
info@54
   265
   /**
info@54
   266
    * Merge the objects passed as parameters into a new one.
info@54
   267
    * @private
info@54
   268
    * @param {...Object} var_args All objects to merge.
info@54
   269
    * @return {Object} a new object with the data of the others.
info@54
   270
    */
info@54
   271
   var extend = function () {
info@54
   272
      var result = {}, i, attr;
info@54
   273
      for (i = 0; i < arguments.length; i++) { // arguments is not enumerable in some browsers
info@54
   274
         for (attr in arguments[i]) {
info@54
   275
            if (arguments[i].hasOwnProperty(attr) && typeof result[attr] === "undefined") {
info@54
   276
               result[attr] = arguments[i][attr];
info@54
   277
            }
info@54
   278
         }
info@54
   279
      }
info@54
   280
      return result;
info@54
   281
   };
info@54
   282
info@54
   283
   /**
info@54
   284
    * Transforms the (incomplete) options from the user into the complete
info@54
   285
    * set of options to create a file.
info@54
   286
    * @private
info@54
   287
    * @param {Object} o the options from the user.
info@54
   288
    * @return {Object} the complete set of options.
info@54
   289
    */
info@54
   290
   var prepareFileAttrs = function (o) {
info@54
   291
      o = o || {};
info@54
   292
      /*jshint -W041 */
info@54
   293
      if (o.base64 === true && o.binary == null) {
info@54
   294
         o.binary = true;
info@54
   295
      }
info@54
   296
      /*jshint +W041 */
info@54
   297
      o = extend(o, JSZip.defaults);
info@54
   298
      o.date = o.date || new Date();
info@54
   299
      if (o.compression !== null) o.compression = o.compression.toUpperCase();
info@54
   300
info@54
   301
      return o;
info@54
   302
   };
info@54
   303
info@54
   304
   /**
info@54
   305
    * Add a file in the current folder.
info@54
   306
    * @private
info@54
   307
    * @param {string} name the name of the file
info@54
   308
    * @param {String|ArrayBuffer|Uint8Array|Buffer} data the data of the file
info@54
   309
    * @param {Object} o the options of the file
info@54
   310
    * @return {Object} the new file.
info@54
   311
    */
info@54
   312
   var fileAdd = function (name, data, o) {
info@54
   313
      // be sure sub folders exist
info@54
   314
      var parent = parentFolder(name), dataType = JSZip.utils.getTypeOf(data);
info@54
   315
      if (parent) {
info@54
   316
         folderAdd.call(this, parent);
info@54
   317
      }
info@54
   318
info@54
   319
      o = prepareFileAttrs(o);
info@54
   320
info@54
   321
      if (o.dir || data === null || typeof data === "undefined") {
info@54
   322
         o.base64 = false;
info@54
   323
         o.binary = false;
info@54
   324
         data = null;
info@54
   325
      } else if (dataType === "string") {
info@54
   326
         if (o.binary && !o.base64) {
info@54
   327
            // optimizedBinaryString == true means that the file has already been filtered with a 0xFF mask
info@54
   328
            if (o.optimizedBinaryString !== true) {
info@54
   329
               // this is a string, not in a base64 format.
info@54
   330
               // Be sure that this is a correct "binary string"
info@54
   331
               data = JSZip.utils.string2binary(data);
info@54
   332
            }
info@54
   333
         }
info@54
   334
      } else { // arraybuffer, uint8array, ...
info@54
   335
         o.base64 = false;
info@54
   336
         o.binary = true;
info@54
   337
info@54
   338
         if (!dataType && !(data instanceof JSZip.CompressedObject)) {
info@54
   339
            throw new Error("The data of '" + name + "' is in an unsupported format !");
info@54
   340
         }
info@54
   341
info@54
   342
         // special case : it's way easier to work with Uint8Array than with ArrayBuffer
info@54
   343
         if (dataType === "arraybuffer") {
info@54
   344
            data = JSZip.utils.transformTo("uint8array", data);
info@54
   345
         }
info@54
   346
      }
info@54
   347
info@54
   348
      var object = new ZipObject(name, data, o);
info@54
   349
      this.files[name] = object;
info@54
   350
      return object;
info@54
   351
   };
info@54
   352
info@54
   353
info@54
   354
   /**
info@54
   355
    * Find the parent folder of the path.
info@54
   356
    * @private
info@54
   357
    * @param {string} path the path to use
info@54
   358
    * @return {string} the parent folder, or ""
info@54
   359
    */
info@54
   360
   var parentFolder = function (path) {
info@54
   361
      if (path.slice(-1) == '/') {
info@54
   362
         path = path.substring(0, path.length - 1);
info@54
   363
      }
info@54
   364
      var lastSlash = path.lastIndexOf('/');
info@54
   365
      return (lastSlash > 0) ? path.substring(0, lastSlash) : "";
info@54
   366
   };
info@54
   367
info@54
   368
   /**
info@54
   369
    * Add a (sub) folder in the current folder.
info@54
   370
    * @private
info@54
   371
    * @param {string} name the folder's name
info@54
   372
    * @return {Object} the new folder.
info@54
   373
    */
info@54
   374
   var folderAdd = function (name) {
info@54
   375
      // Check the name ends with a /
info@54
   376
      if (name.slice(-1) != "/") {
info@54
   377
         name += "/"; // IE doesn't like substr(-1)
info@54
   378
      }
info@54
   379
info@54
   380
      // Does this folder already exist?
info@54
   381
      if (!this.files[name]) {
info@54
   382
         fileAdd.call(this, name, null, {dir:true});
info@54
   383
      }
info@54
   384
      return this.files[name];
info@54
   385
   };
info@54
   386
info@54
   387
   /**
info@54
   388
    * Generate a JSZip.CompressedObject for a given zipOject.
info@54
   389
    * @param {ZipObject} file the object to read.
info@54
   390
    * @param {JSZip.compression} compression the compression to use.
info@54
   391
    * @return {JSZip.CompressedObject} the compressed result.
info@54
   392
    */
info@54
   393
   var generateCompressedObjectFrom = function (file, compression) {
info@54
   394
      var result = new JSZip.CompressedObject(), content;
info@54
   395
info@54
   396
      // the data has not been decompressed, we might reuse things !
info@54
   397
      if (file._data instanceof JSZip.CompressedObject) {
info@54
   398
         result.uncompressedSize = file._data.uncompressedSize;
info@54
   399
         result.crc32 = file._data.crc32;
info@54
   400
info@54
   401
         if (result.uncompressedSize === 0 || file.options.dir) {
info@54
   402
            compression = JSZip.compressions['STORE'];
info@54
   403
            result.compressedContent = "";
info@54
   404
            result.crc32 = 0;
info@54
   405
         } else if (file._data.compressionMethod === compression.magic) {
info@54
   406
            result.compressedContent = file._data.getCompressedContent();
info@54
   407
         } else {
info@54
   408
            content = file._data.getContent();
info@54
   409
            // need to decompress / recompress
info@54
   410
            result.compressedContent = compression.compress(JSZip.utils.transformTo(compression.compressInputType, content));
info@54
   411
         }
info@54
   412
      } else {
info@54
   413
         // have uncompressed data
info@54
   414
         content = getBinaryData(file);
info@54
   415
         if (!content || content.length === 0 || file.options.dir) {
info@54
   416
            compression = JSZip.compressions['STORE'];
info@54
   417
            content = "";
info@54
   418
         }
info@54
   419
         result.uncompressedSize = content.length;
info@54
   420
         result.crc32 = this.crc32(content);
info@54
   421
         result.compressedContent = compression.compress(JSZip.utils.transformTo(compression.compressInputType, content));
info@54
   422
      }
info@54
   423
info@54
   424
      result.compressedSize = result.compressedContent.length;
info@54
   425
      result.compressionMethod = compression.magic;
info@54
   426
info@54
   427
      return result;
info@54
   428
   };
info@54
   429
info@54
   430
   /**
info@54
   431
    * Generate the various parts used in the construction of the final zip file.
info@54
   432
    * @param {string} name the file name.
info@54
   433
    * @param {ZipObject} file the file content.
info@54
   434
    * @param {JSZip.CompressedObject} compressedObject the compressed object.
info@54
   435
    * @param {number} offset the current offset from the start of the zip file.
info@54
   436
    * @return {object} the zip parts.
info@54
   437
    */
info@54
   438
   var generateZipParts = function(name, file, compressedObject, offset) {
info@54
   439
      var data = compressedObject.compressedContent,
info@54
   440
          utfEncodedFileName = this.utf8encode(file.name),
info@54
   441
          useUTF8 = utfEncodedFileName !== file.name,
info@54
   442
          o       = file.options,
info@54
   443
          dosTime,
info@54
   444
          dosDate;
info@54
   445
info@54
   446
      // date
info@54
   447
      // @see http://www.delorie.com/djgpp/doc/rbinter/it/52/13.html
info@54
   448
      // @see http://www.delorie.com/djgpp/doc/rbinter/it/65/16.html
info@54
   449
      // @see http://www.delorie.com/djgpp/doc/rbinter/it/66/16.html
info@54
   450
info@54
   451
      dosTime = o.date.getHours();
info@54
   452
      dosTime = dosTime << 6;
info@54
   453
      dosTime = dosTime | o.date.getMinutes();
info@54
   454
      dosTime = dosTime << 5;
info@54
   455
      dosTime = dosTime | o.date.getSeconds() / 2;
info@54
   456
info@54
   457
      dosDate = o.date.getFullYear() - 1980;
info@54
   458
      dosDate = dosDate << 4;
info@54
   459
      dosDate = dosDate | (o.date.getMonth() + 1);
info@54
   460
      dosDate = dosDate << 5;
info@54
   461
      dosDate = dosDate | o.date.getDate();
info@54
   462
info@54
   463
info@54
   464
      var header = "";
info@54
   465
info@54
   466
      // version needed to extract
info@54
   467
      header += "\x0A\x00";
info@54
   468
      // general purpose bit flag
info@54
   469
      // set bit 11 if utf8
info@54
   470
      header += useUTF8 ? "\x00\x08" : "\x00\x00";
info@54
   471
      // compression method
info@54
   472
      header += compressedObject.compressionMethod;
info@54
   473
      // last mod file time
info@54
   474
      header += decToHex(dosTime, 2);
info@54
   475
      // last mod file date
info@54
   476
      header += decToHex(dosDate, 2);
info@54
   477
      // crc-32
info@54
   478
      header += decToHex(compressedObject.crc32, 4);
info@54
   479
      // compressed size
info@54
   480
      header += decToHex(compressedObject.compressedSize, 4);
info@54
   481
      // uncompressed size
info@54
   482
      header += decToHex(compressedObject.uncompressedSize, 4);
info@54
   483
      // file name length
info@54
   484
      header += decToHex(utfEncodedFileName.length, 2);
info@54
   485
      // extra field length
info@54
   486
      header += "\x00\x00";
info@54
   487
info@54
   488
info@54
   489
      var fileRecord = JSZip.signature.LOCAL_FILE_HEADER + header + utfEncodedFileName;
info@54
   490
info@54
   491
      var dirRecord = JSZip.signature.CENTRAL_FILE_HEADER +
info@54
   492
      // version made by (00: DOS)
info@54
   493
      "\x14\x00" +
info@54
   494
      // file header (common to file and central directory)
info@54
   495
      header +
info@54
   496
      // file comment length
info@54
   497
      "\x00\x00" +
info@54
   498
      // disk number start
info@54
   499
      "\x00\x00" +
info@54
   500
      // internal file attributes TODO
info@54
   501
      "\x00\x00" +
info@54
   502
      // external file attributes
info@54
   503
      (file.options.dir===true?"\x10\x00\x00\x00":"\x00\x00\x00\x00")+
info@54
   504
      // relative offset of local header
info@54
   505
      decToHex(offset, 4) +
info@54
   506
      // file name
info@54
   507
      utfEncodedFileName;
info@54
   508
info@54
   509
info@54
   510
      return {
info@54
   511
         fileRecord : fileRecord,
info@54
   512
         dirRecord : dirRecord,
info@54
   513
         compressedObject : compressedObject
info@54
   514
      };
info@54
   515
   };
info@54
   516
info@54
   517
   /**
info@54
   518
    * An object to write any content to a string.
info@54
   519
    * @constructor
info@54
   520
    */
info@54
   521
   var StringWriter = function () {
info@54
   522
      this.data = [];
info@54
   523
   };
info@54
   524
   StringWriter.prototype = {
info@54
   525
      /**
info@54
   526
       * Append any content to the current string.
info@54
   527
       * @param {Object} input the content to add.
info@54
   528
       */
info@54
   529
      append : function (input) {
info@54
   530
         input = JSZip.utils.transformTo("string", input);
info@54
   531
         this.data.push(input);
info@54
   532
      },
info@54
   533
      /**
info@54
   534
       * Finalize the construction an return the result.
info@54
   535
       * @return {string} the generated string.
info@54
   536
       */
info@54
   537
      finalize : function () {
info@54
   538
         return this.data.join("");
info@54
   539
      }
info@54
   540
   };
info@54
   541
   /**
info@54
   542
    * An object to write any content to an Uint8Array.
info@54
   543
    * @constructor
info@54
   544
    * @param {number} length The length of the array.
info@54
   545
    */
info@54
   546
   var Uint8ArrayWriter = function (length) {
info@54
   547
      this.data = new Uint8Array(length);
info@54
   548
      this.index = 0;
info@54
   549
   };
info@54
   550
   Uint8ArrayWriter.prototype = {
info@54
   551
      /**
info@54
   552
       * Append any content to the current array.
info@54
   553
       * @param {Object} input the content to add.
info@54
   554
       */
info@54
   555
      append : function (input) {
info@54
   556
         if (input.length !== 0) {
info@54
   557
            // with an empty Uint8Array, Opera fails with a "Offset larger than array size"
info@54
   558
            input = JSZip.utils.transformTo("uint8array", input);
info@54
   559
            this.data.set(input, this.index);
info@54
   560
            this.index += input.length;
info@54
   561
         }
info@54
   562
      },
info@54
   563
      /**
info@54
   564
       * Finalize the construction an return the result.
info@54
   565
       * @return {Uint8Array} the generated array.
info@54
   566
       */
info@54
   567
      finalize : function () {
info@54
   568
         return this.data;
info@54
   569
      }
info@54
   570
   };
info@54
   571
info@54
   572
   // return the actual prototype of JSZip
info@54
   573
   return {
info@54
   574
      /**
info@54
   575
       * Read an existing zip and merge the data in the current JSZip object.
info@54
   576
       * The implementation is in jszip-load.js, don't forget to include it.
info@54
   577
       * @param {String|ArrayBuffer|Uint8Array|Buffer} stream  The stream to load
info@54
   578
       * @param {Object} options Options for loading the stream.
info@54
   579
       *  options.base64 : is the stream in base64 ? default : false
info@54
   580
       * @return {JSZip} the current JSZip object
info@54
   581
       */
info@54
   582
      load : function (stream, options) {
info@54
   583
         throw new Error("Load method is not defined. Is the file jszip-load.js included ?");
info@54
   584
      },
info@54
   585
info@54
   586
      /**
info@54
   587
       * Filter nested files/folders with the specified function.
info@54
   588
       * @param {Function} search the predicate to use :
info@54
   589
       * function (relativePath, file) {...}
info@54
   590
       * It takes 2 arguments : the relative path and the file.
info@54
   591
       * @return {Array} An array of matching elements.
info@54
   592
       */
info@54
   593
      filter : function (search) {
info@54
   594
         var result = [], filename, relativePath, file, fileClone;
info@54
   595
         for (filename in this.files) {
info@54
   596
            if ( !this.files.hasOwnProperty(filename) ) { continue; }
info@54
   597
            file = this.files[filename];
info@54
   598
            // return a new object, don't let the user mess with our internal objects :)
info@54
   599
            fileClone = new ZipObject(file.name, file._data, extend(file.options));
info@54
   600
            relativePath = filename.slice(this.root.length, filename.length);
info@54
   601
            if (filename.slice(0, this.root.length) === this.root && // the file is in the current root
info@54
   602
                search(relativePath, fileClone)) { // and the file matches the function
info@54
   603
               result.push(fileClone);
info@54
   604
            }
info@54
   605
         }
info@54
   606
         return result;
info@54
   607
      },
info@54
   608
info@54
   609
      /**
info@54
   610
       * Add a file to the zip file, or search a file.
info@54
   611
       * @param   {string|RegExp} name The name of the file to add (if data is defined),
info@54
   612
       * the name of the file to find (if no data) or a regex to match files.
info@54
   613
       * @param   {String|ArrayBuffer|Uint8Array|Buffer} data  The file data, either raw or base64 encoded
info@54
   614
       * @param   {Object} o     File options
info@54
   615
       * @return  {JSZip|Object|Array} this JSZip object (when adding a file),
info@54
   616
       * a file (when searching by string) or an array of files (when searching by regex).
info@54
   617
       */
info@54
   618
      file : function(name, data, o) {
info@54
   619
         if (arguments.length === 1) {
info@54
   620
            if (JSZip.utils.isRegExp(name)) {
info@54
   621
               var regexp = name;
info@54
   622
               return this.filter(function(relativePath, file) {
info@54
   623
                  return !file.options.dir && regexp.test(relativePath);
info@54
   624
               });
info@54
   625
            } else { // text
info@54
   626
               return this.filter(function (relativePath, file) {
info@54
   627
                  return !file.options.dir && relativePath === name;
info@54
   628
               })[0]||null;
info@54
   629
            }
info@54
   630
         } else { // more than one argument : we have data !
info@54
   631
            name = this.root+name;
info@54
   632
            fileAdd.call(this, name, data, o);
info@54
   633
         }
info@54
   634
         return this;
info@54
   635
      },
info@54
   636
info@54
   637
      /**
info@54
   638
       * Add a directory to the zip file, or search.
info@54
   639
       * @param   {String|RegExp} arg The name of the directory to add, or a regex to search folders.
info@54
   640
       * @return  {JSZip} an object with the new directory as the root, or an array containing matching folders.
info@54
   641
       */
info@54
   642
      folder : function(arg) {
info@54
   643
         if (!arg) {
info@54
   644
            return this;
info@54
   645
         }
info@54
   646
info@54
   647
         if (JSZip.utils.isRegExp(arg)) {
info@54
   648
            return this.filter(function(relativePath, file) {
info@54
   649
               return file.options.dir && arg.test(relativePath);
info@54
   650
            });
info@54
   651
         }
info@54
   652
info@54
   653
         // else, name is a new folder
info@54
   654
         var name = this.root + arg;
info@54
   655
         var newFolder = folderAdd.call(this, name);
info@54
   656
info@54
   657
         // Allow chaining by returning a new object with this folder as the root
info@54
   658
         var ret = this.clone();
info@54
   659
         ret.root = newFolder.name;
info@54
   660
         return ret;
info@54
   661
      },
info@54
   662
info@54
   663
      /**
info@54
   664
       * Delete a file, or a directory and all sub-files, from the zip
info@54
   665
       * @param {string} name the name of the file to delete
info@54
   666
       * @return {JSZip} this JSZip object
info@54
   667
       */
info@54
   668
      remove : function(name) {
info@54
   669
         name = this.root + name;
info@54
   670
         var file = this.files[name];
info@54
   671
         if (!file) {
info@54
   672
            // Look for any folders
info@54
   673
            if (name.slice(-1) != "/") {
info@54
   674
               name += "/";
info@54
   675
            }
info@54
   676
            file = this.files[name];
info@54
   677
         }
info@54
   678
info@54
   679
         if (file) {
info@54
   680
            if (!file.options.dir) {
info@54
   681
               // file
info@54
   682
               delete this.files[name];
info@54
   683
            } else {
info@54
   684
               // folder
info@54
   685
               var kids = this.filter(function (relativePath, file) {
info@54
   686
                  return file.name.slice(0, name.length) === name;
info@54
   687
               });
info@54
   688
               for (var i = 0; i < kids.length; i++) {
info@54
   689
                  delete this.files[kids[i].name];
info@54
   690
               }
info@54
   691
            }
info@54
   692
         }
info@54
   693
info@54
   694
         return this;
info@54
   695
      },
info@54
   696
info@54
   697
      /**
info@54
   698
       * Generate the complete zip file
info@54
   699
       * @param {Object} options the options to generate the zip file :
info@54
   700
       * - base64, (deprecated, use type instead) true to generate base64.
info@54
   701
       * - compression, "STORE" by default.
info@54
   702
       * - type, "base64" by default. Values are : string, base64, uint8array, arraybuffer, blob.
info@54
   703
       * @return {String|Uint8Array|ArrayBuffer|Buffer|Blob} the zip file
info@54
   704
       */
info@54
   705
      generate : function(options) {
info@54
   706
         options = extend(options || {}, {
info@54
   707
            base64 : true,
info@54
   708
            compression : "STORE",
info@54
   709
            type : "base64"
info@54
   710
         });
info@54
   711
info@54
   712
         JSZip.utils.checkSupport(options.type);
info@54
   713
info@54
   714
         var zipData = [], localDirLength = 0, centralDirLength = 0, writer, i;
info@54
   715
info@54
   716
info@54
   717
         // first, generate all the zip parts.
info@54
   718
         for (var name in this.files) {
info@54
   719
            if ( !this.files.hasOwnProperty(name) ) { continue; }
info@54
   720
            var file = this.files[name];
info@54
   721
info@54
   722
            var compressionName = file.options.compression || options.compression.toUpperCase();
info@54
   723
            var compression = JSZip.compressions[compressionName];
info@54
   724
            if (!compression) {
info@54
   725
               throw new Error(compressionName + " is not a valid compression method !");
info@54
   726
            }
info@54
   727
info@54
   728
            var compressedObject = generateCompressedObjectFrom.call(this, file, compression);
info@54
   729
info@54
   730
            var zipPart = generateZipParts.call(this, name, file, compressedObject, localDirLength);
info@54
   731
            localDirLength += zipPart.fileRecord.length + compressedObject.compressedSize;
info@54
   732
            centralDirLength += zipPart.dirRecord.length;
info@54
   733
            zipData.push(zipPart);
info@54
   734
         }
info@54
   735
info@54
   736
         var dirEnd = "";
info@54
   737
info@54
   738
         // end of central dir signature
info@54
   739
         dirEnd = JSZip.signature.CENTRAL_DIRECTORY_END +
info@54
   740
         // number of this disk
info@54
   741
         "\x00\x00" +
info@54
   742
         // number of the disk with the start of the central directory
info@54
   743
         "\x00\x00" +
info@54
   744
         // total number of entries in the central directory on this disk
info@54
   745
         decToHex(zipData.length, 2) +
info@54
   746
         // total number of entries in the central directory
info@54
   747
         decToHex(zipData.length, 2) +
info@54
   748
         // size of the central directory   4 bytes
info@54
   749
         decToHex(centralDirLength, 4) +
info@54
   750
         // offset of start of central directory with respect to the starting disk number
info@54
   751
         decToHex(localDirLength, 4) +
info@54
   752
         // .ZIP file comment length
info@54
   753
         "\x00\x00";
info@54
   754
info@54
   755
info@54
   756
         // we have all the parts (and the total length)
info@54
   757
         // time to create a writer !
info@54
   758
         switch(options.type.toLowerCase()) {
info@54
   759
            case "uint8array" :
info@54
   760
            case "arraybuffer" :
info@54
   761
            case "blob" :
info@54
   762
            case "nodebuffer" :
info@54
   763
               writer = new Uint8ArrayWriter(localDirLength + centralDirLength + dirEnd.length);
info@54
   764
               break;
info@54
   765
            // case "base64" :
info@54
   766
            // case "string" :
info@54
   767
            default :
info@54
   768
               writer = new StringWriter(localDirLength + centralDirLength + dirEnd.length);
info@54
   769
               break;
info@54
   770
         }
info@54
   771
info@54
   772
         for (i = 0; i < zipData.length; i++) {
info@54
   773
            writer.append(zipData[i].fileRecord);
info@54
   774
            writer.append(zipData[i].compressedObject.compressedContent);
info@54
   775
         }
info@54
   776
         for (i = 0; i < zipData.length; i++) {
info@54
   777
            writer.append(zipData[i].dirRecord);
info@54
   778
         }
info@54
   779
info@54
   780
         writer.append(dirEnd);
info@54
   781
info@54
   782
         var zip = writer.finalize();
info@54
   783
info@54
   784
info@54
   785
info@54
   786
         switch(options.type.toLowerCase()) {
info@54
   787
            // case "zip is an Uint8Array"
info@54
   788
            case "uint8array" :
info@54
   789
            case "arraybuffer" :
info@54
   790
            case "nodebuffer" :
info@54
   791
               return JSZip.utils.transformTo(options.type.toLowerCase(), zip);
info@54
   792
            case "blob" :
info@54
   793
               return JSZip.utils.arrayBuffer2Blob(JSZip.utils.transformTo("arraybuffer", zip));
info@54
   794
info@54
   795
            // case "zip is a string"
info@54
   796
            case "base64" :
info@54
   797
               return (options.base64) ? JSZip.base64.encode(zip) : zip;
info@54
   798
            default : // case "string" :
info@54
   799
               return zip;
info@54
   800
         }
info@54
   801
      },
info@54
   802
info@54
   803
      /**
info@54
   804
       *
info@54
   805
       *  Javascript crc32
info@54
   806
       *  http://www.webtoolkit.info/
info@54
   807
       *
info@54
   808
       */
info@54
   809
      crc32 : function crc32(input, crc) {
info@54
   810
         if (typeof input === "undefined" || !input.length) {
info@54
   811
            return 0;
info@54
   812
         }
info@54
   813
info@54
   814
         var isArray = JSZip.utils.getTypeOf(input) !== "string";
info@54
   815
info@54
   816
         var table = [
info@54
   817
            0x00000000, 0x77073096, 0xEE0E612C, 0x990951BA,
info@54
   818
            0x076DC419, 0x706AF48F, 0xE963A535, 0x9E6495A3,
info@54
   819
            0x0EDB8832, 0x79DCB8A4, 0xE0D5E91E, 0x97D2D988,
info@54
   820
            0x09B64C2B, 0x7EB17CBD, 0xE7B82D07, 0x90BF1D91,
info@54
   821
            0x1DB71064, 0x6AB020F2, 0xF3B97148, 0x84BE41DE,
info@54
   822
            0x1ADAD47D, 0x6DDDE4EB, 0xF4D4B551, 0x83D385C7,
info@54
   823
            0x136C9856, 0x646BA8C0, 0xFD62F97A, 0x8A65C9EC,
info@54
   824
            0x14015C4F, 0x63066CD9, 0xFA0F3D63, 0x8D080DF5,
info@54
   825
            0x3B6E20C8, 0x4C69105E, 0xD56041E4, 0xA2677172,
info@54
   826
            0x3C03E4D1, 0x4B04D447, 0xD20D85FD, 0xA50AB56B,
info@54
   827
            0x35B5A8FA, 0x42B2986C, 0xDBBBC9D6, 0xACBCF940,
info@54
   828
            0x32D86CE3, 0x45DF5C75, 0xDCD60DCF, 0xABD13D59,
info@54
   829
            0x26D930AC, 0x51DE003A, 0xC8D75180, 0xBFD06116,
info@54
   830
            0x21B4F4B5, 0x56B3C423, 0xCFBA9599, 0xB8BDA50F,
info@54
   831
            0x2802B89E, 0x5F058808, 0xC60CD9B2, 0xB10BE924,
info@54
   832
            0x2F6F7C87, 0x58684C11, 0xC1611DAB, 0xB6662D3D,
info@54
   833
            0x76DC4190, 0x01DB7106, 0x98D220BC, 0xEFD5102A,
info@54
   834
            0x71B18589, 0x06B6B51F, 0x9FBFE4A5, 0xE8B8D433,
info@54
   835
            0x7807C9A2, 0x0F00F934, 0x9609A88E, 0xE10E9818,
info@54
   836
            0x7F6A0DBB, 0x086D3D2D, 0x91646C97, 0xE6635C01,
info@54
   837
            0x6B6B51F4, 0x1C6C6162, 0x856530D8, 0xF262004E,
info@54
   838
            0x6C0695ED, 0x1B01A57B, 0x8208F4C1, 0xF50FC457,
info@54
   839
            0x65B0D9C6, 0x12B7E950, 0x8BBEB8EA, 0xFCB9887C,
info@54
   840
            0x62DD1DDF, 0x15DA2D49, 0x8CD37CF3, 0xFBD44C65,
info@54
   841
            0x4DB26158, 0x3AB551CE, 0xA3BC0074, 0xD4BB30E2,
info@54
   842
            0x4ADFA541, 0x3DD895D7, 0xA4D1C46D, 0xD3D6F4FB,
info@54
   843
            0x4369E96A, 0x346ED9FC, 0xAD678846, 0xDA60B8D0,
info@54
   844
            0x44042D73, 0x33031DE5, 0xAA0A4C5F, 0xDD0D7CC9,
info@54
   845
            0x5005713C, 0x270241AA, 0xBE0B1010, 0xC90C2086,
info@54
   846
            0x5768B525, 0x206F85B3, 0xB966D409, 0xCE61E49F,
info@54
   847
            0x5EDEF90E, 0x29D9C998, 0xB0D09822, 0xC7D7A8B4,
info@54
   848
            0x59B33D17, 0x2EB40D81, 0xB7BD5C3B, 0xC0BA6CAD,
info@54
   849
            0xEDB88320, 0x9ABFB3B6, 0x03B6E20C, 0x74B1D29A,
info@54
   850
            0xEAD54739, 0x9DD277AF, 0x04DB2615, 0x73DC1683,
info@54
   851
            0xE3630B12, 0x94643B84, 0x0D6D6A3E, 0x7A6A5AA8,
info@54
   852
            0xE40ECF0B, 0x9309FF9D, 0x0A00AE27, 0x7D079EB1,
info@54
   853
            0xF00F9344, 0x8708A3D2, 0x1E01F268, 0x6906C2FE,
info@54
   854
            0xF762575D, 0x806567CB, 0x196C3671, 0x6E6B06E7,
info@54
   855
            0xFED41B76, 0x89D32BE0, 0x10DA7A5A, 0x67DD4ACC,
info@54
   856
            0xF9B9DF6F, 0x8EBEEFF9, 0x17B7BE43, 0x60B08ED5,
info@54
   857
            0xD6D6A3E8, 0xA1D1937E, 0x38D8C2C4, 0x4FDFF252,
info@54
   858
            0xD1BB67F1, 0xA6BC5767, 0x3FB506DD, 0x48B2364B,
info@54
   859
            0xD80D2BDA, 0xAF0A1B4C, 0x36034AF6, 0x41047A60,
info@54
   860
            0xDF60EFC3, 0xA867DF55, 0x316E8EEF, 0x4669BE79,
info@54
   861
            0xCB61B38C, 0xBC66831A, 0x256FD2A0, 0x5268E236,
info@54
   862
            0xCC0C7795, 0xBB0B4703, 0x220216B9, 0x5505262F,
info@54
   863
            0xC5BA3BBE, 0xB2BD0B28, 0x2BB45A92, 0x5CB36A04,
info@54
   864
            0xC2D7FFA7, 0xB5D0CF31, 0x2CD99E8B, 0x5BDEAE1D,
info@54
   865
            0x9B64C2B0, 0xEC63F226, 0x756AA39C, 0x026D930A,
info@54
   866
            0x9C0906A9, 0xEB0E363F, 0x72076785, 0x05005713,
info@54
   867
            0x95BF4A82, 0xE2B87A14, 0x7BB12BAE, 0x0CB61B38,
info@54
   868
            0x92D28E9B, 0xE5D5BE0D, 0x7CDCEFB7, 0x0BDBDF21,
info@54
   869
            0x86D3D2D4, 0xF1D4E242, 0x68DDB3F8, 0x1FDA836E,
info@54
   870
            0x81BE16CD, 0xF6B9265B, 0x6FB077E1, 0x18B74777,
info@54
   871
            0x88085AE6, 0xFF0F6A70, 0x66063BCA, 0x11010B5C,
info@54
   872
            0x8F659EFF, 0xF862AE69, 0x616BFFD3, 0x166CCF45,
info@54
   873
            0xA00AE278, 0xD70DD2EE, 0x4E048354, 0x3903B3C2,
info@54
   874
            0xA7672661, 0xD06016F7, 0x4969474D, 0x3E6E77DB,
info@54
   875
            0xAED16A4A, 0xD9D65ADC, 0x40DF0B66, 0x37D83BF0,
info@54
   876
            0xA9BCAE53, 0xDEBB9EC5, 0x47B2CF7F, 0x30B5FFE9,
info@54
   877
            0xBDBDF21C, 0xCABAC28A, 0x53B39330, 0x24B4A3A6,
info@54
   878
            0xBAD03605, 0xCDD70693, 0x54DE5729, 0x23D967BF,
info@54
   879
            0xB3667A2E, 0xC4614AB8, 0x5D681B02, 0x2A6F2B94,
info@54
   880
            0xB40BBE37, 0xC30C8EA1, 0x5A05DF1B, 0x2D02EF8D
info@54
   881
         ];
info@54
   882
info@54
   883
         if (typeof(crc) == "undefined") { crc = 0; }
info@54
   884
         var x = 0;
info@54
   885
         var y = 0;
info@54
   886
         var byte = 0;
info@54
   887
info@54
   888
         crc = crc ^ (-1);
info@54
   889
         for( var i = 0, iTop = input.length; i < iTop; i++ ) {
info@54
   890
            byte = isArray ? input[i] : input.charCodeAt(i);
info@54
   891
            y = ( crc ^ byte ) & 0xFF;
info@54
   892
            x = table[y];
info@54
   893
            crc = ( crc >>> 8 ) ^ x;
info@54
   894
         }
info@54
   895
info@54
   896
         return crc ^ (-1);
info@54
   897
      },
info@54
   898
info@54
   899
      // Inspired by http://my.opera.com/GreyWyvern/blog/show.dml/1725165
info@54
   900
      clone : function() {
info@54
   901
         var newObj = new JSZip();
info@54
   902
         for (var i in this) {
info@54
   903
            if (typeof this[i] !== "function") {
info@54
   904
               newObj[i] = this[i];
info@54
   905
            }
info@54
   906
         }
info@54
   907
         return newObj;
info@54
   908
      },
info@54
   909
info@54
   910
info@54
   911
      /**
info@54
   912
       * http://www.webtoolkit.info/javascript-utf8.html
info@54
   913
       */
info@54
   914
      utf8encode : function (string) {
info@54
   915
         // TextEncoder + Uint8Array to binary string is faster than checking every bytes on long strings.
info@54
   916
         // http://jsperf.com/utf8encode-vs-textencoder
info@54
   917
         // On short strings (file names for example), the TextEncoder API is (currently) slower.
info@54
   918
         if (textEncoder) {
info@54
   919
            var u8 = textEncoder.encode(string);
info@54
   920
            return JSZip.utils.transformTo("string", u8);
info@54
   921
         }
info@54
   922
         if (JSZip.support.nodebuffer) {
info@54
   923
            return JSZip.utils.transformTo("string", new Buffer(string, "utf-8"));
info@54
   924
         }
info@54
   925
info@54
   926
         // array.join may be slower than string concatenation but generates less objects (less time spent garbage collecting).
info@54
   927
         // See also http://jsperf.com/array-direct-assignment-vs-push/31
info@54
   928
         var result = [], resIndex = 0;
info@54
   929
info@54
   930
         for (var n = 0; n < string.length; n++) {
info@54
   931
info@54
   932
            var c = string.charCodeAt(n);
info@54
   933
info@54
   934
            if (c < 128) {
info@54
   935
               result[resIndex++] = String.fromCharCode(c);
info@54
   936
            } else if ((c > 127) && (c < 2048)) {
info@54
   937
               result[resIndex++] = String.fromCharCode((c >> 6) | 192);
info@54
   938
               result[resIndex++] = String.fromCharCode((c & 63) | 128);
info@54
   939
            } else {
info@54
   940
               result[resIndex++] = String.fromCharCode((c >> 12) | 224);
info@54
   941
               result[resIndex++] = String.fromCharCode(((c >> 6) & 63) | 128);
info@54
   942
               result[resIndex++] = String.fromCharCode((c & 63) | 128);
info@54
   943
            }
info@54
   944
info@54
   945
         }
info@54
   946
info@54
   947
         return result.join("");
info@54
   948
      },
info@54
   949
info@54
   950
      /**
info@54
   951
       * http://www.webtoolkit.info/javascript-utf8.html
info@54
   952
       */
info@54
   953
      utf8decode : function (input) {
info@54
   954
         var result = [], resIndex = 0;
info@54
   955
         var type = JSZip.utils.getTypeOf(input);
info@54
   956
         var isArray = type !== "string";
info@54
   957
         var i = 0;
info@54
   958
         var c = 0, c1 = 0, c2 = 0, c3 = 0;
info@54
   959
info@54
   960
         // check if we can use the TextDecoder API
info@54
   961
         // see http://encoding.spec.whatwg.org/#api
info@54
   962
         if (textDecoder) {
info@54
   963
            return textDecoder.decode(
info@54
   964
               JSZip.utils.transformTo("uint8array", input)
info@54
   965
            );
info@54
   966
         }
info@54
   967
         if (JSZip.support.nodebuffer) {
info@54
   968
            return JSZip.utils.transformTo("nodebuffer", input).toString("utf-8");
info@54
   969
         }
info@54
   970
info@54
   971
         while ( i < input.length ) {
info@54
   972
info@54
   973
            c = isArray ? input[i] : input.charCodeAt(i);
info@54
   974
info@54
   975
            if (c < 128) {
info@54
   976
               result[resIndex++] = String.fromCharCode(c);
info@54
   977
               i++;
info@54
   978
            } else if ((c > 191) && (c < 224)) {
info@54
   979
               c2 = isArray ? input[i+1] : input.charCodeAt(i+1);
info@54
   980
               result[resIndex++] = String.fromCharCode(((c & 31) << 6) | (c2 & 63));
info@54
   981
               i += 2;
info@54
   982
            } else {
info@54
   983
               c2 = isArray ? input[i+1] : input.charCodeAt(i+1);
info@54
   984
               c3 = isArray ? input[i+2] : input.charCodeAt(i+2);
info@54
   985
               result[resIndex++] = String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
info@54
   986
               i += 3;
info@54
   987
            }
info@54
   988
info@54
   989
         }
info@54
   990
info@54
   991
         return result.join("");
info@54
   992
      }
info@54
   993
   };
info@54
   994
}());
info@54
   995
info@54
   996
/*
info@54
   997
 * Compression methods
info@54
   998
 * This object is filled in as follow :
info@54
   999
 * name : {
info@54
  1000
 *    magic // the 2 bytes indentifying the compression method
info@54
  1001
 *    compress // function, take the uncompressed content and return it compressed.
info@54
  1002
 *    uncompress // function, take the compressed content and return it uncompressed.
info@54
  1003
 *    compressInputType // string, the type accepted by the compress method. null to accept everything.
info@54
  1004
 *    uncompressInputType // string, the type accepted by the uncompress method. null to accept everything.
info@54
  1005
 * }
info@54
  1006
 *
info@54
  1007
 * STORE is the default compression method, so it's included in this file.
info@54
  1008
 * Other methods should go to separated files : the user wants modularity.
info@54
  1009
 */
info@54
  1010
JSZip.compressions = {
info@54
  1011
   "STORE" : {
info@54
  1012
      magic : "\x00\x00",
info@54
  1013
      compress : function (content) {
info@54
  1014
         return content; // no compression
info@54
  1015
      },
info@54
  1016
      uncompress : function (content) {
info@54
  1017
         return content; // no compression
info@54
  1018
      },
info@54
  1019
      compressInputType : null,
info@54
  1020
      uncompressInputType : null
info@54
  1021
   }
info@54
  1022
};
info@54
  1023
info@54
  1024
(function () {
info@54
  1025
   JSZip.utils = {
info@54
  1026
      /**
info@54
  1027
       * Convert a string to a "binary string" : a string containing only char codes between 0 and 255.
info@54
  1028
       * @param {string} str the string to transform.
info@54
  1029
       * @return {String} the binary string.
info@54
  1030
       */
info@54
  1031
      string2binary : function (str) {
info@54
  1032
         var result = "";
info@54
  1033
         for (var i = 0; i < str.length; i++) {
info@54
  1034
            result += String.fromCharCode(str.charCodeAt(i) & 0xff);
info@54
  1035
         }
info@54
  1036
         return result;
info@54
  1037
      },
info@54
  1038
      /**
info@54
  1039
       * Create a Uint8Array from the string.
info@54
  1040
       * @param {string} str the string to transform.
info@54
  1041
       * @return {Uint8Array} the typed array.
info@54
  1042
       * @throws {Error} an Error if the browser doesn't support the requested feature.
info@54
  1043
       * @deprecated : use JSZip.utils.transformTo instead.
info@54
  1044
       */
info@54
  1045
      string2Uint8Array : function (str) {
info@54
  1046
         return JSZip.utils.transformTo("uint8array", str);
info@54
  1047
      },
info@54
  1048
info@54
  1049
      /**
info@54
  1050
       * Create a string from the Uint8Array.
info@54
  1051
       * @param {Uint8Array} array the array to transform.
info@54
  1052
       * @return {string} the string.
info@54
  1053
       * @throws {Error} an Error if the browser doesn't support the requested feature.
info@54
  1054
       * @deprecated : use JSZip.utils.transformTo instead.
info@54
  1055
       */
info@54
  1056
      uint8Array2String : function (array) {
info@54
  1057
         return JSZip.utils.transformTo("string", array);
info@54
  1058
      },
info@54
  1059
      /**
info@54
  1060
       * Create a blob from the given ArrayBuffer.
info@54
  1061
       * @param {ArrayBuffer} buffer the buffer to transform.
info@54
  1062
       * @return {Blob} the result.
info@54
  1063
       * @throws {Error} an Error if the browser doesn't support the requested feature.
info@54
  1064
       */
info@54
  1065
      arrayBuffer2Blob : function (buffer) {
info@54
  1066
         JSZip.utils.checkSupport("blob");
info@54
  1067
info@54
  1068
         try {
info@54
  1069
            // Blob constructor
info@54
  1070
            return new Blob([buffer], { type: "application/zip" });
info@54
  1071
         }
info@54
  1072
         catch(e) {}
info@54
  1073
info@54
  1074
         try {
info@54
  1075
            // deprecated, browser only, old way
info@54
  1076
            var BlobBuilder = window.BlobBuilder || window.WebKitBlobBuilder || window.MozBlobBuilder || window.MSBlobBuilder;
info@54
  1077
            var builder = new BlobBuilder();
info@54
  1078
            builder.append(buffer);
info@54
  1079
            return builder.getBlob('application/zip');
info@54
  1080
         }
info@54
  1081
         catch(e) {}
info@54
  1082
info@54
  1083
         // well, fuck ?!
info@54
  1084
         throw new Error("Bug : can't construct the Blob.");
info@54
  1085
      },
info@54
  1086
      /**
info@54
  1087
       * Create a blob from the given string.
info@54
  1088
       * @param {string} str the string to transform.
info@54
  1089
       * @return {Blob} the result.
info@54
  1090
       * @throws {Error} an Error if the browser doesn't support the requested feature.
info@54
  1091
       */
info@54
  1092
      string2Blob : function (str) {
info@54
  1093
         var buffer = JSZip.utils.transformTo("arraybuffer", str);
info@54
  1094
         return JSZip.utils.arrayBuffer2Blob(buffer);
info@54
  1095
      }
info@54
  1096
   };
info@54
  1097
info@54
  1098
   /**
info@54
  1099
    * The identity function.
info@54
  1100
    * @param {Object} input the input.
info@54
  1101
    * @return {Object} the same input.
info@54
  1102
    */
info@54
  1103
   function identity(input) {
info@54
  1104
      return input;
info@54
  1105
   }
info@54
  1106
info@54
  1107
   /**
info@54
  1108
    * Fill in an array with a string.
info@54
  1109
    * @param {String} str the string to use.
info@54
  1110
    * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to fill in (will be mutated).
info@54
  1111
    * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated array.
info@54
  1112
    */
info@54
  1113
   function stringToArrayLike(str, array) {
info@54
  1114
      for (var i = 0; i < str.length; ++i) {
info@54
  1115
         array[i] = str.charCodeAt(i) & 0xFF;
info@54
  1116
      }
info@54
  1117
      return array;
info@54
  1118
   }
info@54
  1119
info@54
  1120
   /**
info@54
  1121
    * Transform an array-like object to a string.
info@54
  1122
    * @param {Array|ArrayBuffer|Uint8Array|Buffer} array the array to transform.
info@54
  1123
    * @return {String} the result.
info@54
  1124
    */
info@54
  1125
   function arrayLikeToString(array) {
info@54
  1126
      // Performances notes :
info@54
  1127
      // --------------------
info@54
  1128
      // String.fromCharCode.apply(null, array) is the fastest, see
info@54
  1129
      // see http://jsperf.com/converting-a-uint8array-to-a-string/2
info@54
  1130
      // but the stack is limited (and we can get huge arrays !).
info@54
  1131
      //
info@54
  1132
      // result += String.fromCharCode(array[i]); generate too many strings !
info@54
  1133
      //
info@54
  1134
      // This code is inspired by http://jsperf.com/arraybuffer-to-string-apply-performance/2
info@54
  1135
      var chunk = 65536;
info@54
  1136
      var result = [], len = array.length, type = JSZip.utils.getTypeOf(array), k = 0;
info@54
  1137
info@54
  1138
      var canUseApply = true;
info@54
  1139
      try {
info@54
  1140
         switch(type) {
info@54
  1141
            case "uint8array":
info@54
  1142
               String.fromCharCode.apply(null, new Uint8Array(0));
info@54
  1143
               break;
info@54
  1144
            case "nodebuffer":
info@54
  1145
               String.fromCharCode.apply(null, new Buffer(0));
info@54
  1146
               break;
info@54
  1147
         }
info@54
  1148
      } catch(e) {
info@54
  1149
         canUseApply = false;
info@54
  1150
      }
info@54
  1151
info@54
  1152
      // no apply : slow and painful algorithm
info@54
  1153
      // default browser on android 4.*
info@54
  1154
      if (!canUseApply) {
info@54
  1155
         var resultStr = "";
info@54
  1156
         for(var i = 0; i < array.length;i++) {
info@54
  1157
            resultStr += String.fromCharCode(array[i]);
info@54
  1158
         }
info@54
  1159
         return resultStr;
info@54
  1160
      }
info@54
  1161
info@54
  1162
      while (k < len && chunk > 1) {
info@54
  1163
         try {
info@54
  1164
            if (type === "array" || type === "nodebuffer") {
info@54
  1165
               result.push(String.fromCharCode.apply(null, array.slice(k, Math.min(k + chunk, len))));
info@54
  1166
            } else {
info@54
  1167
               result.push(String.fromCharCode.apply(null, array.subarray(k, Math.min(k + chunk, len))));
info@54
  1168
            }
info@54
  1169
            k += chunk;
info@54
  1170
         } catch (e) {
info@54
  1171
            chunk = Math.floor(chunk / 2);
info@54
  1172
         }
info@54
  1173
      }
info@54
  1174
      return result.join("");
info@54
  1175
   }
info@54
  1176
info@54
  1177
   /**
info@54
  1178
    * Copy the data from an array-like to an other array-like.
info@54
  1179
    * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayFrom the origin array.
info@54
  1180
    * @param {Array|ArrayBuffer|Uint8Array|Buffer} arrayTo the destination array which will be mutated.
info@54
  1181
    * @return {Array|ArrayBuffer|Uint8Array|Buffer} the updated destination array.
info@54
  1182
    */
info@54
  1183
   function arrayLikeToArrayLike(arrayFrom, arrayTo) {
info@54
  1184
      for(var i = 0; i < arrayFrom.length; i++) {
info@54
  1185
         arrayTo[i] = arrayFrom[i];
info@54
  1186
      }
info@54
  1187
      return arrayTo;
info@54
  1188
   }
info@54
  1189
info@54
  1190
   // a matrix containing functions to transform everything into everything.
info@54
  1191
   var transform = {};
info@54
  1192
info@54
  1193
   // string to ?
info@54
  1194
   transform["string"] = {
info@54
  1195
      "string" : identity,
info@54
  1196
      "array" : function (input) {
info@54
  1197
         return stringToArrayLike(input, new Array(input.length));
info@54
  1198
      },
info@54
  1199
      "arraybuffer" : function (input) {
info@54
  1200
         return transform["string"]["uint8array"](input).buffer;
info@54
  1201
      },
info@54
  1202
      "uint8array" : function (input) {
info@54
  1203
         return stringToArrayLike(input, new Uint8Array(input.length));
info@54
  1204
      },
info@54
  1205
      "nodebuffer" : function (input) {
info@54
  1206
         return stringToArrayLike(input, new Buffer(input.length));
info@54
  1207
      }
info@54
  1208
   };
info@54
  1209
info@54
  1210
   // array to ?
info@54
  1211
   transform["array"] = {
info@54
  1212
      "string" : arrayLikeToString,
info@54
  1213
      "array" : identity,
info@54
  1214
      "arraybuffer" : function (input) {
info@54
  1215
         return (new Uint8Array(input)).buffer;
info@54
  1216
      },
info@54
  1217
      "uint8array" : function (input) {
info@54
  1218
         return new Uint8Array(input);
info@54
  1219
      },
info@54
  1220
      "nodebuffer" : function (input) {
info@54
  1221
         return new Buffer(input);
info@54
  1222
      }
info@54
  1223
   };
info@54
  1224
info@54
  1225
   // arraybuffer to ?
info@54
  1226
   transform["arraybuffer"] = {
info@54
  1227
      "string" : function (input) {
info@54
  1228
         return arrayLikeToString(new Uint8Array(input));
info@54
  1229
      },
info@54
  1230
      "array" : function (input) {
info@54
  1231
         return arrayLikeToArrayLike(new Uint8Array(input), new Array(input.byteLength));
info@54
  1232
      },
info@54
  1233
      "arraybuffer" : identity,
info@54
  1234
      "uint8array" : function (input) {
info@54
  1235
         return new Uint8Array(input);
info@54
  1236
      },
info@54
  1237
      "nodebuffer" : function (input) {
info@54
  1238
         return new Buffer(new Uint8Array(input));
info@54
  1239
      }
info@54
  1240
   };
info@54
  1241
info@54
  1242
   // uint8array to ?
info@54
  1243
   transform["uint8array"] = {
info@54
  1244
      "string" : arrayLikeToString,
info@54
  1245
      "array" : function (input) {
info@54
  1246
         return arrayLikeToArrayLike(input, new Array(input.length));
info@54
  1247
      },
info@54
  1248
      "arraybuffer" : function (input) {
info@54
  1249
         return input.buffer;
info@54
  1250
      },
info@54
  1251
      "uint8array" : identity,
info@54
  1252
      "nodebuffer" : function(input) {
info@54
  1253
         return new Buffer(input);
info@54
  1254
      }
info@54
  1255
   };
info@54
  1256
info@54
  1257
   // nodebuffer to ?
info@54
  1258
   transform["nodebuffer"] = {
info@54
  1259
      "string" : arrayLikeToString,
info@54
  1260
      "array" : function (input) {
info@54
  1261
         return arrayLikeToArrayLike(input, new Array(input.length));
info@54
  1262
      },
info@54
  1263
      "arraybuffer" : function (input) {
info@54
  1264
         return transform["nodebuffer"]["uint8array"](input).buffer;
info@54
  1265
      },
info@54
  1266
      "uint8array" : function (input) {
info@54
  1267
         return arrayLikeToArrayLike(input, new Uint8Array(input.length));
info@54
  1268
      },
info@54
  1269
      "nodebuffer" : identity
info@54
  1270
   };
info@54
  1271
info@54
  1272
   /**
info@54
  1273
    * Transform an input into any type.
info@54
  1274
    * The supported output type are : string, array, uint8array, arraybuffer, nodebuffer.
info@54
  1275
    * If no output type is specified, the unmodified input will be returned.
info@54
  1276
    * @param {String} outputType the output type.
info@54
  1277
    * @param {String|Array|ArrayBuffer|Uint8Array|Buffer} input the input to convert.
info@54
  1278
    * @throws {Error} an Error if the browser doesn't support the requested output type.
info@54
  1279
    */
info@54
  1280
   JSZip.utils.transformTo = function (outputType, input) {
info@54
  1281
      if (!input) {
info@54
  1282
         // undefined, null, etc
info@54
  1283
         // an empty string won't harm.
info@54
  1284
         input = "";
info@54
  1285
      }
info@54
  1286
      if (!outputType) {
info@54
  1287
         return input;
info@54
  1288
      }
info@54
  1289
      JSZip.utils.checkSupport(outputType);
info@54
  1290
      var inputType = JSZip.utils.getTypeOf(input);
info@54
  1291
      var result = transform[inputType][outputType](input);
info@54
  1292
      return result;
info@54
  1293
   };
info@54
  1294
info@54
  1295
   /**
info@54
  1296
    * Return the type of the input.
info@54
  1297
    * The type will be in a format valid for JSZip.utils.transformTo : string, array, uint8array, arraybuffer.
info@54
  1298
    * @param {Object} input the input to identify.
info@54
  1299
    * @return {String} the (lowercase) type of the input.
info@54
  1300
    */
info@54
  1301
   JSZip.utils.getTypeOf = function (input) {
info@54
  1302
      if (typeof input === "string") {
info@54
  1303
         return "string";
info@54
  1304
      }
info@54
  1305
      if (Object.prototype.toString.call(input) === "[object Array]") {
info@54
  1306
         return "array";
info@54
  1307
      }
info@54
  1308
      if (JSZip.support.nodebuffer && Buffer.isBuffer(input)) {
info@54
  1309
         return "nodebuffer";
info@54
  1310
      }
info@54
  1311
      if (JSZip.support.uint8array && input instanceof Uint8Array) {
info@54
  1312
         return "uint8array";
info@54
  1313
      }
info@54
  1314
      if (JSZip.support.arraybuffer && input instanceof ArrayBuffer) {
info@54
  1315
         return "arraybuffer";
info@54
  1316
      }
info@54
  1317
   };
info@54
  1318
info@54
  1319
   /**
info@54
  1320
    * Cross-window, cross-Node-context regular expression detection
info@54
  1321
    * @param  {Object}  object Anything
info@54
  1322
    * @return {Boolean}        true if the object is a regular expression,
info@54
  1323
    * false otherwise
info@54
  1324
    */
info@54
  1325
   JSZip.utils.isRegExp = function (object) {
info@54
  1326
      return Object.prototype.toString.call(object) === "[object RegExp]";
info@54
  1327
   };
info@54
  1328
info@54
  1329
   /**
info@54
  1330
    * Throw an exception if the type is not supported.
info@54
  1331
    * @param {String} type the type to check.
info@54
  1332
    * @throws {Error} an Error if the browser doesn't support the requested type.
info@54
  1333
    */
info@54
  1334
   JSZip.utils.checkSupport = function (type) {
info@54
  1335
      var supported = true;
info@54
  1336
      switch (type.toLowerCase()) {
info@54
  1337
         case "uint8array":
info@54
  1338
            supported = JSZip.support.uint8array;
info@54
  1339
         break;
info@54
  1340
         case "arraybuffer":
info@54
  1341
            supported = JSZip.support.arraybuffer;
info@54
  1342
         break;
info@54
  1343
         case "nodebuffer":
info@54
  1344
            supported = JSZip.support.nodebuffer;
info@54
  1345
         break;
info@54
  1346
         case "blob":
info@54
  1347
            supported = JSZip.support.blob;
info@54
  1348
         break;
info@54
  1349
      }
info@54
  1350
      if (!supported) {
info@54
  1351
         throw new Error(type + " is not supported by this browser");
info@54
  1352
      }
info@54
  1353
   };
info@54
  1354
info@54
  1355
info@54
  1356
})();
info@54
  1357
info@54
  1358
(function (){
info@54
  1359
   /**
info@54
  1360
    * Represents an entry in the zip.
info@54
  1361
    * The content may or may not be compressed.
info@54
  1362
    * @constructor
info@54
  1363
    */
info@54
  1364
   JSZip.CompressedObject = function () {
info@54
  1365
         this.compressedSize = 0;
info@54
  1366
         this.uncompressedSize = 0;
info@54
  1367
         this.crc32 = 0;
info@54
  1368
         this.compressionMethod = null;
info@54
  1369
         this.compressedContent = null;
info@54
  1370
   };
info@54
  1371
info@54
  1372
   JSZip.CompressedObject.prototype = {
info@54
  1373
      /**
info@54
  1374
       * Return the decompressed content in an unspecified format.
info@54
  1375
       * The format will depend on the decompressor.
info@54
  1376
       * @return {Object} the decompressed content.
info@54
  1377
       */
info@54
  1378
      getContent : function () {
info@54
  1379
         return null; // see implementation
info@54
  1380
      },
info@54
  1381
      /**
info@54
  1382
       * Return the compressed content in an unspecified format.
info@54
  1383
       * The format will depend on the compressed conten source.
info@54
  1384
       * @return {Object} the compressed content.
info@54
  1385
       */
info@54
  1386
      getCompressedContent : function () {
info@54
  1387
         return null; // see implementation
info@54
  1388
      }
info@54
  1389
   };
info@54
  1390
})();
info@54
  1391
info@54
  1392
/**
info@54
  1393
 *
info@54
  1394
 *  Base64 encode / decode
info@54
  1395
 *  http://www.webtoolkit.info/
info@54
  1396
 *
info@54
  1397
 *  Hacked so that it doesn't utf8 en/decode everything
info@54
  1398
 **/
info@54
  1399
JSZip.base64 = (function() {
info@54
  1400
   // private property
info@54
  1401
   var _keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
info@54
  1402
info@54
  1403
   return {
info@54
  1404
      // public method for encoding
info@54
  1405
      encode : function(input, utf8) {
info@54
  1406
         var output = "";
info@54
  1407
         var chr1, chr2, chr3, enc1, enc2, enc3, enc4;
info@54
  1408
         var i = 0;
info@54
  1409
info@54
  1410
         while (i < input.length) {
info@54
  1411
info@54
  1412
            chr1 = input.charCodeAt(i++);
info@54
  1413
            chr2 = input.charCodeAt(i++);
info@54
  1414
            chr3 = input.charCodeAt(i++);
info@54
  1415
info@54
  1416
            enc1 = chr1 >> 2;
info@54
  1417
            enc2 = ((chr1 & 3) << 4) | (chr2 >> 4);
info@54
  1418
            enc3 = ((chr2 & 15) << 2) | (chr3 >> 6);
info@54
  1419
            enc4 = chr3 & 63;
info@54
  1420
info@54
  1421
            if (isNaN(chr2)) {
info@54
  1422
               enc3 = enc4 = 64;
info@54
  1423
            } else if (isNaN(chr3)) {
info@54
  1424
               enc4 = 64;
info@54
  1425
            }
info@54
  1426
info@54
  1427
            output = output +
info@54
  1428
               _keyStr.charAt(enc1) + _keyStr.charAt(enc2) +
info@54
  1429
               _keyStr.charAt(enc3) + _keyStr.charAt(enc4);
info@54
  1430
info@54
  1431
         }
info@54
  1432
info@54
  1433
         return output;
info@54
  1434
      },
info@54
  1435
info@54
  1436
      // public method for decoding
info@54
  1437
      decode : function(input, utf8) {
info@54
  1438
         var output = "";
info@54
  1439
         var chr1, chr2, chr3;
info@54
  1440
         var enc1, enc2, enc3, enc4;
info@54
  1441
         var i = 0;
info@54
  1442
info@54
  1443
         input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
info@54
  1444
info@54
  1445
         while (i < input.length) {
info@54
  1446
info@54
  1447
            enc1 = _keyStr.indexOf(input.charAt(i++));
info@54
  1448
            enc2 = _keyStr.indexOf(input.charAt(i++));
info@54
  1449
            enc3 = _keyStr.indexOf(input.charAt(i++));
info@54
  1450
            enc4 = _keyStr.indexOf(input.charAt(i++));
info@54
  1451
info@54
  1452
            chr1 = (enc1 << 2) | (enc2 >> 4);
info@54
  1453
            chr2 = ((enc2 & 15) << 4) | (enc3 >> 2);
info@54
  1454
            chr3 = ((enc3 & 3) << 6) | enc4;
info@54
  1455
info@54
  1456
            output = output + String.fromCharCode(chr1);
info@54
  1457
info@54
  1458
            if (enc3 != 64) {
info@54
  1459
               output = output + String.fromCharCode(chr2);
info@54
  1460
            }
info@54
  1461
            if (enc4 != 64) {
info@54
  1462
               output = output + String.fromCharCode(chr3);
info@54
  1463
            }
info@54
  1464
info@54
  1465
         }
info@54
  1466
info@54
  1467
         return output;
info@54
  1468
info@54
  1469
      }
info@54
  1470
   };
info@54
  1471
}());
info@54
  1472
info@54
  1473
// enforcing Stuk's coding style
info@54
  1474
// vim: set shiftwidth=3 softtabstop=3:
Impressum Datenschutzerklärung