diff options
Diffstat (limited to 'data/rhlib/fixingAttMIME.js')
-rw-r--r-- | data/rhlib/fixingAttMIME.js | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/data/rhlib/fixingAttMIME.js b/data/rhlib/fixingAttMIME.js index ada6974..9834cfa 100644 --- a/data/rhlib/fixingAttMIME.js +++ b/data/rhlib/fixingAttMIME.js @@ -1,11 +1,11 @@ -// Released under the MIT/X11 license -// http://www.opensource.org/licenses/mit-license.php +//Released under the MIT/X11 license +//http://www.opensource.org/licenses/mit-license.php var reqCounter = 0; // TODO should be probably a dict indexed by called method /** * Callback function for the XMLRPC request - * + * * @param ret * Object with xmlhttprequest response with attributes: + status -- int * return code + statusText + responseHeaders + responseText @@ -22,7 +22,7 @@ function XMLRPCcallback() { /** * The worker function -- call XMLRPC to fix MIME type of the particular * attachment - * + * * @param id * Integer with the attachment id to be fixed * @param type @@ -30,19 +30,19 @@ function XMLRPCcallback() { * @param email * Boolean whether email should be sent to appropriate person; option, * defaults to false - * + * * updateAttachMimeType($data_ref, $username, $password) - * + * * Update the attachment mime type of an attachment. The first argument is a * data hash containing information on the new MIME type and the attachment id * that you want to act on. - * + * * $data_ref = { "attach_id" => "<Attachment ID>", # Attachment ID to perform * MIME type change on. "mime_type" => "<New MIME Type Value>", # Legal MIME * type value that you want to change the attachment to. "nomail" => 0, # * OPTIONAL Flag that is either 1 or 0 if you want email to be sent or not for * this change }; - * + * */ function fixAttachById(id, XMLRPCURL, type, email) { if (type === undefined) { @@ -62,9 +62,9 @@ function fixAttachById(id, XMLRPCURL, type, email) { }; self.postMessage(new Message("MakeJSONRPCall", { - url : XMLRPCURL.replace("xmlrpc.cgi","jsonrpc.cgi"), + url : XMLRPCURL.replace("xmlrpc.cgi", "jsonrpc.cgi"), method : "bugzilla.updateAttachMimeType", - login: getLogin(), + login : getLogin(), params : params, callRPC : "FixAttachmentMIMECallback" })); @@ -73,7 +73,7 @@ function fixAttachById(id, XMLRPCURL, type, email) { /** * Add a link to the bad attachment for fixing it. - * + * * @param * <TR> DOM jQuery element with a bad attachment * @return none |