mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-03-10 22:34:36 +00:00
89 lines
2.4 KiB
JavaScript
89 lines
2.4 KiB
JavaScript
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
const nsIX509Cert = Components.interfaces.nsIX509Cert;
|
|
const nsX509CertDB = "@mozilla.org/security/x509certdb;1";
|
|
const nsIX509CertDB = Components.interfaces.nsIX509CertDB;
|
|
const nsIDialogParamBlock = Components.interfaces.nsIDialogParamBlock;
|
|
|
|
var certdb;
|
|
var gParams;
|
|
|
|
function setWindowName()
|
|
{
|
|
gParams = window.arguments[0].QueryInterface(nsIDialogParamBlock);
|
|
|
|
var typeFlag = gParams.GetString(0);
|
|
var numberOfCerts = gParams.GetInt(0);
|
|
|
|
var bundle = document.getElementById("pippki_bundle");
|
|
var title;
|
|
var confirm;
|
|
var impact;
|
|
|
|
if(typeFlag == "mine_tab")
|
|
{
|
|
title = bundle.getString("deleteUserCertTitle");
|
|
confirm = bundle.getString("deleteUserCertConfirm");
|
|
impact = bundle.getString("deleteUserCertImpact");
|
|
}
|
|
else if(typeFlag == "websites_tab")
|
|
{
|
|
title = bundle.getString("deleteSslCertTitle3");
|
|
confirm = bundle.getString("deleteSslCertConfirm3");
|
|
impact = bundle.getString("deleteSslCertImpact3");
|
|
}
|
|
else if(typeFlag == "ca_tab")
|
|
{
|
|
title = bundle.getString("deleteCaCertTitle2");
|
|
confirm = bundle.getString("deleteCaCertConfirm2");
|
|
impact = bundle.getString("deleteCaCertImpactX2");
|
|
}
|
|
else if(typeFlag == "others_tab")
|
|
{
|
|
title = bundle.getString("deleteEmailCertTitle");
|
|
confirm = bundle.getString("deleteEmailCertConfirm");
|
|
impact = bundle.getString("deleteEmailCertImpactDesc");
|
|
}
|
|
else if(typeFlag == "orphan_tab")
|
|
{
|
|
title = bundle.getString("deleteOrphanCertTitle");
|
|
confirm = bundle.getString("deleteOrphanCertConfirm");
|
|
impact = "";
|
|
}
|
|
else
|
|
{
|
|
return;
|
|
}
|
|
var confirReference = document.getElementById('confirm');
|
|
var impactReference = document.getElementById('impact');
|
|
document.title = title;
|
|
|
|
setText("confirm",confirm);
|
|
|
|
var box=document.getElementById("certlist");
|
|
for(var x=0;x<numberOfCerts;x++)
|
|
{
|
|
var listItem = document.createElement("richlistitem");
|
|
var label = document.createElement("label");
|
|
label.setAttribute("value", gParams.GetString(x + 1));
|
|
listItem.appendChild(label);
|
|
box.appendChild(listItem);
|
|
}
|
|
|
|
setText("impact",impact);
|
|
}
|
|
|
|
function doOK()
|
|
{
|
|
gParams.SetInt(1, 1); // means OK
|
|
return true;
|
|
}
|
|
|
|
function doCancel()
|
|
{
|
|
gParams.SetInt(1, 0); // means CANCEL
|
|
return true;
|
|
}
|