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
22 * This module provides a UI for file selection and multiple file upload capability
78 * the upload process. This is a read-only property that only exists
79 * during an active upload process. Only one queue can be active at
80 * a time; if an upload start is attempted while a queue is active,
131 * Signals that an upload of multiple files has been started.
139 * Signals that an upload of a specific file has started.
154 * Reports on upload progress of a specific file.
173 * Reports on the total upload progress of the file list.
190 * Signals that a single file upload has been completed.
197 * <dd>The pointer to the instance of `Y.File` whose upload has been completed.</dd>
207 * Signals that the upload process of the entire file list has been completed.
215 * Signals that a error has occurred in a specific file's upload process.
226 * <dd>The source of the upload error, either "io" or "http"</dd>
553 * @param event The event dispatched during the upload process.
584 * Starts the upload of a specific file.
586 * @method upload
588 * @param url {String} The URL to upload the file to.
589 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
593 upload : function (file, url, postvars) {
613 * Starts the upload of all files on the file list, using an automated queue.
616 * @param url {String} The URL to upload the files to.
617 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
625 * Starts the upload of the files specified in the first argument, using an automated queue.
628 * @param files {Array} The list of files to upload.
629 * @param url {String} The URL to upload the files to.
630 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
771 * The action performed when an upload error occurs for a specific file being uploaded.
774 * <li> <strong>`UploaderQueue.CONTINUE`</strong>: the error is ignored and the upload process is continued.</li>
775 * <li> <strong>`UploaderQueue.STOP`</strong>: the upload process is stopped as soon as any other parallel file
809 * content in the upload request.
847 * in the upload method call.
943 * The URL to which file upload requested are POSTed. Only used if a different url is not passed to the upload method call.