aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bugzillaBugTriage.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/bugzillaBugTriage.js b/bugzillaBugTriage.js
index 99fd70d..f300cb8 100644
--- a/bugzillaBugTriage.js
+++ b/bugzillaBugTriage.js
@@ -571,6 +571,7 @@ bzPage.prototype.selectOption = function(id,label) {
var intEvent = $(this.doc).get(0).createEvent("HTMLEvents");
intEvent.initEvent("change", true, true);
selectElement.get(0).dispatchEvent(intEvent);
+// $("#"+id,this.doc).value(label).change();
}
/**
@@ -801,9 +802,10 @@ bzPage.prototype.createXMLRPCMessage = function(login,password,attachId,mimeType
bzPage.prototype.fixAttachById = function(id,type) {
var ret = {};
var msg = this.createXMLRPCMessage(this.login,this.password,id,type);
-// try {
ret = $.post(XMLRPCurl,
msg,this.callBack);
+// spec is http://www.xmlrpc.com/spec
+ // FIXME content-type MUST be text/xml
// // The following is most likely nonsense, because jQuery.post doesn't return
// // with failure. Commenting out for now.
// }