aboutsummaryrefslogtreecommitdiffstats
path: root/lib/bzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-16 01:57:10 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-16 04:24:35 +0200
commit91aac059810fec3d849bb48eb51f55e64b1cc32b (patch)
treef2b1da249409e413c2bb03279ef46077cb79707e /lib/bzpage.js
parent2b1cf2b13c8d75feff30fdcf93bdb390523e1fd9 (diff)
parentff9af9afae670abd2944ad56705032285db08bc0 (diff)
downloadbugzilla-triage-91aac059810fec3d849bb48eb51f55e64b1cc32b.tar.gz
Merge branch 'betterPasswordHandling'
Diffstat (limited to 'lib/bzpage.js')
-rw-r--r--lib/bzpage.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/bzpage.js b/lib/bzpage.js
index d9d679d..3ac61d6 100644
--- a/lib/bzpage.js
+++ b/lib/bzpage.js
@@ -11,8 +11,8 @@ var Color = require("color").Color;
var TriagedDistro = 13;
var NumberOfFrames = 7;
var bugURL = "https://bugzilla.redhat.com/show_bug.cgi?id=";
-var BSTPrefNS = "bugzilla-triage.setting.";
-exports.BSTPrefNS = BSTPrefNS;
+var BTSPrefNS = "bugzilla-triage.setting.";
+exports.BTSPrefNS = BTSPrefNS;
// ====================================================================================
// BZPage's methods
@@ -66,7 +66,7 @@ var BZPage = function BZPage(win, config) {
this.doc.getElementById("configurationButton").addEventListener(
"click",
function(evt) {
- var prfNm = BSTPrefNS+"JSONURL";
+ var prfNm = BTSPrefNS+"JSONURL";
var url = preferences.get(prfNm,"");
var reply = that.win.prompt("New location of JSON configuration file",url);
@@ -680,7 +680,7 @@ BZPage.prototype.getAttachments = function getAttachments () {
* @return String with the password
*/
BZPage.prototype.getPassword = function getPassword () {
- var prefName = BSTPrefNS+"BZpassword";
+ var prefName = BTSPrefNS+"BZpassword";
if (preferences.isSet(prefName)) {
return preferences.get(prefName,undefined);
} else {