This repository was 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 Apr 30, 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 some user interface methods, but doesn't provide any HTML content itself.
- example/jquery.fileupload-uix.js is an extension to jquery.fileupload-ui.js and a full implementation example.
- example/application.js is an example how to initialize and use example/jquery.fileupload-uix.js.
- tests/tests.js contains the JS code for the unit tests.
- jquery.fileupload-ui.css adds styling for the file input field, progress bars and upload buttons. See Style Guide.
- example/style.css adds some basic styling for the example file upload form page.
- example/index.html is a HTML markup example for the file upload form and upload/download row templates.
- tests/index.html contains the HTML markup for the unit tests.
- example/upload.php is an example for a server-side file upload handler component.
- .gitignore contains instructions which files to ignore for the Git source code repository.
- README.md contains basic plugin information in markdown format.
- README.txt contains basic plugin information in plain text format.
- pbar-ani.gif is an animated GIf used for the animation of the upload progress bars.
- example/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.
- example/thumbnails/.htaccess doesn't serve any purpose other than making sure the thumbnails folder shows up in the Git source code repository.