зеркало из https://github.com/mozilla/pjs.git
bug 117155 garbage characters in cookie/signon manager dialogs, bug 117023 fix js errors in cookie/signon dialogs, r=sgehani, sr=alecf
This commit is contained in:
Родитель
df36e2d0c7
Коммит
55a2bde98a
|
@ -97,7 +97,7 @@ var cookiesOutlinerView = {
|
|||
var rv;
|
||||
if (column=="domainCol") {
|
||||
rv = cookies[row].rawHost;
|
||||
} else { // must be "nameCol"
|
||||
} else if (column=="nameCol") {
|
||||
rv = cookies[row].name;
|
||||
}
|
||||
return rv;
|
||||
|
@ -107,7 +107,7 @@ var cookiesOutlinerView = {
|
|||
cycleHeader : function(aColId, aElt) {},
|
||||
getRowProperties : function(row,column,prop){},
|
||||
getColumnProperties : function(column,columnElement,prop){},
|
||||
getCellProperties : function(row,prop){},
|
||||
getCellProperties : function(row,prop){}
|
||||
};
|
||||
var cookiesOutliner;
|
||||
|
||||
|
@ -247,7 +247,7 @@ var permissionsOutlinerView = {
|
|||
var rv;
|
||||
if (column=="siteCol") {
|
||||
rv = permissions[row].rawHost;
|
||||
} else { // must be "statusCol"
|
||||
} else if (column=="statusCol") {
|
||||
rv = permissions[row].capability;
|
||||
}
|
||||
return rv;
|
||||
|
@ -257,7 +257,7 @@ var permissionsOutlinerView = {
|
|||
cycleHeader : function(aColId, aElt) {},
|
||||
getRowProperties : function(row,column,prop){},
|
||||
getColumnProperties : function(column,columnElement,prop){},
|
||||
getCellProperties : function(row,prop){},
|
||||
getCellProperties : function(row,prop){}
|
||||
};
|
||||
var permissionsOutliner;
|
||||
|
||||
|
|
|
@ -132,7 +132,7 @@ var signonsOutlinerView = {
|
|||
var rv;
|
||||
if (column=="siteCol") {
|
||||
rv = signons[row].host;
|
||||
} else { // must be "userCol"
|
||||
} else if (column=="userCol") {
|
||||
rv = signons[row].user;
|
||||
}
|
||||
return rv;
|
||||
|
@ -142,7 +142,7 @@ var signonsOutlinerView = {
|
|||
cycleHeader : function(aColId, aElt) {},
|
||||
getRowProperties : function(row,column,prop){},
|
||||
getColumnProperties : function(column,columnElement,prop){},
|
||||
getCellProperties : function(row,prop){},
|
||||
getCellProperties : function(row,prop){}
|
||||
};
|
||||
var signonsOutliner;
|
||||
|
||||
|
@ -251,14 +251,18 @@ var rejectsOutlinerView = {
|
|||
rowCount : 0,
|
||||
setOutliner : function(outliner){},
|
||||
getCellText : function(row,column){
|
||||
return rejects[row].host;
|
||||
var rv;
|
||||
if (column=="rejectCol") {
|
||||
rv = rejects[row].host;
|
||||
}
|
||||
return rv;
|
||||
},
|
||||
isSeparator : function(index) {return false;},
|
||||
isContainer : function(index) {return false;},
|
||||
cycleHeader : function(aColId, aElt) {},
|
||||
getRowProperties : function(row,column,prop){},
|
||||
getColumnProperties : function(column,columnElement,prop){},
|
||||
getCellProperties : function(row,prop){},
|
||||
getCellProperties : function(row,prop){}
|
||||
};
|
||||
var rejectsOutliner;
|
||||
|
||||
|
@ -328,14 +332,18 @@ var nopreviewsOutlinerView = {
|
|||
rowCount : 0,
|
||||
setOutliner : function(outliner){},
|
||||
getCellText : function(row,column){
|
||||
return nopreviews[row].host;
|
||||
var rv;
|
||||
if (column=="nopreviewCol") {
|
||||
rv = nopreviews[row].host;
|
||||
}
|
||||
return rv;
|
||||
},
|
||||
isSeparator : function(index) {return false;},
|
||||
isContainer : function(index) {return false;},
|
||||
cycleHeader : function(aColId, aElt) {},
|
||||
getRowProperties : function(row,column,prop){},
|
||||
getColumnProperties : function(column,columnElement,prop){},
|
||||
getCellProperties : function(row,prop){},
|
||||
getCellProperties : function(row,prop){}
|
||||
};
|
||||
var nopreviewsOutliner;
|
||||
|
||||
|
@ -408,14 +416,18 @@ var nocapturesOutlinerView = {
|
|||
rowCount : 0,
|
||||
setOutliner : function(outliner){},
|
||||
getCellText : function(row,column){
|
||||
return nocaptures[row].host;
|
||||
var rv;
|
||||
if (column=="nocaptureCol") {
|
||||
rv = nocaptures[row].host;
|
||||
}
|
||||
return rv;
|
||||
},
|
||||
isSeparator : function(index) {return false;},
|
||||
isContainer : function(index) {return false;},
|
||||
cycleHeader : function(aColId, aElt) {},
|
||||
getRowProperties : function(row,column,prop){},
|
||||
getColumnProperties : function(column,columnElement,prop){},
|
||||
getCellProperties : function(row,prop){},
|
||||
getCellProperties : function(row,prop){}
|
||||
};
|
||||
var nocapturesOutliner;
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче