security/manager/pki/resources/content/certerror.js

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

michael@0 1 /* This Source Code Form is subject to the terms of the Mozilla Public
michael@0 2 * License, v. 2.0. If a copy of the MPL was not distributed with this
michael@0 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
michael@0 4
michael@0 5 const nsIDialogParamBlock = Components.interfaces.nsIDialogParamBlock;
michael@0 6 const nsIPKIParamBlock = Components.interfaces.nsIPKIParamBlock;
michael@0 7 const nsIX509Cert = Components.interfaces.nsIX509Cert;
michael@0 8
michael@0 9 var dialogParams;
michael@0 10 var pkiParams;
michael@0 11 var cert;
michael@0 12 var hostport;
michael@0 13
michael@0 14 function initCertErrorDialog()
michael@0 15 {
michael@0 16 pkiParams = window.arguments[0].QueryInterface(nsIPKIParamBlock);
michael@0 17 dialogParams = pkiParams.QueryInterface(nsIDialogParamBlock);
michael@0 18
michael@0 19 var isupport = pkiParams.getISupportAtIndex(1);
michael@0 20 cert = isupport.QueryInterface(nsIX509Cert);
michael@0 21
michael@0 22 var portNumber = dialogParams.GetInt(1);
michael@0 23 var hostName = dialogParams.GetString(1);
michael@0 24 var msg = dialogParams.GetString(2);
michael@0 25
michael@0 26 hostport = hostName + ":" + portNumber;
michael@0 27 setText("warningText", msg);
michael@0 28 }
michael@0 29
michael@0 30 function viewCert()
michael@0 31 {
michael@0 32 viewCertHelper(window, cert);
michael@0 33 }

mercurial