├── .gitignore ├── client ├── demo.htm ├── do-nothing.htm ├── fileuploader.css ├── fileuploader.js ├── loading.gif └── tests.txt ├── gpl-2.0.txt ├── license.txt ├── readme.md ├── server ├── OctetStreamReader.java ├── coldfusion │ ├── image-uploader.cfc │ ├── readme.txt │ └── upload-page.cfm ├── perl.cgi ├── php.php ├── readme.txt └── uploads │ └── .gitignore └── tests ├── action-acceptance.php ├── action-handler-queue-test.php ├── action-handler-test.php ├── action-slow-response.php ├── browser-bugs ├── safari-bug1.htm └── safari-bug2.htm ├── iframe-content-tests ├── application-javascript.php ├── application-json.php ├── header-404.php ├── somepage.php ├── text-html-large.php ├── text-html.php ├── text-javascript.php └── text-plain.php ├── jquery-1.4.2.min.js ├── jquery-ui ├── jquery-ui-1.8.4.custom.min.js └── ui-lightness │ ├── images │ ├── ui-bg_diagonals-thick_18_b81900_40x40.png │ ├── ui-bg_diagonals-thick_20_666666_40x40.png │ ├── ui-bg_flat_10_000000_40x100.png │ ├── ui-bg_glass_100_f6f6f6_1x400.png │ ├── ui-bg_glass_100_fdf5ce_1x400.png │ ├── ui-bg_glass_65_ffffff_1x400.png │ ├── ui-bg_gloss-wave_35_f6a828_500x100.png │ ├── ui-bg_highlight-soft_100_eeeeee_1x100.png │ ├── ui-bg_highlight-soft_75_ffe45c_1x100.png │ ├── ui-icons_222222_256x240.png │ ├── ui-icons_228ef1_256x240.png │ ├── ui-icons_ef8c08_256x240.png │ ├── ui-icons_ffd27a_256x240.png │ └── ui-icons_ffffff_256x240.png │ └── jquery-ui-1.8.4.custom.css ├── qunit ├── package.json ├── qunit │ ├── qunit.css │ └── qunit.js └── test │ ├── index.html │ ├── same.js │ └── test.js ├── sample-files ├── 1imagelonglonglonglonglonglongname.gif ├── 2larger.txt ├── 3empty.txt ├── 4text.txt ├── 5text.txt ├── 6text.txt ├── 7small.txt └── 8text.txt ├── separate-file-list.htm ├── test-acceptance.htm ├── test-detach-handlers.htm ├── test-drop-zone.htm ├── test-handler-queue.htm └── test-upload-handlers.htm /.gitignore: -------------------------------------------------------------------------------- 1 | .* 2 | Thumbs.db 3 | !.gitignore -------------------------------------------------------------------------------- /client/demo.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/client/demo.htm -------------------------------------------------------------------------------- /client/do-nothing.htm: -------------------------------------------------------------------------------- 1 | {success:true} 2 | -------------------------------------------------------------------------------- /client/fileuploader.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/client/fileuploader.css -------------------------------------------------------------------------------- /client/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/client/fileuploader.js -------------------------------------------------------------------------------- /client/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/client/loading.gif -------------------------------------------------------------------------------- /client/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/client/tests.txt -------------------------------------------------------------------------------- /gpl-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/gpl-2.0.txt -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/license.txt -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/readme.md -------------------------------------------------------------------------------- /server/OctetStreamReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/OctetStreamReader.java -------------------------------------------------------------------------------- /server/coldfusion/image-uploader.cfc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/coldfusion/image-uploader.cfc -------------------------------------------------------------------------------- /server/coldfusion/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/coldfusion/readme.txt -------------------------------------------------------------------------------- /server/coldfusion/upload-page.cfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/coldfusion/upload-page.cfm -------------------------------------------------------------------------------- /server/perl.cgi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/perl.cgi -------------------------------------------------------------------------------- /server/php.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/php.php -------------------------------------------------------------------------------- /server/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/server/readme.txt -------------------------------------------------------------------------------- /server/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /tests/action-acceptance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/action-acceptance.php -------------------------------------------------------------------------------- /tests/action-handler-queue-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/action-handler-queue-test.php -------------------------------------------------------------------------------- /tests/action-handler-test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/action-handler-test.php -------------------------------------------------------------------------------- /tests/action-slow-response.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/iframe-content-tests/application-json.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/iframe-content-tests/header-404.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/iframe-content-tests/header-404.php -------------------------------------------------------------------------------- /tests/iframe-content-tests/somepage.php: -------------------------------------------------------------------------------- 1 | I'm a page. -------------------------------------------------------------------------------- /tests/iframe-content-tests/text-html-large.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/iframe-content-tests/text-html-large.php -------------------------------------------------------------------------------- /tests/iframe-content-tests/text-html.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/iframe-content-tests/text-html.php -------------------------------------------------------------------------------- /tests/iframe-content-tests/text-javascript.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/iframe-content-tests/text-plain.php: -------------------------------------------------------------------------------- 1 | 2 | text

