This repository has been archived by the owner on Jan 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 186
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
60 changed files
with
10,527 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.DS_Store | ||
*.pyc | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
15 changes: 15 additions & 0 deletions
15
public/static/admin/lib/jQuery-File-Upload/CONTRIBUTING.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
Please follow these pull request guidelines: | ||
|
||
1. Update your fork to the latest upstream version. | ||
|
||
2. Follow the coding conventions of the original source files (indentation, spaces, brackets layout). | ||
|
||
3. Code changes must pass JSHint validation with the `.jshintrc` settings of this project. | ||
|
||
4. Code changes must pass the QUnit tests defined in the `test` folder. | ||
|
||
5. New features should be covered by accompanying QUnit tests. | ||
|
||
6. Keep your commits as atomic as possible, i.e. create a new commit for every single bug fix or feature added. | ||
|
||
7. Always add meaningful commit messages. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
# jQuery File Upload Plugin | ||
|
||
## Demo | ||
[Demo File Upload](https://blueimp.github.io/jQuery-File-Upload/) | ||
|
||
## Description | ||
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. | ||
|
||
## Setup | ||
* [How to setup the plugin on your website](https://github.com/blueimp/jQuery-File-Upload/wiki/Setup) | ||
* [How to use only the basic plugin (minimal setup guide).](https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin) | ||
|
||
## Features | ||
* **Multiple file upload:** | ||
Allows to select multiple files at once and upload them simultaneously. | ||
* **Drag & Drop support:** | ||
Allows to upload files by dragging them from your desktop or filemanager and dropping them on your browser window. | ||
* **Upload progress bar:** | ||
Shows a progress bar indicating the upload progress for individual files and for all uploads combined. | ||
* **Cancelable uploads:** | ||
Individual file uploads can be canceled to stop the upload progress. | ||
* **Resumable uploads:** | ||
Aborted uploads can be resumed with browsers supporting the Blob API. | ||
* **Chunked uploads:** | ||
Large files can be uploaded in smaller chunks with browsers supporting the Blob API. | ||
* **Client-side image resizing:** | ||
Images can be automatically resized on client-side with browsers supporting the required JS APIs. | ||
* **Preview images, audio and video:** | ||
A preview of image, audio and video files can be displayed before uploading with browsers supporting the required APIs. | ||
* **No browser plugins (e.g. Adobe Flash) required:** | ||
The implementation is based on open standards like HTML5 and JavaScript and requires no additional browser plugins. | ||
* **Graceful fallback for legacy browsers:** | ||
Uploads files via XMLHttpRequests if supported and uses iframes as fallback for legacy browsers. | ||
* **HTML file upload form fallback:** | ||
Allows progressive enhancement by using a standard HTML file upload form as widget element. | ||
* **Cross-site file uploads:** | ||
Supports uploading files to a different domain with cross-site XMLHttpRequests or iframe redirects. | ||
* **Multiple plugin instances:** | ||
Allows to use multiple plugin instances on the same webpage. | ||
* **Customizable and extensible:** | ||
Provides an API to set individual options and define callBack methods for various upload events. | ||
* **Multipart and file contents stream uploads:** | ||
Files can be uploaded as standard "multipart/form-data" or file contents stream (HTTP PUT file upload). | ||
* **Compatible with any server-side application platform:** | ||
Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads. | ||
|
||
## Requirements | ||
|
||
### Mandatory requirements | ||
* [jQuery](https://jquery.com/) v. 1.6+ | ||
* [jQuery UI widget factory](https://api.jqueryui.com/jQuery.widget/) v. 1.9+ (included): Required for the basic File Upload plugin, but very lightweight without any other dependencies from the jQuery UI suite. | ||
* [jQuery Iframe Transport plugin](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/jquery.iframe-transport.js) (included): Required for [browsers without XHR file upload support](https://github.com/blueimp/jQuery-File-Upload/wiki/Browser-support). | ||
|
||
### Optional requirements | ||
* [JavaScript Templates engine](https://github.com/blueimp/JavaScript-Templates) v. 2.5.4+: Used to render the selected and uploaded files for the Basic Plus UI and jQuery UI versions. | ||
* [JavaScript Load Image library](https://github.com/blueimp/JavaScript-Load-Image) v. 1.13.0+: Required for the image previews and resizing functionality. | ||
* [JavaScript Canvas to Blob polyfill](https://github.com/blueimp/JavaScript-Canvas-to-Blob) v. 2.1.1+:Required for the image previews and resizing functionality. | ||
* [blueimp Gallery](https://github.com/blueimp/Gallery) v. 2.15.1+: Used to display the uploaded images in a lightbox. | ||
* [Bootstrap](http://getbootstrap.com/) v. 3.2.0+ | ||
* [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 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. | ||
|
||
The repository also includes the [jQuery XDomainRequest Transport plugin](https://github.com/blueimp/jQuery-File-Upload/blob/master/js/cors/jquery.xdr-transport.js), which enables limited cross-domain AJAX requests in Microsoft Internet Explorer 8 and 9 (IE 10 supports cross-domain XHR requests). | ||
The XDomainRequest object allows GET and POST requests only and doesn't support file uploads. It is used on the [Demo](https://blueimp.github.io/jQuery-File-Upload/) to delete uploaded files from the cross-domain demo file upload service. | ||
|
||
### Custom Backends | ||
|
||
You can add support for various backends by adhering to the specification [outlined here](https://github.com/blueimp/jQuery-File-Upload/wiki/JSON-Response). | ||
|
||
## Browsers | ||
|
||
### Desktop browsers | ||
The File Upload plugin is regularly tested with the latest browser versions and supports the following minimal versions: | ||
|
||
* Google Chrome | ||
* Apple Safari 4.0+ | ||
* Mozilla Firefox 3.0+ | ||
* Opera 11.0+ | ||
* Microsoft Internet Explorer 6.0+ | ||
|
||
### Mobile browsers | ||
The File Upload plugin has been tested with and supports the following mobile browsers: | ||
|
||
* Apple Safari on iOS 6.0+ | ||
* Google Chrome on iOS 6.0+ | ||
* Google Chrome on Android 4.0+ | ||
* Default Browser on Android 2.3+ | ||
* Opera Mobile 12.0+ | ||
|
||
### Supported features | ||
For a detailed overview of the features supported by each browser version, please have a look at the [Extended browser support information](https://github.com/blueimp/jQuery-File-Upload/wiki/Browser-support). | ||
|
||
## Contributing | ||
**Bug fixes** and **new features** can be proposed using [pull requests](https://github.com/blueimp/jQuery-File-Upload/pulls). | ||
Please read the [contribution guidelines](https://github.com/blueimp/jQuery-File-Upload/blob/master/CONTRIBUTING.md) before submitting a pull request. | ||
|
||
## Support | ||
This project is actively maintained, but there is no official support channel. | ||
If you have a question that another developer might help you with, please post to [Stack Overflow](http://stackoverflow.com/questions/tagged/blueimp+jquery+file-upload) and tag your question with `blueimp jquery file upload`. | ||
|
||
## License | ||
Released under the [MIT license](http://www.opensource.org/licenses/MIT). |
Oops, something went wrong.