update blueimp_upload to version 9.23
This commit is contained in:
parent
ea850e58d2
commit
71195895ba
3
library/blueimp_upload/.gitignore
vendored
Normal file
3
library/blueimp_upload/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
.DS_Store
|
||||||
|
*.pyc
|
||||||
|
node_modules
|
81
library/blueimp_upload/.jshintrc
Normal file
81
library/blueimp_upload/.jshintrc
Normal file
@ -0,0 +1,81 @@
|
|||||||
|
{
|
||||||
|
"bitwise" : true, // true: Prohibit bitwise operators (&, |, ^, etc.)
|
||||||
|
"camelcase" : true, // true: Identifiers must be in camelCase
|
||||||
|
"curly" : true, // true: Require {} for every new block or scope
|
||||||
|
"eqeqeq" : true, // true: Require triple equals (===) for comparison
|
||||||
|
"forin" : true, // true: Require filtering for..in loops with obj.hasOwnProperty()
|
||||||
|
"immed" : true, // true: Require immediate invocations to be wrapped in parens
|
||||||
|
// e.g. `(function () { } ());`
|
||||||
|
"indent" : 4, // {int} Number of spaces to use for indentation
|
||||||
|
"latedef" : true, // true: Require variables/functions to be defined before being used
|
||||||
|
"newcap" : true, // true: Require capitalization of all constructor functions e.g. `new F()`
|
||||||
|
"noarg" : true, // true: Prohibit use of `arguments.caller` and `arguments.callee`
|
||||||
|
"noempty" : true, // true: Prohibit use of empty blocks
|
||||||
|
"nonew" : true, // true: Prohibit use of constructors for side-effects (without assignment)
|
||||||
|
"plusplus" : false, // true: Prohibit use of `++` & `--`
|
||||||
|
"quotmark" : "single", // Quotation mark consistency:
|
||||||
|
// false : do nothing (default)
|
||||||
|
// true : ensure whatever is used is consistent
|
||||||
|
// "single" : require single quotes
|
||||||
|
// "double" : require double quotes
|
||||||
|
"undef" : true, // true: Require all non-global variables to be declared (prevents global leaks)
|
||||||
|
"unused" : true, // true: Require all defined variables be used
|
||||||
|
"strict" : true, // true: Requires all functions run in ES5 Strict Mode
|
||||||
|
"trailing" : true, // true: Prohibit trailing whitespaces
|
||||||
|
"maxparams" : false, // {int} Max number of formal params allowed per function
|
||||||
|
"maxdepth" : false, // {int} Max depth of nested blocks (within functions)
|
||||||
|
"maxstatements" : false, // {int} Max number statements per function
|
||||||
|
"maxcomplexity" : false, // {int} Max cyclomatic complexity per function
|
||||||
|
"maxlen" : false, // {int} Max number of characters per line
|
||||||
|
|
||||||
|
// Relaxing
|
||||||
|
"asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons)
|
||||||
|
"boss" : false, // true: Tolerate assignments where comparisons would be expected
|
||||||
|
"debug" : false, // true: Allow debugger statements e.g. browser breakpoints.
|
||||||
|
"eqnull" : false, // true: Tolerate use of `== null`
|
||||||
|
"es5" : false, // true: Allow ES5 syntax (ex: getters and setters)
|
||||||
|
"esnext" : false, // true: Allow ES.next (ES6) syntax (ex: `const`)
|
||||||
|
"moz" : false, // true: Allow Mozilla specific syntax (extends and overrides esnext features)
|
||||||
|
// (ex: `for each`, multiple try/catch, function expression…)
|
||||||
|
"evil" : false, // true: Tolerate use of `eval` and `new Function()`
|
||||||
|
"expr" : false, // true: Tolerate `ExpressionStatement` as Programs
|
||||||
|
"funcscope" : false, // true: Tolerate defining variables inside control statements"
|
||||||
|
"globalstrict" : false, // true: Allow global "use strict" (also enables 'strict')
|
||||||
|
"iterator" : false, // true: Tolerate using the `__iterator__` property
|
||||||
|
"lastsemic" : false, // true: Tolerate omitting a semicolon for the last statement of a 1-line block
|
||||||
|
"laxbreak" : false, // true: Tolerate possibly unsafe line breakings
|
||||||
|
"laxcomma" : false, // true: Tolerate comma-first style coding
|
||||||
|
"loopfunc" : false, // true: Tolerate functions being defined in loops
|
||||||
|
"multistr" : false, // true: Tolerate multi-line strings
|
||||||
|
"proto" : false, // true: Tolerate using the `__proto__` property
|
||||||
|
"scripturl" : false, // true: Tolerate script-targeted URLs
|
||||||
|
"smarttabs" : false, // true: Tolerate mixed tabs/spaces when used for alignment
|
||||||
|
"shadow" : false, // true: Allows re-define variables later in code e.g. `var x=1; x=2;`
|
||||||
|
"sub" : false, // true: Tolerate using `[]` notation when it can still be expressed in dot notation
|
||||||
|
"supernew" : false, // true: Tolerate `new function () { ... };` and `new Object;`
|
||||||
|
"validthis" : false, // true: Tolerate using this in a non-constructor function
|
||||||
|
|
||||||
|
// Environments
|
||||||
|
"browser" : false, // Web Browser (window, document, etc)
|
||||||
|
"couch" : false, // CouchDB
|
||||||
|
"devel" : false, // Development/debugging (alert, confirm, etc)
|
||||||
|
"dojo" : false, // Dojo Toolkit
|
||||||
|
"jquery" : false, // jQuery
|
||||||
|
"mootools" : false, // MooTools
|
||||||
|
"node" : false, // Node.js
|
||||||
|
"nonstandard" : false, // Widely adopted globals (escape, unescape, etc)
|
||||||
|
"prototypejs" : false, // Prototype and Scriptaculous
|
||||||
|
"rhino" : false, // Rhino
|
||||||
|
"worker" : false, // Web Workers
|
||||||
|
"wsh" : false, // Windows Scripting Host
|
||||||
|
"yui" : false, // Yahoo User Interface
|
||||||
|
|
||||||
|
// Legacy
|
||||||
|
"nomen" : true, // true: Prohibit dangling `_` in variables
|
||||||
|
"onevar" : true, // true: Allow only one `var` statement per function
|
||||||
|
"passfail" : false, // true: Stop on first error
|
||||||
|
"white" : true, // true: Check against strict whitespace and indentation rules
|
||||||
|
|
||||||
|
// Custom Globals
|
||||||
|
"globals" : {} // additional predefined global variables
|
||||||
|
}
|
20
library/blueimp_upload/.npmignore
Normal file
20
library/blueimp_upload/.npmignore
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
*
|
||||||
|
!css/jquery.fileupload-noscript.css
|
||||||
|
!css/jquery.fileupload-ui-noscript.css
|
||||||
|
!css/jquery.fileupload-ui.css
|
||||||
|
!css/jquery.fileupload.css
|
||||||
|
!img/loading.gif
|
||||||
|
!img/progressbar.gif
|
||||||
|
!js/cors/jquery.postmessage-transport.js
|
||||||
|
!js/cors/jquery.xdr-transport.js
|
||||||
|
!js/vendor/jquery.ui.widget.js
|
||||||
|
!js/jquery.fileupload-angular.js
|
||||||
|
!js/jquery.fileupload-audio.js
|
||||||
|
!js/jquery.fileupload-image.js
|
||||||
|
!js/jquery.fileupload-jquery-ui.js
|
||||||
|
!js/jquery.fileupload-process.js
|
||||||
|
!js/jquery.fileupload-ui.js
|
||||||
|
!js/jquery.fileupload-validate.js
|
||||||
|
!js/jquery.fileupload-video.js
|
||||||
|
!js/jquery.fileupload.js
|
||||||
|
!js/jquery.iframe-transport.js
|
@ -1,20 +0,0 @@
|
|||||||
The MIT License (MIT)
|
|
||||||
|
|
||||||
Copyright (c) 2017 jQuery-File-Upload Authors
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
||||||
this software and associated documentation files (the "Software"), to deal in
|
|
||||||
the Software without restriction, including without limitation the rights to
|
|
||||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
||||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
||||||
subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
||||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
||||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
||||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
||||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
21
library/blueimp_upload/LICENSE.txt
Normal file
21
library/blueimp_upload/LICENSE.txt
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
MIT License
|
||||||
|
|
||||||
|
Copyright © 2010 Sebastian Tschan, https://blueimp.net
|
||||||
|
|
||||||
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
|
of this software and associated documentation files (the "Software"), to deal
|
||||||
|
in the Software without restriction, including without limitation the rights
|
||||||
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||||
|
copies of the Software, and to permit persons to whom the Software is
|
||||||
|
furnished to do so, subject to the following conditions:
|
||||||
|
|
||||||
|
The above copyright notice and this permission notice shall be included in all
|
||||||
|
copies or substantial portions of the Software.
|
||||||
|
|
||||||
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||||
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||||
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||||
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||||
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||||
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||||
|
SOFTWARE.
|
@ -39,7 +39,7 @@ Supports cross-domain, chunked and resumable file uploads and client-side image
|
|||||||
* **Multiple plugin instances:**
|
* **Multiple plugin instances:**
|
||||||
Allows to use multiple plugin instances on the same webpage.
|
Allows to use multiple plugin instances on the same webpage.
|
||||||
* **Customizable and extensible:**
|
* **Customizable and extensible:**
|
||||||
Provides an API to set individual options and define callBack methods for various upload events.
|
Provides an API to set individual options and define callback methods for various upload events.
|
||||||
* **Multipart and file contents stream uploads:**
|
* **Multipart and file contents stream uploads:**
|
||||||
Files can be uploaded as standard "multipart/form-data" or file contents stream (HTTP PUT file upload).
|
Files can be uploaded as standard "multipart/form-data" or file contents stream (HTTP PUT file upload).
|
||||||
* **Compatible with any server-side application platform:**
|
* **Compatible with any server-side application platform:**
|
||||||
@ -60,7 +60,7 @@ Supports cross-domain, chunked and resumable file uploads and client-side image
|
|||||||
* [Bootstrap](http://getbootstrap.com/) v. 3.2.0+
|
* [Bootstrap](http://getbootstrap.com/) v. 3.2.0+
|
||||||
* [Glyphicons](http://glyphicons.com/)
|
* [Glyphicons](http://glyphicons.com/)
|
||||||
|
|
||||||
The user interface of all versions except the jQuery UI version is built with [Bootstrap](http://getbootstrap.com/) and icons from [Glyphicons](http://glyphicons.com/).
|
The user interface of all versions, except the jQuery UI version, is built with [Bootstrap](http://getbootstrap.com/) and icons from [Glyphicons](http://glyphicons.com/).
|
||||||
|
|
||||||
### Cross-domain requirements
|
### Cross-domain requirements
|
||||||
[Cross-domain File Uploads](https://github.com/blueimp/jQuery-File-Upload/wiki/Cross-domain-uploads) using the [Iframe Transport plugin](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/jquery.iframe-transport.js) require a redirect back to the origin server to retrieve the upload results. The [example implementation](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/main.js) makes use of [result.html](https://github.com/blueimp/jQuery-File-Upload/blob/master/cors/result.html) as a static redirect page for the origin server.
|
[Cross-domain File Uploads](https://github.com/blueimp/jQuery-File-Upload/wiki/Cross-domain-uploads) using the [Iframe Transport plugin](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/jquery.iframe-transport.js) require a redirect back to the origin server to retrieve the upload results. The [example implementation](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/main.js) makes use of [result.html](https://github.com/blueimp/jQuery-File-Upload/blob/master/cors/result.html) as a static redirect page for the origin server.
|
||||||
|
@ -22,11 +22,11 @@
|
|||||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for AngularJS. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- Bootstrap styles -->
|
<!-- Bootstrap styles -->
|
||||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||||
<!-- Generic page styles -->
|
<!-- Generic page styles -->
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<!-- blueimp Gallery styles -->
|
<!-- blueimp Gallery styles -->
|
||||||
<link rel="stylesheet" href="//blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
|
<link rel="stylesheet" href="https://blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
|
||||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||||
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
||||||
<link rel="stylesheet" href="css/jquery.fileupload-ui.css">
|
<link rel="stylesheet" href="css/jquery.fileupload-ui.css">
|
||||||
@ -79,7 +79,7 @@
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
<br>
|
<br>
|
||||||
<!-- The file upload form used as target for the file upload widget -->
|
<!-- The file upload form used as target for the file upload widget -->
|
||||||
<form id="fileupload" action="//jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data" data-ng-app="demo" data-ng-controller="DemoFileUploadController" data-file-upload="options" data-ng-class="{'fileupload-processing': processing() || loadingFiles}">
|
<form id="fileupload" action="https://jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data" data-ng-app="demo" data-ng-controller="DemoFileUploadController" data-file-upload="options" data-ng-class="{'fileupload-processing': processing() || loadingFiles}">
|
||||||
<!-- Redirect browsers with JavaScript disabled to the origin page -->
|
<!-- Redirect browsers with JavaScript disabled to the origin page -->
|
||||||
<noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
|
<noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
|
||||||
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
||||||
@ -177,18 +177,18 @@
|
|||||||
<a class="play-pause"></a>
|
<a class="play-pause"></a>
|
||||||
<ol class="indicator"></ol>
|
<ol class="indicator"></ol>
|
||||||
</div>
|
</div>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.3.15/angular.min.js"></script>
|
||||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||||
<!-- blueimp Gallery script -->
|
<!-- blueimp Gallery script -->
|
||||||
<script src="//blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
<script src="https://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
||||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||||
<script src="js/jquery.iframe-transport.js"></script>
|
<script src="js/jquery.iframe-transport.js"></script>
|
||||||
<!-- The basic File Upload plugin -->
|
<!-- The basic File Upload plugin -->
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.">
|
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- Bootstrap styles -->
|
<!-- Bootstrap styles -->
|
||||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||||
<!-- Generic page styles -->
|
<!-- Generic page styles -->
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||||
@ -96,15 +96,15 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||||
<script src="js/jquery.iframe-transport.js"></script>
|
<script src="js/jquery.iframe-transport.js"></script>
|
||||||
<!-- The basic File Upload plugin -->
|
<!-- The basic File Upload plugin -->
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support and progress bar for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- Bootstrap styles -->
|
<!-- Bootstrap styles -->
|
||||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||||
<!-- Generic page styles -->
|
<!-- Generic page styles -->
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||||
@ -96,7 +96,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||||
@ -104,7 +104,7 @@
|
|||||||
<!-- The basic File Upload plugin -->
|
<!-- The basic File Upload plugin -->
|
||||||
<script src="js/jquery.fileupload.js"></script>
|
<script src="js/jquery.fileupload.js"></script>
|
||||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||||
<script>
|
<script>
|
||||||
/*jslint unparam: true */
|
/*jslint unparam: true */
|
||||||
/*global window, $ */
|
/*global window, $ */
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "blueimp-file-upload",
|
"name": "blueimp-file-upload",
|
||||||
"version": "9.18.0",
|
"version": "9.23.0",
|
||||||
"title": "jQuery File Upload",
|
"title": "jQuery File Upload",
|
||||||
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images.",
|
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
@ -53,8 +53,8 @@
|
|||||||
"ignore": [
|
"ignore": [
|
||||||
"/*.*",
|
"/*.*",
|
||||||
"/cors",
|
"/cors",
|
||||||
"css/demo-ie8.css",
|
"css/jquery-ui-demo-ie8.css",
|
||||||
"css/demo.css",
|
"css/jquery-ui-demo.css",
|
||||||
"css/style.css",
|
"css/style.css",
|
||||||
"js/app.js",
|
"js/app.js",
|
||||||
"js/main.js",
|
"js/main.js",
|
||||||
|
@ -15,7 +15,7 @@
|
|||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>jQuery File Upload Plugin postMessage API</title>
|
<title>jQuery File Upload Plugin postMessage API</title>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<script>
|
<script>
|
||||||
|
@ -22,11 +22,11 @@
|
|||||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- Bootstrap styles -->
|
<!-- Bootstrap styles -->
|
||||||
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
|
||||||
<!-- Generic page styles -->
|
<!-- Generic page styles -->
|
||||||
<link rel="stylesheet" href="css/style.css">
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<!-- blueimp Gallery styles -->
|
<!-- blueimp Gallery styles -->
|
||||||
<link rel="stylesheet" href="//blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
|
<link rel="stylesheet" href="https://blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
|
||||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||||
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
||||||
<link rel="stylesheet" href="css/jquery.fileupload-ui.css">
|
<link rel="stylesheet" href="css/jquery.fileupload-ui.css">
|
||||||
@ -73,7 +73,7 @@
|
|||||||
</blockquote>
|
</blockquote>
|
||||||
<br>
|
<br>
|
||||||
<!-- The file upload form used as target for the file upload widget -->
|
<!-- The file upload form used as target for the file upload widget -->
|
||||||
<form id="fileupload" action="//jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data">
|
<form id="fileupload" action="https://jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data">
|
||||||
<!-- Redirect browsers with JavaScript disabled to the origin page -->
|
<!-- Redirect browsers with JavaScript disabled to the origin page -->
|
||||||
<noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
|
<noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
|
||||||
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
||||||
@ -216,19 +216,19 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% } %}
|
{% } %}
|
||||||
</script>
|
</script>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
|
||||||
<script src="js/vendor/jquery.ui.widget.js"></script>
|
<script src="js/vendor/jquery.ui.widget.js"></script>
|
||||||
<!-- The Templates plugin is included to render the upload/download listings -->
|
<!-- The Templates plugin is included to render the upload/download listings -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
||||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||||
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
<!-- Bootstrap JS is not required, but included for the responsive demo navigation -->
|
||||||
<script src="//netdna.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
|
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
|
||||||
<!-- blueimp Gallery script -->
|
<!-- blueimp Gallery script -->
|
||||||
<script src="//blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
<script src="https://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
||||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||||
<script src="js/jquery.iframe-transport.js"></script>
|
<script src="js/jquery.iframe-transport.js"></script>
|
||||||
<!-- The basic File Upload plugin -->
|
<!-- The basic File Upload plugin -->
|
||||||
|
@ -22,11 +22,13 @@
|
|||||||
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
<meta name="description" content="File Upload widget with multiple file selection, drag&drop support, progress bars, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads and client-side image resizing. Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<!-- jQuery UI styles -->
|
<!-- jQuery UI styles -->
|
||||||
<link rel="stylesheet" href="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.1/themes/dark-hive/jquery-ui.css" id="theme">
|
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/dark-hive/jquery-ui.css" id="theme">
|
||||||
|
<!-- Generic page styles -->
|
||||||
|
<link rel="stylesheet" href="css/style.css">
|
||||||
<!-- Demo styles -->
|
<!-- Demo styles -->
|
||||||
<link rel="stylesheet" href="css/demo.css">
|
<link rel="stylesheet" href="css/jquery-ui-demo.css">
|
||||||
<!--[if lte IE 8]>
|
<!--[if lte IE 8]>
|
||||||
<link rel="stylesheet" href="css/demo-ie8.css">
|
<link rel="stylesheet" href="css/jquery-ui-demo-ie8.css">
|
||||||
<![endif]-->
|
<![endif]-->
|
||||||
<style>
|
<style>
|
||||||
/* Adjust the jQuery UI widget font-size: */
|
/* Adjust the jQuery UI widget font-size: */
|
||||||
@ -35,7 +37,7 @@
|
|||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
<!-- blueimp Gallery styles -->
|
<!-- blueimp Gallery styles -->
|
||||||
<link rel="stylesheet" href="//blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
|
<link rel="stylesheet" href="https://blueimp.github.io/Gallery/css/blueimp-gallery.min.css">
|
||||||
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
<!-- CSS to style the file input field as button and adjust the Bootstrap progress bars -->
|
||||||
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
<link rel="stylesheet" href="css/jquery.fileupload.css">
|
||||||
<link rel="stylesheet" href="css/jquery.fileupload-ui.css">
|
<link rel="stylesheet" href="css/jquery.fileupload-ui.css">
|
||||||
@ -95,7 +97,7 @@
|
|||||||
Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.</p>
|
Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.</p>
|
||||||
</blockquote>
|
</blockquote>
|
||||||
<!-- The file upload form used as target for the file upload widget -->
|
<!-- The file upload form used as target for the file upload widget -->
|
||||||
<form id="fileupload" action="//jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data">
|
<form id="fileupload" action="https://jquery-file-upload.appspot.com/" method="POST" enctype="multipart/form-data">
|
||||||
<!-- Redirect browsers with JavaScript disabled to the origin page -->
|
<!-- Redirect browsers with JavaScript disabled to the origin page -->
|
||||||
<noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
|
<noscript><input type="hidden" name="redirect" value="https://blueimp.github.io/jQuery-File-Upload/"></noscript>
|
||||||
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
<!-- The fileupload-buttonbar contains buttons to add/delete files and start/cancel the upload -->
|
||||||
@ -199,16 +201,16 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% } %}
|
{% } %}
|
||||||
</script>
|
</script>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
|
||||||
<!-- The Templates plugin is included to render the upload/download listings -->
|
<!-- The Templates plugin is included to render the upload/download listings -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
||||||
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
<!-- The Load Image plugin is included for the preview images and image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||||
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
<!-- The Canvas to Blob plugin is included for image resizing functionality -->
|
||||||
<script src="//blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||||
<!-- blueimp Gallery script -->
|
<!-- blueimp Gallery script -->
|
||||||
<script src="//blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
<script src="https://blueimp.github.io/Gallery/js/jquery.blueimp-gallery.min.js"></script>
|
||||||
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
<!-- The Iframe Transport is required for browsers without support for XHR file uploads -->
|
||||||
<script src="js/jquery.iframe-transport.js"></script>
|
<script src="js/jquery.iframe-transport.js"></script>
|
||||||
<!-- The basic File Upload plugin -->
|
<!-- The basic File Upload plugin -->
|
||||||
|
@ -315,6 +315,7 @@
|
|||||||
'fileuploadpaste',
|
'fileuploadpaste',
|
||||||
'fileuploaddrop',
|
'fileuploaddrop',
|
||||||
'fileuploaddragover',
|
'fileuploaddragover',
|
||||||
|
'fileuploadchunkbeforesend',
|
||||||
'fileuploadchunksend',
|
'fileuploadchunksend',
|
||||||
'fileuploadchunkdone',
|
'fileuploadchunkdone',
|
||||||
'fileuploadchunkfail',
|
'fileuploadchunkfail',
|
||||||
|
@ -30,6 +30,7 @@
|
|||||||
require('jquery'),
|
require('jquery'),
|
||||||
require('blueimp-tmpl'),
|
require('blueimp-tmpl'),
|
||||||
require('./jquery.fileupload-image'),
|
require('./jquery.fileupload-image'),
|
||||||
|
require('./jquery.fileupload-audio'),
|
||||||
require('./jquery.fileupload-video'),
|
require('./jquery.fileupload-video'),
|
||||||
require('./jquery.fileupload-validate')
|
require('./jquery.fileupload-validate')
|
||||||
);
|
);
|
||||||
|
32
library/blueimp_upload/js/jquery.fileupload.js
vendored
32
library/blueimp_upload/js/jquery.fileupload.js
vendored
@ -43,7 +43,7 @@
|
|||||||
'|(Kindle/(1\\.0|2\\.[05]|3\\.0))'
|
'|(Kindle/(1\\.0|2\\.[05]|3\\.0))'
|
||||||
).test(window.navigator.userAgent) ||
|
).test(window.navigator.userAgent) ||
|
||||||
// Feature detection for all other devices:
|
// Feature detection for all other devices:
|
||||||
$('<input type="file">').prop('disabled'));
|
$('<input type="file"/>').prop('disabled'));
|
||||||
|
|
||||||
// The FileReader API is not actually used, but works as feature detection,
|
// The FileReader API is not actually used, but works as feature detection,
|
||||||
// as some Safari versions (5?) support XHR file uploads via the FormData API,
|
// as some Safari versions (5?) support XHR file uploads via the FormData API,
|
||||||
@ -261,6 +261,9 @@
|
|||||||
// Callback for dragover events of the dropZone(s):
|
// Callback for dragover events of the dropZone(s):
|
||||||
// dragover: function (e) {}, // .bind('fileuploaddragover', func);
|
// dragover: function (e) {}, // .bind('fileuploaddragover', func);
|
||||||
|
|
||||||
|
// Callback before the start of each chunk upload request (before form data initialization):
|
||||||
|
// chunkbeforesend: function (e, data) {}, // .bind('fileuploadchunkbeforesend', func);
|
||||||
|
|
||||||
// Callback for the start of each chunk upload request:
|
// Callback for the start of each chunk upload request:
|
||||||
// chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func);
|
// chunksend: function (e, data) {}, // .bind('fileuploadchunksend', func);
|
||||||
|
|
||||||
@ -434,6 +437,13 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_deinitProgressListener: function (options) {
|
||||||
|
var xhr = options.xhr ? options.xhr() : $.ajaxSettings.xhr();
|
||||||
|
if (xhr.upload) {
|
||||||
|
$(xhr.upload).unbind('progress');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
_isInstanceOf: function (type, obj) {
|
_isInstanceOf: function (type, obj) {
|
||||||
// Cross-frame instanceof check
|
// Cross-frame instanceof check
|
||||||
return Object.prototype.toString.call(obj) === '[object ' + type + ']';
|
return Object.prototype.toString.call(obj) === '[object ' + type + ']';
|
||||||
@ -453,7 +463,7 @@
|
|||||||
}
|
}
|
||||||
if (!multipart || options.blob || !this._isInstanceOf('File', file)) {
|
if (!multipart || options.blob || !this._isInstanceOf('File', file)) {
|
||||||
options.headers['Content-Disposition'] = 'attachment; filename="' +
|
options.headers['Content-Disposition'] = 'attachment; filename="' +
|
||||||
encodeURI(file.name) + '"';
|
encodeURI(file.uploadName || file.name) + '"';
|
||||||
}
|
}
|
||||||
if (!multipart) {
|
if (!multipart) {
|
||||||
options.contentType = file.type || 'application/octet-stream';
|
options.contentType = file.type || 'application/octet-stream';
|
||||||
@ -489,7 +499,11 @@
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
if (options.blob) {
|
if (options.blob) {
|
||||||
formData.append(paramName, options.blob, file.name);
|
formData.append(
|
||||||
|
paramName,
|
||||||
|
options.blob,
|
||||||
|
file.uploadName || file.name
|
||||||
|
);
|
||||||
} else {
|
} else {
|
||||||
$.each(options.files, function (index, file) {
|
$.each(options.files, function (index, file) {
|
||||||
// This check allows the tests to run with
|
// This check allows the tests to run with
|
||||||
@ -730,7 +744,7 @@
|
|||||||
promise = dfd.promise(),
|
promise = dfd.promise(),
|
||||||
jqXHR,
|
jqXHR,
|
||||||
upload;
|
upload;
|
||||||
if (!(this._isXHRUpload(options) && slice && (ub || mcs < fs)) ||
|
if (!(this._isXHRUpload(options) && slice && (ub || ($.type(mcs) === 'function' ? mcs(options) : mcs) < fs)) ||
|
||||||
options.data) {
|
options.data) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
@ -753,7 +767,7 @@
|
|||||||
o.blob = slice.call(
|
o.blob = slice.call(
|
||||||
file,
|
file,
|
||||||
ub,
|
ub,
|
||||||
ub + mcs,
|
ub + ($.type(mcs) === 'function' ? mcs(o) : mcs),
|
||||||
file.type
|
file.type
|
||||||
);
|
);
|
||||||
// Store the current chunk size, as the blob itself
|
// Store the current chunk size, as the blob itself
|
||||||
@ -762,6 +776,8 @@
|
|||||||
// Expose the chunk bytes position range:
|
// Expose the chunk bytes position range:
|
||||||
o.contentRange = 'bytes ' + ub + '-' +
|
o.contentRange = 'bytes ' + ub + '-' +
|
||||||
(ub + o.chunkSize - 1) + '/' + fs;
|
(ub + o.chunkSize - 1) + '/' + fs;
|
||||||
|
// Trigger chunkbeforesend to allow form data to be updated for this chunk
|
||||||
|
that._trigger('chunkbeforesend', null, o);
|
||||||
// Process the upload data (the blob and potential form data):
|
// Process the upload data (the blob and potential form data):
|
||||||
that._initXHRData(o);
|
that._initXHRData(o);
|
||||||
// Add progress listeners for this chunk upload:
|
// Add progress listeners for this chunk upload:
|
||||||
@ -808,6 +824,9 @@
|
|||||||
o.context,
|
o.context,
|
||||||
[jqXHR, textStatus, errorThrown]
|
[jqXHR, textStatus, errorThrown]
|
||||||
);
|
);
|
||||||
|
})
|
||||||
|
.always(function () {
|
||||||
|
that._deinitProgressListener(o);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
this._enhancePromise(promise);
|
this._enhancePromise(promise);
|
||||||
@ -909,6 +928,7 @@
|
|||||||
}).fail(function (jqXHR, textStatus, errorThrown) {
|
}).fail(function (jqXHR, textStatus, errorThrown) {
|
||||||
that._onFail(jqXHR, textStatus, errorThrown, options);
|
that._onFail(jqXHR, textStatus, errorThrown, options);
|
||||||
}).always(function (jqXHRorResult, textStatus, jqXHRorError) {
|
}).always(function (jqXHRorResult, textStatus, jqXHRorError) {
|
||||||
|
that._deinitProgressListener(options);
|
||||||
that._onAlways(
|
that._onAlways(
|
||||||
jqXHRorResult,
|
jqXHRorResult,
|
||||||
textStatus,
|
textStatus,
|
||||||
@ -1126,7 +1146,7 @@
|
|||||||
dirReader = entry.createReader();
|
dirReader = entry.createReader();
|
||||||
readEntries();
|
readEntries();
|
||||||
} else {
|
} else {
|
||||||
// Return an empy list for file system items
|
// Return an empty list for file system items
|
||||||
// other than files or directories:
|
// other than files or directories:
|
||||||
dfd.resolve([]);
|
dfd.resolve([]);
|
||||||
}
|
}
|
||||||
|
1176
library/blueimp_upload/js/vendor/jquery.ui.widget.js
vendored
1176
library/blueimp_upload/js/vendor/jquery.ui.widget.js
vendored
File diff suppressed because it is too large
Load Diff
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "blueimp-file-upload",
|
"name": "blueimp-file-upload",
|
||||||
"version": "9.18.0",
|
"version": "9.23.0",
|
||||||
"title": "jQuery File Upload",
|
"title": "jQuery File Upload",
|
||||||
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
|
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
FROM php:7.0-apache
|
FROM php:7-apache
|
||||||
|
|
||||||
# Enable the Apache Headers module:
|
# Enable the Apache Headers module:
|
||||||
RUN ln -s /etc/apache2/mods-available/headers.load \
|
RUN ln -s /etc/apache2/mods-available/headers.load \
|
||||||
|
@ -131,18 +131,22 @@ class UploadHandler
|
|||||||
// Command or path for to the ImageMagick identify binary:
|
// Command or path for to the ImageMagick identify binary:
|
||||||
'identify_bin' => 'identify',
|
'identify_bin' => 'identify',
|
||||||
'image_versions' => array(
|
'image_versions' => array(
|
||||||
// The empty image version key defines options for the original image:
|
// The empty image version key defines options for the original image.
|
||||||
|
// Keep in mind: these image manipulations are inherited by all other image versions from this point onwards.
|
||||||
|
// Also note that the property 'no_cache' is not inherited, since it's not a manipulation.
|
||||||
'' => array(
|
'' => array(
|
||||||
// Automatically rotate images based on EXIF meta data:
|
// Automatically rotate images based on EXIF meta data:
|
||||||
'auto_orient' => true
|
'auto_orient' => true
|
||||||
),
|
),
|
||||||
// Uncomment the following to create medium sized images:
|
// You can add arrays to generate different versions.
|
||||||
|
// The name of the key is the name of the version (example: 'medium').
|
||||||
|
// the array contains the options to apply.
|
||||||
/*
|
/*
|
||||||
'medium' => array(
|
'medium' => array(
|
||||||
'max_width' => 800,
|
'max_width' => 800,
|
||||||
'max_height' => 600
|
'max_height' => 600
|
||||||
),
|
),
|
||||||
*/
|
*/
|
||||||
'thumbnail' => array(
|
'thumbnail' => array(
|
||||||
// Uncomment the following to use a defined directory for the thumbnails
|
// Uncomment the following to use a defined directory for the thumbnails
|
||||||
// instead of a subdirectory based on the version identifier.
|
// instead of a subdirectory based on the version identifier.
|
||||||
@ -153,9 +157,13 @@ class UploadHandler
|
|||||||
//'upload_url' => $this->get_full_url().'/thumb/',
|
//'upload_url' => $this->get_full_url().'/thumb/',
|
||||||
// Uncomment the following to force the max
|
// Uncomment the following to force the max
|
||||||
// dimensions and e.g. create square thumbnails:
|
// dimensions and e.g. create square thumbnails:
|
||||||
//'crop' => true,
|
// 'auto_orient' => true,
|
||||||
'max_width' => 80,
|
// 'crop' => true,
|
||||||
'max_height' => 80
|
// 'jpeg_quality' => 70,
|
||||||
|
// 'no_cache' => true, (there's a caching option, but this remembers thumbnail sizes from a previous action!)
|
||||||
|
// 'strip' => true, (this strips EXIF tags, such as geolocation)
|
||||||
|
'max_width' => 80, // either specify width, or set to 0. Then width is automatically adjusted - keeping aspect ratio to a specified max_height.
|
||||||
|
'max_height' => 80 // either specify height, or set to 0. Then height is automatically adjusted - keeping aspect ratio to a specified max_width.
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
'print_response' => true
|
'print_response' => true
|
||||||
@ -863,21 +871,31 @@ class UploadHandler
|
|||||||
if (!empty($options['auto_orient'])) {
|
if (!empty($options['auto_orient'])) {
|
||||||
$image_oriented = $this->imagick_orient_image($image);
|
$image_oriented = $this->imagick_orient_image($image);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$image_resize = false;
|
||||||
$new_width = $max_width = $img_width = $image->getImageWidth();
|
$new_width = $max_width = $img_width = $image->getImageWidth();
|
||||||
$new_height = $max_height = $img_height = $image->getImageHeight();
|
$new_height = $max_height = $img_height = $image->getImageHeight();
|
||||||
if (!empty($options['max_width'])) {
|
|
||||||
|
// use isset(). User might be setting max_width = 0 (auto in regular resizing). Value 0 would be considered empty when you use empty()
|
||||||
|
if (isset($options['max_width'])) {
|
||||||
|
$image_resize = true;
|
||||||
$new_width = $max_width = $options['max_width'];
|
$new_width = $max_width = $options['max_width'];
|
||||||
}
|
}
|
||||||
if (!empty($options['max_height'])) {
|
if (isset($options['max_height'])) {
|
||||||
|
$image_resize = true;
|
||||||
$new_height = $max_height = $options['max_height'];
|
$new_height = $max_height = $options['max_height'];
|
||||||
}
|
}
|
||||||
if (!($image_oriented || $max_width < $img_width || $max_height < $img_height)) {
|
|
||||||
|
$image_strip = (isset($options['strip']) ? $options['strip'] : false);
|
||||||
|
|
||||||
|
if ( !$image_oriented && ($max_width >= $img_width) && ($max_height >= $img_height) && !$image_strip && empty($options["jpeg_quality"]) ) {
|
||||||
if ($file_path !== $new_file_path) {
|
if ($file_path !== $new_file_path) {
|
||||||
return copy($file_path, $new_file_path);
|
return copy($file_path, $new_file_path);
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
$crop = !empty($options['crop']);
|
$crop = (isset($options['crop']) ? $options['crop'] : false);
|
||||||
|
|
||||||
if ($crop) {
|
if ($crop) {
|
||||||
$x = 0;
|
$x = 0;
|
||||||
$y = 0;
|
$y = 0;
|
||||||
@ -917,7 +935,7 @@ class UploadHandler
|
|||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if (!empty($options['strip'])) {
|
if ( $image_strip ) {
|
||||||
$image->stripImage();
|
$image->stripImage();
|
||||||
}
|
}
|
||||||
return $success && $image->writeImage($new_file_path);
|
return $success && $image->writeImage($new_file_path);
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
apache:
|
version: '2.3'
|
||||||
build: ./
|
services:
|
||||||
ports:
|
apache:
|
||||||
- "80:80"
|
build: ./
|
||||||
volumes:
|
network_mode: bridge
|
||||||
- "../../:/var/www/html"
|
ports:
|
||||||
|
- "80:80"
|
||||||
|
volumes:
|
||||||
|
- "../../:/var/www/html"
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<title>jQuery File Upload Plugin Test</title>
|
<title>jQuery File Upload Plugin Test</title>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||||
<link rel="stylesheet" href="//codeorigin.jquery.com/qunit/qunit-1.14.0.css">
|
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-1.23.1.css">
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<h1 id="qunit-header">jQuery File Upload Plugin Test</h1>
|
<h1 id="qunit-header">jQuery File Upload Plugin Test</h1>
|
||||||
@ -145,11 +145,11 @@
|
|||||||
</tr>
|
</tr>
|
||||||
{% } %}
|
{% } %}
|
||||||
</script>
|
</script>
|
||||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
|
||||||
<script src="../js/vendor/jquery.ui.widget.js"></script>
|
<script src="../js/vendor/jquery.ui.widget.js"></script>
|
||||||
<script src="//blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Templates/js/tmpl.min.js"></script>
|
||||||
<script src="//blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Load-Image/js/load-image.all.min.js"></script>
|
||||||
<script src="//blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
<script src="https://blueimp.github.io/JavaScript-Canvas-to-Blob/js/canvas-to-blob.min.js"></script>
|
||||||
<script src="../js/jquery.iframe-transport.js"></script>
|
<script src="../js/jquery.iframe-transport.js"></script>
|
||||||
<script src="../js/jquery.fileupload.js"></script>
|
<script src="../js/jquery.fileupload.js"></script>
|
||||||
<script>
|
<script>
|
||||||
@ -166,7 +166,7 @@ window.testBasicWidget = $.blueimp.fileupload;
|
|||||||
/* global window, $ */
|
/* global window, $ */
|
||||||
window.testUIWidget = $.blueimp.fileupload;
|
window.testUIWidget = $.blueimp.fileupload;
|
||||||
</script>
|
</script>
|
||||||
<script src="//code.jquery.com/qunit/qunit-1.15.0.js"></script>
|
<script src="https://code.jquery.com/qunit/qunit-1.23.1.js"></script>
|
||||||
<script src="test.js"></script>
|
<script src="test.js"></script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Reference in New Issue
Block a user