Lines Matching refs:upload

5      * This module provides a UI for file selection and multiple file upload capability using
7 * The supported features include: automatic upload queue management, upload progress
18 * This module provides a UI for file selection and multiple file upload capability using
55 * the upload process. This is a read-only property that only exists
56 * during an active upload process. Only one queue can be active at
57 * a time; if an upload start is attempted while a queue is active,
95 * Signals that an upload of multiple files has been started.
103 * Signals that an upload of a specific file has started.
118 * Reports on upload progress of a specific file.
139 * Reports on the total upload progress of the file list.
156 * Signals that a single file upload has been completed.
163 * <dd>The pointer to the instance of `Y.File` whose upload has been completed.</dd>
173 * Signals that the upload process of the entire file list has been completed.
181 * Signals that a error has occurred in a specific file's upload process.
444 * @param event The event dispatched during the upload process.
486 * Starts the upload of a specific file.
488 * @method upload
490 * @param url {String} The URL to upload the file to.
491 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
494 upload : function (file, url, postvars) {
514 * Starts the upload of all files on the file list, using an automated queue.
517 * @param url {String} The URL to upload the files to.
518 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
526 * Starts the upload of the files specified in the first argument, using an automated queue.
529 * @param files {Array} The list of files to upload.
530 * @param url {String} The URL to upload the files to.
531 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
678 * The action performed when an upload error occurs for a specific file being uploaded.
681 * <li> <strong>`UploaderQueue.CONTINUE`</strong>: the error is ignored and the upload process is continued.</li>
682 * <li> <strong>`UploaderQueue.STOP`</strong>: the upload process is stopped as soon as any other parallel file
699 * content in the upload request.
737 * in the upload method call.
792 * The URL to which file upload requested are POSTed. Only used if a different url is not passed to the upload method call.