2012-06-26 03:11:16 +04:00
|
|
|
// -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
2005-02-25 12:07:58 +03:00
|
|
|
|
2012-06-26 03:11:16 +04:00
|
|
|
/* 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/. */
|
2007-05-31 03:13:28 +04:00
|
|
|
|
2005-02-25 12:07:58 +03:00
|
|
|
var gOCSPDialog = {
|
2012-10-16 07:39:11 +04:00
|
|
|
_updateUI: function (called_by) {
|
2005-02-25 12:07:58 +03:00
|
|
|
var securityOCSPEnabled = document.getElementById("security.OCSP.enabled");
|
2012-10-16 07:39:11 +04:00
|
|
|
var enableOCSP = document.getElementById("enableOCSP");
|
|
|
|
var requireOCSP = document.getElementById("requireOCSP");
|
2007-05-31 03:13:28 +04:00
|
|
|
|
2012-10-16 07:39:11 +04:00
|
|
|
if (called_by) {
|
|
|
|
securityOCSPEnabled.value = enableOCSP.checked ? 1 : 0
|
|
|
|
} else {
|
|
|
|
enableOCSP.checked = parseInt(securityOCSPEnabled.value) != 0;
|
2007-05-31 03:13:28 +04:00
|
|
|
}
|
|
|
|
|
2012-10-16 07:39:11 +04:00
|
|
|
requireOCSP.disabled = !enableOCSP.checked;
|
2005-02-25 12:07:58 +03:00
|
|
|
return undefined;
|
2005-06-14 14:19:34 +04:00
|
|
|
}
|
2005-02-25 12:07:58 +03:00
|
|
|
};
|