Lines Matching refs:upload
3 * This module provides a UI for file selection and multiple file upload capability using
5 * The supported features include: automatic upload queue management, upload progress
20 * This module provides a UI for file selection and multiple file upload capability
76 * the upload process. This is a read-only property that only exists
77 * during an active upload process. Only one queue can be active at
78 * a time; if an upload start is attempted while a queue is active,
129 * Signals that an upload of multiple files has been started.
137 * Signals that an upload of a specific file has started.
152 * Reports on upload progress of a specific file.
171 * Reports on the total upload progress of the file list.
188 * Signals that a single file upload has been completed.
195 * <dd>The pointer to the instance of `Y.File` whose upload has been completed.</dd>
205 * Signals that the upload process of the entire file list has been completed.
213 * Signals that a error has occurred in a specific file's upload process.
224 * <dd>The source of the upload error, either "io" or "http"</dd>
551 * @param event The event dispatched during the upload process.
582 * Starts the upload of a specific file.
584 * @method upload
586 * @param url {String} The URL to upload the file to.
587 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
591 upload : function (file, url, postvars) {
611 * Starts the upload of all files on the file list, using an automated queue.
614 * @param url {String} The URL to upload the files to.
615 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
623 * Starts the upload of the files specified in the first argument, using an automated queue.
626 * @param files {Array} The list of files to upload.
627 * @param url {String} The URL to upload the files to.
628 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
769 * The action performed when an upload error occurs for a specific file being uploaded.
772 * <li> <strong>`UploaderQueue.CONTINUE`</strong>: the error is ignored and the upload process is continued.</li>
773 * <li> <strong>`UploaderQueue.STOP`</strong>: the upload process is stopped as soon as any other parallel file
807 * content in the upload request.
845 * in the upload method call.
941 * The URL to which file upload requested are POSTed. Only used if a different url is not passed to the upload method call.