-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Plugin files
-
- 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.
-
- 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.
- style.css is an example generic page style.
-
- 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.
-
-
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.fileupload-fp.js extends the basic or UI version of the fileupload plugin and adds image processing (image resizing) functionality.
-
jquery.iframe-transport.js adds iframe transport support to jQuery.ajax().
-
main.js is an example how to initialize and use the File Upload plugin.
-
- jquery.postmessage-transport.js adds postMessage transport support to jQuery.ajax().
- jquery.xdr-transport.js adds XDomainRequest transport support to jQuery.ajax().
-
- jquery.ui.widget.js provides the jQuery UI widget factory.
-
-
- index.html contains the HTML markup for the unit tests.
- test.js contains the JS code for the unit tests.
-
-
-
- main.go is an example for a file upload handler component implemented in Go.
-
- 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.
-
-
-
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
-
- .gitignore is a Git configuration file.
- package.json contains machine readable information about the node package in JSON format.
- server.js is an example for a Node.js file upload handler implementation.
-
- files
- index.php is an example for a PHP upload handler.
- upload.class.php is an example PHP upload handler class used by index.php.
-
-
README.md contains basic plugin information in markdown format.
-
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.