This repository has been archived by the owner on May 25, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Plugin files
blueimp edited this page Dec 17, 2011
·
41 revisions
- jquery.fileupload.js is the basic plugin - it enhances the file upload process, but doesn't make any assumptions about the user interface or the content-type of the response.
- jquery.fileupload-ui.js is an extension to jquery.fileupload.js. The UI version expects JSON as the response content and adds a complete user interface.
- jquery.iframe-transport.js adds iframe transport support to jQuery.ajax().
- jquery.postmessage-transport.js adds postMessage transport support to jQuery.ajax().
- jquery.xdr-transport.js adds XDomainRequest transport support to jQuery.ajax().
- application.js is an example how to initialize and use the File Upload plugin.
- test/test.js contains the JS code for the unit tests.
- vendor/jquery.ui.widget.js provides the jQuery UI widget factory.
- jquery.fileupload-ui.css adds styling for the file input field, progress bars and upload buttons. See Style Guide.
- style.css adds some basic styling for the example file upload form page.
- result.html is a helper page which allows to access cross-domain iframe contents via redirects.
- index.html is a HTML markup example for the file upload form and the upload/download templates and serves as demo page.
- postmessage.html serves as an API endpoint for cross-domain postMessage based file uploads.
- test/index.html contains the HTML markup for the unit tests.
- gae/main.py is an example for a Python based server-side file upload handler component.
- gae/app.yaml is the configuration file for the App Engine application.
- php/index.php is an example for a PHP based server-side file upload handler component.
- php/files/.htaccess contains instructions for Apache to serve all uploaded files with a content-type of application/octet-stream, except image files. This prevents executing any uploaded script files and makes sure non-image files produce a download dialog.
- php/thumbnails/.htaccess doesn't serve any purpose other than making sure the thumbnails folder shows up in the Git source code repository.
- README.md contains basic plugin information in markdown format.
- progressbar.gif is an animated GIf used for the animation of the upload progress bars.