initial commit
[namibia] / public / scripts / blueimp-jQuery-File-Upload / README.md
1 # jQuery File Upload Plugin
2
3 ## Demo
4 [Demo File Upload](http://blueimp.github.com/jQuery-File-Upload/)
5
6 ## Setup instructions
7 * [How to setup the plugin on your website](https://github.com/blueimp/jQuery-File-Upload/wiki/Setup)
8 * [How to use only the basic plugin (minimal setup guide).](https://github.com/blueimp/jQuery-File-Upload/wiki/Basic-plugin)
9
10 ## Features
11 * **Multiple file upload:**  
12   Allows to select multiple files at once and upload them simultaneously.
13 * **Drag & Drop support:**  
14   Allows to upload files by dragging them from your desktop or filemanager and dropping them on your browser window.
15 * **Upload progress bar:**  
16   Shows a progress bar indicating the upload progress for individual files and for all uploads combined.
17 * **Cancelable uploads:**  
18   Individual file uploads can be canceled to stop the upload progress.
19 * **Resumable uploads:**  
20   Aborted uploads can be resumed with browsers supporting the Blob API.
21 * **Chunked uploads:**  
22   Large files can be uploaded in smaller chunks with browsers supporting the Blob API.
23 * **Client-side image resizing:**  
24   Images can be automatically resized on client-side with browsers supporting the required JS APIs.
25 * **Preview images:**  
26   A preview of image files can be displayed before uploading with browsers supporting the required JS APIs.
27 * **No browser plugins (e.g. Adobe Flash) required:**  
28   The implementation is based on open standards like HTML5 and JavaScript and requires no additional browser plugins.
29 * **Graceful fallback for legacy browsers:**  
30   Uploads files via XMLHttpRequests if supported and uses iframes as fallback for legacy browsers.
31 * **HTML file upload form fallback:**  
32   Shows a standard HTML file upload form if JavaScript is disabled.
33 * **Cross-site file uploads:**  
34   Supports uploading files to a different domain with Cross-site XMLHttpRequests.
35 * **Multiple plugin instances:**  
36   Allows to use multiple plugin instances on the same webpage.
37 * **Customizable and extensible:**  
38   Provides an API to set individual options and define callBack methods for various upload events.
39 * **Multipart and file contents stream uploads:**  
40   Files can be uploaded as standard "multipart/form-data" or file contents stream (HTTP PUT file upload).
41 * **Compatible with any server-side application platform:**  
42   Works with any server-side platform (PHP, Python, Ruby on Rails, Java, Node.js, Go etc.) that supports standard HTML form file uploads.
43
44 ## Requirements
45 * [jQuery](http://jquery.com/) v. 1.6+
46 * [jQuery UI widget factory](http://wiki.jqueryui.com/w/page/12138135/Widget%20factory) v. 1.8+
47 * [jQuery Iframe Transport plugin](https://github.com/blueimp/jQuery-File-Upload/blob/master/jquery.iframe-transport.js) (included)
48 * [JavaScript Templates engine](https://github.com/blueimp/JavaScript-Templates) v. 2.1.0+ (optional)
49 * [JavaScript Load Image function](https://github.com/blueimp/JavaScript-Load-Image) v. 1.1.6+ (optional)
50 * [JavaScript Canvas to Blob function](https://github.com/blueimp/JavaScript-Canvas-to-Blob) v. 2.0.0+ (optional)
51 * [Bootstrap CSS Toolkit](https://github.com/twitter/bootstrap/) v. 2.0+ (optional)
52
53 The jQuery UI widget factory is a requirement for the basic File Upload plugin, but very lightweight without any other dependencies.  
54 The jQuery Iframe Transport is required for [browsers without XHR file upload support](https://github.com/blueimp/jQuery-File-Upload/wiki/Browser-support).  
55 The UI version of the File Upload plugin also requires the JavaScript Templates engine as well as the JavaScript Load Image and JavaScript Canvas to Blob functions (for the image previews and resizing functionality). These dependencies are marked as optional, as the basic File Upload plugin can be used without them and the UI version of the plugin can be extended to override these dependencies with alternative solutions.
56
57 The User Interface is built with Twitter's [Bootstrap](https://github.com/twitter/bootstrap/) Toolkit. This enables a CSS based, responsive layout and fancy transition effects on modern browsers. The demo also includes the [Bootstrap Image Gallery Plugin](https://github.com/blueimp/Bootstrap-Image-Gallery). Both of these components are optional and not required.
58
59 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 Cross-domain AJAX requests (GET and POST only) in Microsoft Internet Explorer >= 8. However, the XDomainRequest object doesn't support file uploads and the plugin is only used by the [Demo](http://blueimp.github.com/jQuery-File-Upload/) for Cross-domain requests to delete uploaded files from the demo file upload service.
60
61 [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.
62
63 ## Browser Support (tested versions)
64 * Google Chrome - 7.0+
65 * Apple Safari - 4.0+
66 * Mozilla Firefox - 3.0+
67 * Opera - 10.0+
68 * Microsoft Internet Explorer 6.0+
69
70 Drag & Drop is only supported on Google Chrome, Firefox 4.0+ and Safari 5.0+.  
71 Microsoft Internet Explorer has no support for multiple file selection or upload progress.  
72 [Extended browser support information](https://github.com/blueimp/jQuery-File-Upload/wiki/Browser-support).
73
74 ## License
75 Released under the [MIT license](http://www.opensource.org/licenses/MIT).