diff options
author | Matěj Cepl <mcepl@redhat.com> | 2010-07-28 23:46:51 +0200 |
---|---|---|
committer | Matěj Cepl <mcepl@redhat.com> | 2010-07-29 00:01:16 +0200 |
commit | 27d3e6c8456cde1baf1179ea29062f91b9a4563a (patch) | |
tree | 0fc7a0ded11cfc5fd86f4981aece9b25c9a9f627 | |
parent | a8b165e517794a58ba3e2382668666422233a0dc (diff) | |
download | bugzilla-triage-0.16.tar.gz |
Another in the series "I've asked for the strict checking, and I've got0.16
one" ;)
-rw-r--r-- | lib/rhbzpage.js | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js index f19d13b..e858145 100644 --- a/lib/rhbzpage.js +++ b/lib/rhbzpage.js @@ -99,7 +99,7 @@ var RHBugzillaPage = function RHBugzillaPage(win, config) { this.setDefaultAssignee(); } - // Dig out backtrace + // Dig out backtrace protection against double-firing? this.btSnippet = ""; var parseAbrtBacktraces = config.gJSONData.configData.parseAbrtBacktraces; @@ -287,8 +287,10 @@ RHBugzillaPage.prototype.pasteBacktraceInComments = function() { // just the first one will do for now, we would need to do async // parsing btAttachments.forEach(function(x) { - attURL = "https://bugzilla.redhat.com/attachment.cgi?id=" + var attURL = "https://bugzilla.redhat.com/attachment.cgi?id=" + x[1]; + console.log("attURL = " + attURL); + console.log("this.btSnippet = " + this.btSnippet); if (!this.btSnippet) { var that = this; Request({ @@ -667,12 +669,12 @@ RHBugzillaPage.prototype.analyzeXorgLog = function analyzeXorgLog(attachID) { // doc.body.style.cursor = "wait"; var preElem = doc.getElementById("textPre"); - attURL = "https://bugzilla.redhat.com/attachment.cgi?id=" + attachID; + var attURL = "https://bugzilla.redhat.com/attachment.cgi?id=" + attachID; var that = this; Request({ url: attURL, onComplete: function() { - if (this.response.status == 200) { + if (this.response.status == 200) { var results = this.response.text.split("\n"). filter(function(line) { return (that.RE.soughtLines.test(line)); |