diff options
author | Matěj Cepl <mcepl@redhat.com> | 2011-09-01 10:29:28 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2011-09-01 10:53:51 +0200 |
commit | 5efc52cf5cec2b9b5f75351da8e473c2f90266b5 (patch) | |
tree | 4bb5bbc15dde0607737e642c0a5075875ebf58bb /data/rhlib/fixingAttMIME.js | |
parent | b6b75faa9ef841396731398a2882e869df5b8ae7 (diff) | |
download | bugzilla-triage-5efc52cf5cec2b9b5f75351da8e473c2f90266b5.tar.gz |
Eliminating MakeJSONRPC calls and fixing multiple logins.
Fixes #113.
Diffstat (limited to 'data/rhlib/fixingAttMIME.js')
-rw-r--r-- | data/rhlib/fixingAttMIME.js | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/data/rhlib/fixingAttMIME.js b/data/rhlib/fixingAttMIME.js index f61ddbd..220b7ad 100644 --- a/data/rhlib/fixingAttMIME.js +++ b/data/rhlib/fixingAttMIME.js @@ -44,7 +44,7 @@ function XMLRPCcallback() { * this change }; * */ -function fixAttachById(id, XMLRPCURL, type, email) { +function fixAttachById(id, type, email) { if (type === undefined) { type = "text/plain"; } @@ -61,13 +61,7 @@ function fixAttachById(id, XMLRPCURL, type, email) { 'nomail' : !email }; - self.postMessage(new Message("MakeJSONRPCall", { - url : XMLRPCURL.replace("xmlrpc.cgi", "jsonrpc.cgi"), - method : "bugzilla.updateAttachMimeType", - login : getLogin(), - params : params, - callRPC : "FixAttachmentMIMECallback" - })); + makeJSONRPCCall("bugzilla.updateAttachMimeType", params, XMLRPCcallback); reqCounter++; } @@ -78,11 +72,9 @@ function fixAttachById(id, XMLRPCURL, type, email) { * <TR> DOM jQuery element with a bad attachment * @return none */ -function addTextLink(att, xmlRpcUrl) { +function addTextLink(att) { var elemS = att.element.getElementsByTagName("td"); var elem = elemS[elemS.length - 1]; createDeadLink("addFix2TextLink", "text", elem, fixAttachById, - [ - att.id, xmlRpcUrl - ], "br"); + [ att.id ], "br"); } |