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
Sebastian Tschan edited this page Feb 17, 2020
·
41 revisions
-
cors
- result.html is a helper page which allows to access cross-domain iframe contents via redirects.
- postmessage.html serves as an API endpoint for cross-domain postMessage based file uploads.
-
css
- jquery.fileupload-ui-noscript.css adjusts styling for browsers with JavaScript disabled.
- jquery.fileupload-ui.css adds styling for the file input field, progress bars and upload buttons. See Style Guide.
-
img
- loading.gif is an animated GIF image file used for the file processing indication.
- progressbar.gif is an animated GIF image file used for the animation of the upload progress bars for browsers without support for CSS animations.
-
js
- 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-audio.js extends the file processing plugin and adds audio preview functionality.
- jquery.fileupload-image.js extends the file processing plugin and adds image preview & resize functionality.
- jquery.fileupload-process.js extends the basic version of the fileupload plugin and adds file processing functionality.
- jquery.fileupload-ui.js extends the file processing plugin and adds a complete user interface.
- jquery.fileupload-validate.js extends the file processing plugin and adds file validation functionality.
- jquery.fileupload-video.js extends the file processing plugin and adds video preview functionality.
- jquery.iframe-transport.js adds iframe transport support to jQuery.ajax().
-
cors
- jquery.postmessage-transport.js adds postMessage transport support to jQuery.ajax().
- jquery.xdr-transport.js adds XDomainRequest transport support to jQuery.ajax().
-
vendor
- jquery.ui.widget.js provides the jQuery UI widget factory.
-
test
- index.html contains the HTML markup for the unit tests.
- test.js contains the JS code for the unit tests.
-
server
-
gae-go
- main.go is an example for a file upload handler component implemented in Go.
-
static
- favicon.ico is the favicon for the Go GAE upload handler.
- robots.txt is the directive for the Robots exclusion standard for the Go GAE upload handler.
- app.yaml is the configuration file for the Go App Engine application.
-
gae-python
-
static
- favicon.ico is the favicon for the Python GAE upload handler.
- robots.txt is the directive for the Robots exclusion standard for the Python GAE upload handler.
- main.py is an example for a Python based server-side file upload handler component.
- app.yaml is the configuration file for the Python App Engine application.
-
static
-
php
- files
- index.php is an example for a PHP upload handler.
- UploadHandler.php is an example PHP upload handler class used by index.php.
-
gae-go
- .gitignore is a Git configuration file.
- index.html is a HTML markup example for the file upload form and the upload/download templates and serves as demo page.
- package.json contains machine readable information about the plugin in JSON format.
- README.md contains basic plugin information in markdown format.