aboutsummaryrefslogtreecommitdiffstats
path: root/lib/libbugzilla.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2011-07-19 14:30:39 +0200
committerMatěj Cepl <mcepl@redhat.com>2011-07-19 15:22:49 +0200
commitd75f36db36c442ae9621dc128fbd916c25d5735f (patch)
treec9ed3fcd6f86d28a9434b95e5060f3f64be17917 /lib/libbugzilla.js
parente06a2341056cabd82fae8527d30a9ec97b24dc10 (diff)
parent4ef203c974e889b74e4064ee04eddc55ba7b8c08 (diff)
downloadbugzilla-triage-d75f36db36c442ae9621dc128fbd916c25d5735f.tar.gz
Merge branch 'bugzillatweaks' into next.
This is a horribly botched branch merged. Conflicts: chip-data/chipNames.json data/lib/bugzillaDOMFunctions.js data/lib/bzpage.js data/lib/jumpNextBug.js data/lib/otherButtons.js data/lib/queries.js data/lib/util.js data/rhlib/addAttachmentRow.js data/rhlib/fixingAttMIME.js data/rhlib/rhbzpage.js data/tweaks/bug-page-mod.js data/tweaks/viewSource.js lib/libbugzilla.js lib/main.js package.json
Diffstat (limited to 'lib/libbugzilla.js')
-rw-r--r--lib/libbugzilla.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/lib/libbugzilla.js b/lib/libbugzilla.js
index b49e776..2dc1dc5 100644
--- a/lib/libbugzilla.js
+++ b/lib/libbugzilla.js
@@ -11,7 +11,6 @@ var passUtils = require("passwords");
var Request = require("request").Request;
var selfMod = require("self");
var urlMod = require("url");
-var dataUtils = require("utils/data");
var xrpc = require("xmlrpc");
var panelMod = require("panel");
@@ -21,7 +20,7 @@ var BTSPrefNS = "bugzilla-triage.setting.";
var BTSPassRealm = "BTSXMLRPCPass";
var copiedAttributes = [ "queryButton", "upstreamButton", "parseAbrtBacktraces",
"submitsLogging", "XorgLogAnalysis", "objectStyle", "signature",
- "suspiciousComponents" ];
+ "suspiciousComponents", "verboseInlineHistory" ];
var passwords = {}; // hash of passwords indexed by a hostname
@@ -345,7 +344,6 @@ exports.makeJSONRPCCallWithLogin = function makeJSONRPCCallWithLogin(url, method
password: passObj.password,
remember: false
}, function(logResult) {
- console.log("logResult = " + logResult.toSource());
makeJSONRPCCall(url, method, params, callback);
});
}