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 Aug 3, 2013
·
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
- demo.css is an example generic page style for the demos which don't rely on Bootstrap, currently only used by the jQuery UI version.
- 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, accommodating the Bootstrap style which is used by all demos except the jQuery UI version.
-
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
- app.js is an example application for the AngularJS module.
- 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-angular.js is an AngularJS file upload module depending on the File Upload (and processing) plugin.
- 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-jquery-ui.js extends the UI version of the fileupload plugin to use it with jQuery UI.
- 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().
- main.js is an example how to initialize and use the File Upload plugin.
-
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
-
app
- 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.
-
app
-
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
-
node
- .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.
-
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.
- angularjs.html is a HTML markup example for the AngularJS file upload module.
- basic.html is a HTML markup example for the basic file upload plugin.
- basic-plus.html is a HTML markup example for the basic file upload plugin extended with the processing, image resizing and validation plugins.
- blueimp-file-upload.jquery.json is a JSON file for the jQuery Plugin Registry.
- CONTRIBUTING.md contains contribution 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.
- jquery-ui.html is a HTML markup example for the jQuery UI version of the file upload plugin.
- package.json contains machine readable information about the plugin in JSON format.
- README.md contains basic plugin information in markdown format.