P tag

-------------------------------------------------------------------------------- /tests/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /tests/jquery-ui/jquery-ui-1.8.4.custom.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/jquery-ui-1.8.4.custom.min.js -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_flat_10_000000_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_flat_10_000000_40x100.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-icons_228ef1_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-icons_228ef1_256x240.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-icons_ef8c08_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-icons_ef8c08_256x240.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-icons_ffd27a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-icons_ffd27a_256x240.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/images/ui-icons_ffffff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/images/ui-icons_ffffff_256x240.png -------------------------------------------------------------------------------- /tests/jquery-ui/ui-lightness/jquery-ui-1.8.4.custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/jquery-ui/ui-lightness/jquery-ui-1.8.4.custom.css -------------------------------------------------------------------------------- /tests/qunit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/qunit/package.json -------------------------------------------------------------------------------- /tests/qunit/qunit/qunit.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/qunit/qunit/qunit.css -------------------------------------------------------------------------------- /tests/qunit/qunit/qunit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/qunit/qunit/qunit.js -------------------------------------------------------------------------------- /tests/qunit/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/qunit/test/index.html -------------------------------------------------------------------------------- /tests/qunit/test/same.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/qunit/test/same.js -------------------------------------------------------------------------------- /tests/qunit/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/qunit/test/test.js -------------------------------------------------------------------------------- /tests/sample-files/1imagelonglonglonglonglonglongname.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/sample-files/1imagelonglonglonglonglonglongname.gif -------------------------------------------------------------------------------- /tests/sample-files/2larger.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/sample-files/2larger.txt -------------------------------------------------------------------------------- /tests/sample-files/3empty.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sample-files/4text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/sample-files/4text.txt -------------------------------------------------------------------------------- /tests/sample-files/5text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/sample-files/5text.txt -------------------------------------------------------------------------------- /tests/sample-files/6text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/sample-files/6text.txt -------------------------------------------------------------------------------- /tests/sample-files/7small.txt: -------------------------------------------------------------------------------- 1 | s -------------------------------------------------------------------------------- /tests/sample-files/8text.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/sample-files/8text.txt -------------------------------------------------------------------------------- /tests/separate-file-list.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/separate-file-list.htm -------------------------------------------------------------------------------- /tests/test-acceptance.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/test-acceptance.htm -------------------------------------------------------------------------------- /tests/test-detach-handlers.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/test-detach-handlers.htm -------------------------------------------------------------------------------- /tests/test-drop-zone.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/test-drop-zone.htm -------------------------------------------------------------------------------- /tests/test-handler-queue.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/test-handler-queue.htm -------------------------------------------------------------------------------- /tests/test-upload-handlers.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Valums-File-Uploader/file-uploader/HEAD/tests/test-upload-handlers.htm --------------------------------------------------------------------------------