gitextract_3s53bgjs/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ └── test.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── VULNERABILITIES.md ├── cors/ │ ├── postmessage.html │ └── result.html ├── css/ │ ├── jquery.fileupload-noscript.css │ ├── jquery.fileupload-ui-noscript.css │ ├── jquery.fileupload-ui.css │ └── jquery.fileupload.css ├── docker-compose.yml ├── index.html ├── js/ │ ├── cors/ │ │ ├── jquery.postmessage-transport.js │ │ └── jquery.xdr-transport.js │ ├── demo.js │ ├── jquery.fileupload-audio.js │ ├── jquery.fileupload-image.js │ ├── jquery.fileupload-process.js │ ├── jquery.fileupload-ui.js │ ├── jquery.fileupload-validate.js │ ├── jquery.fileupload-video.js │ ├── jquery.fileupload.js │ ├── jquery.iframe-transport.js │ └── vendor/ │ └── jquery.ui.widget.js ├── package.json ├── server/ │ ├── gae-python/ │ │ ├── app.yaml │ │ ├── main.py │ │ └── static/ │ │ └── robots.txt │ └── php/ │ ├── .dockerignore │ ├── Dockerfile │ ├── UploadHandler.php │ ├── files/ │ │ ├── .gitignore │ │ └── .htaccess │ ├── index.php │ └── php.ini ├── test/ │ ├── index.html │ ├── unit.js │ └── vendor/ │ ├── chai.js │ ├── mocha.css │ └── mocha.js └── wdio/ ├── .eslintrc.js ├── .prettierrc.js ├── LICENSE.txt ├── conf/ │ ├── chrome.js │ └── firefox.js ├── hooks/ │ └── index.js ├── test/ │ ├── pages/ │ │ └── file-upload.js │ └── specs/ │ └── 01-file-upload.js └── wdio.conf.js