Lines Matching refs:upload

6  * This module uses Flash player transport to upload files to the server, with support for 
205 * Fires when a specific file's upload is cancelled.
211 * <dd>The id of the file whose upload has been cancelled.</dd>
218 * If the server has sent a response to the file upload, this event is
234 * Provides error information if an error has occurred during the upload.
240 * <dd>The id of the file for which the upload error has occurred.</dd>
249 * Provides progress information on a specific file upload.
266 * Announces that the upload has been started for a specific file.
272 * <dd>The id of the file whose upload has been started.</dd>
280 * Removes a specific file from the upload queue.
293 * Clears the upload queue.
304 * Starts the upload of a specific file.
306 * @method upload
308 * @param url {String} The URL to upload the file to.
310 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
315 upload : function (fileID /*String*/, url /*String*/, method /*String*/, postVars /*Object*/, postFileVarName /*String*/) {
320 return this.uploaderswf.callSWF("upload", [fileID, url, method, postVars, postFileVarName]);
326 * Starts the upload of a set of files, as specified in the first argument.
327 * The upload queue is managed automatically.
331 * @param url {String} The URL to upload the files to.
333 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
342 * Starts the upload of the files in the upload queue.
343 * The upload queue is managed automatically.
346 * @param url {String} The URL to upload the files to.
348 * @param postVars {Object} (optional) A set of key-value pairs to send as variables along with the file upload HTTP request.
357 * Cancels the upload of a specific file, if currently in progress.
360 * @param fileID {String} (optional) The ID of the file whose upload should be cancelled. If no ID is specified, all uploads are cancelled.