aboutsummaryrefslogtreecommitdiffstats
path: root/lib/main.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-28 23:18:26 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-28 23:18:26 +0200
commita8b165e517794a58ba3e2382668666422233a0dc (patch)
tree49ec36be09aa85f919052f4d320a889a619d4e20 /lib/main.js
parentb7ea22f4a15e3187011bd32aab8616bc1eb306b0 (diff)
downloadbugzilla-triage-a8b165e517794a58ba3e2382668666422233a0dc.tar.gz
We check this.response.status everywhere
- plus make jslint a little bit more sane (eqeqeq: false).
Diffstat (limited to 'lib/main.js')
-rw-r--r--lib/main.js52
1 files changed, 28 insertions, 24 deletions
diff --git a/lib/main.js b/lib/main.js
index 4b35d26..43fa87d 100644
--- a/lib/main.js
+++ b/lib/main.js
@@ -1,4 +1,4 @@
-/*jslint rhino: true, forin: true, onevar: false, browser: true, evil: true, laxbreak: true, undef: true, nomen: true, eqeqeq: true, bitwise: true, maxerr: 1000, immed: false, white: false, plusplus: false, regexp: false, undef: false */
+/*jslint rhino: true, forin: true, onevar: false, browser: true, evil: true, laxbreak: true, undef: true, nomen: true, eqeqeq: false, bitwise: true, maxerr: 1000, immed: false, white: false, plusplus: false, regexp: false, undef: false */
// Released under the MIT/X11 license
// http://www.opensource.org/licenses/mit-license.php
//
@@ -76,33 +76,37 @@ function initialize(callback) {
Request({
url: urlStr,
onComplete: function () {
- config.gJSONData = this.response.json;
+ if (this.response.status == 200) {
+ config.gJSONData = this.response.json;
- // Get additional tables
- if ("downloadJSON" in config.gJSONData.configData) {
- var URLsList = config.gJSONData.configData.downloadJSON;
- var dwnldObj = "";
- URLsList.forEach(function (arr) {
- var title = arr[0];
- var url = arr[1];
- Request({
- url: url,
- onComplete: function() {
- config.gJSONData.constantData[title] = this.response.json;
- }
- }).get();
- }, this);
- }
+ // Get additional tables
+ if ("downloadJSON" in config.gJSONData.configData) {
+ var URLsList = config.gJSONData.configData.downloadJSON;
+ var dwnldObj = "";
+ URLsList.forEach(function (arr) {
+ var title = arr[0];
+ var url = arr[1];
+ Request({
+ url: url,
+ onComplete: function() {
+ if (this.response.status == 200) {
+ config.gJSONData.constantData[title] = this.response.json;
+ }
+ }
+ }).get();
+ }, this);
+ }
- if (!myStorage.logs) {
- myStorage.logs = {};
- }
+ if (!myStorage.logs) {
+ myStorage.logs = {};
+ }
- var logConstructor = logger.Logger;
- config.logger = new logConstructor(myStorage.logs,
- JSON.parse(selfMod.data.load("bugzillalabelAbbreviations.json")));
+ var logConstructor = logger.Logger;
+ config.logger = new logConstructor(myStorage.logs,
+ JSON.parse(selfMod.data.load("bugzillalabelAbbreviations.json")));
- callback(config);
+ callback(config);
+ }
}
}).get();
}