mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
263 lines
9.4 KiB
XML
263 lines
9.4 KiB
XML
<?xml version="1.0"?>
|
|
<!-- ***** BEGIN LICENSE BLOCK *****
|
|
- Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
-
|
|
- The contents of this file are subject to the Mozilla Public License Version
|
|
- 1.1 (the "License"); you may not use this file except in compliance with
|
|
- the License. You may obtain a copy of the License at
|
|
- http://www.mozilla.org/MPL/
|
|
-
|
|
- Software distributed under the License is distributed on an "AS IS" basis,
|
|
- WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
- for the specific language governing rights and limitations under the
|
|
- License.
|
|
-
|
|
- The Original Code is mozilla.org code.
|
|
-
|
|
- The Initial Developer of the Original Code is
|
|
- Netscape Communications Corp.
|
|
- Portions created by the Initial Developer are Copyright (C) 2001
|
|
- the Initial Developer. All Rights Reserved.
|
|
-
|
|
- Contributor(s):
|
|
- Terry Hayes <thayes@netscape.com>
|
|
-
|
|
- Alternatively, the contents of this file may be used under the terms of
|
|
- either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
- the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
- in which case the provisions of the GPL or the LGPL are applicable instead
|
|
- of those above. If you wish to allow use of your version of this file only
|
|
- under the terms of either the GPL or the LGPL, and not to allow others to
|
|
- use your version of this file under the terms of the MPL, indicate your
|
|
- decision by deleting the provisions above and replace them with the notice
|
|
- and other provisions required by the GPL or the LGPL. If you do not delete
|
|
- the provisions above, a recipient may use your version of this file under
|
|
- the terms of any one of the MPL, the GPL or the LGPL.
|
|
-
|
|
- ***** END LICENSE BLOCK ***** -->
|
|
|
|
<!-- This file extends "chrome://navigator/content/pageInfo.xul" -->
|
|
|
|
<!DOCTYPE overlay SYSTEM "chrome://pippki/locale/PageInfoOverlay.dtd">
|
|
|
|
<overlay id="pipPageInfoOverlayID"
|
|
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<script type="application/x-javascript" src="chrome://global/content/strres.js"/>
|
|
<script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
|
|
<script type="application/x-javascript">
|
|
<![CDATA[
|
|
var security = {
|
|
// Display the server certificate (static)
|
|
viewCert : function () {
|
|
var cert = security._cert;
|
|
viewCertHelper(window, cert);
|
|
},
|
|
|
|
_getSecurityInfo : function() {
|
|
const nsIX509Cert = Components.interfaces.nsIX509Cert;
|
|
const nsIX509CertDB = Components.interfaces.nsIX509CertDB;
|
|
const nsX509CertDB = "@mozilla.org/security/x509certdb;1";
|
|
const nsISSLStatusProvider = Components.interfaces.nsISSLStatusProvider;
|
|
const nsISSLStatus = Components.interfaces.nsISSLStatus;
|
|
|
|
// Get the window for this information
|
|
var w;
|
|
if ("arguments" in window && window.arguments.length > 0 &&
|
|
window.arguments[0] && window.arguments[0].doc)
|
|
{
|
|
w = window.arguments[0].doc.defaultView;
|
|
if (w != w.top) {
|
|
// We don't have separate info for a frame, return null until further notice
|
|
// (see bug 138479)
|
|
return null;
|
|
}
|
|
}
|
|
else if ("gBrowser" in window.opener)
|
|
w = window.opener.gBrowser.contentWindow;
|
|
else
|
|
w = window.opener.frames[0];
|
|
|
|
var hName = null;
|
|
try
|
|
{
|
|
hName = w.location.host;
|
|
} catch(exception){}
|
|
|
|
var ui = security._getSecurityUI();
|
|
var status = null;
|
|
var sp = null;
|
|
var isBroken = false;
|
|
if (ui) {
|
|
isBroken = (ui.state == Components.interfaces.nsIWebProgressListener.STATE_IS_BROKEN);
|
|
sp = ui.QueryInterface(nsISSLStatusProvider);
|
|
if (sp)
|
|
status = sp.SSLStatus;
|
|
}
|
|
if (status) {
|
|
status = status.QueryInterface(nsISSLStatus);
|
|
}
|
|
if (status) {
|
|
var cert = status.serverCert;
|
|
var issuerName;
|
|
|
|
issuerName = this.mapIssuerOrganization(cert.issuerOrganization);
|
|
if (!issuerName) issuerName = cert.issuerName;
|
|
|
|
return {
|
|
hostName : hName,
|
|
cAName : issuerName,
|
|
encryptionAlgorithm : status.cipherName,
|
|
encryptionStrength : status.secretKeyLength,
|
|
isBroken : isBroken,
|
|
cert : cert
|
|
};
|
|
} else {
|
|
return {
|
|
hostName : hName,
|
|
cAName : "",
|
|
encryptionAlgorithm : "",
|
|
encryptionStrength : 0,
|
|
isBroken : isBroken,
|
|
cert : null
|
|
};
|
|
}
|
|
},
|
|
|
|
// Find the secureBrowserUI object (if present)
|
|
_getSecurityUI : function() {
|
|
if ("gBrowser" in window.opener)
|
|
return window.opener.gBrowser.securityUI;
|
|
return null;
|
|
},
|
|
|
|
// Interface for mapping a certificate issuer organization to
|
|
// the value to be displayed.
|
|
// Bug 82017 - this implementation should be moved to pipnss C++ code
|
|
mapIssuerOrganization: function(name) {
|
|
if (!name) return null;
|
|
|
|
if (name == "RSA Data Security, Inc.") return "Verisign, Inc.";
|
|
|
|
// No mapping required
|
|
return name;
|
|
},
|
|
|
|
_cert : null
|
|
};
|
|
|
|
function securityOnLoad() {
|
|
var bundle = srGetStrBundle("chrome://pippki/locale/pippki.properties");
|
|
|
|
var info = security._getSecurityInfo();
|
|
if (!info) {
|
|
document.getElementById("securityTab").setAttribute("hidden", true);
|
|
return;
|
|
}
|
|
|
|
var idHdr;
|
|
var message1;
|
|
var message2;
|
|
|
|
/* Set the identification messages */
|
|
if (info.cert)
|
|
{
|
|
idHdr = bundle.GetStringFromName("pageInfo_WebSiteVerified");
|
|
setText("security-identity", idHdr);
|
|
|
|
message1 = bundle.formatStringFromName("pageInfo_Identity_Verified",
|
|
[ info.hostName, info.cAName ],
|
|
2);
|
|
setText("security-identity-text", message1);
|
|
|
|
var viewText = bundle.GetStringFromName("pageInfo_ViewCertificate");
|
|
setText("security-view-text", viewText);
|
|
security._cert = info.cert;
|
|
} else {
|
|
idHdr = bundle.GetStringFromName("pageInfo_SiteNotVerified");
|
|
setText("security-identity", idHdr);
|
|
|
|
document.getElementById("security-view-cert").setAttribute("disabled", "true");
|
|
document.getElementById("security-view-cert").setAttribute("hidden", "true");
|
|
}
|
|
|
|
var hdr;
|
|
var msg1;
|
|
var msg2;
|
|
|
|
/* Set the encryption messages */
|
|
if (info.isBroken) {
|
|
hdr = bundle.GetStringFromName("pageInfo_MixedContent");
|
|
setText("security-privacy", hdr);
|
|
|
|
msg1 = bundle.GetStringFromName("pageInfo_Privacy_Mixed1");
|
|
setText("security-privacy-msg1", msg1);
|
|
|
|
msg2 = bundle.GetStringFromName("pageInfo_Privacy_None2");
|
|
setText("security-privacy-msg2", msg2);
|
|
} else if (info.encryptionStrength >= 90) {
|
|
hdr = bundle.formatStringFromName("pageInfo_StrongEncryption",
|
|
[ info.encryptionAlgorithm, info.encryptionStrength+"" ], 2);
|
|
setText("security-privacy", hdr);
|
|
|
|
msg1 = bundle.GetStringFromName("pageInfo_Privacy_Strong1");
|
|
setText("security-privacy-msg1", msg1);
|
|
|
|
msg2 = bundle.GetStringFromName("pageInfo_Privacy_Strong2");
|
|
setText("security-privacy-msg2", msg2);
|
|
|
|
security._cert = info.cert;
|
|
} else if (info.encryptionStrength > 0) {
|
|
hdr = bundle.formatStringFromName("pageInfo_WeakEncryption",
|
|
[ info.encryptionAlgorithm, info.encryptionStrength+"" ], 2);
|
|
setText("security-privacy", hdr);
|
|
|
|
msg1 = bundle.formatStringFromName("pageInfo_Privacy_Weak1",
|
|
[ info.hostName ], 1);
|
|
setText("security-privacy-msg1", msg1);
|
|
|
|
msg2 = bundle.GetStringFromName("pageInfo_Privacy_Weak2");
|
|
setText("security-privacy-msg2", msg2);
|
|
} else {
|
|
hdr = bundle.GetStringFromName("pageInfo_NoEncryption");
|
|
setText("security-privacy", hdr);
|
|
|
|
if(info.hostName != null)
|
|
msg1 = bundle.formatStringFromName("pageInfo_Privacy_None1", [ info.hostName ], 1);
|
|
else
|
|
msg1 = bundle.GetStringFromName("pageInfo_Privacy_None3");
|
|
|
|
setText("security-privacy-msg1", msg1);
|
|
|
|
msg2 = bundle.GetStringFromName("pageInfo_Privacy_None2");
|
|
setText("security-privacy-msg2", msg2);
|
|
}
|
|
}
|
|
|
|
/* Register for pageInfo onload calls */
|
|
onLoadRegistry.push(securityOnLoad);
|
|
]]>
|
|
</script>
|
|
<tabs id="tabs">
|
|
<tab id="securityTab" label="&pageInfo.securityTab;"
|
|
accesskey="&pageInfo.securityTab.accesskey;"/>
|
|
</tabs>
|
|
<tabpanels id="tabpanels">
|
|
<vbox id="securityPanel" flex="1">
|
|
<description id="security-identity" class="header"/>
|
|
<description id="security-identity-text" flex="1"/>
|
|
<hbox align="center">
|
|
<button id="security-view-cert" label="&pageInfo.view.label;"
|
|
accesskey="&pageInfo.view.accesskey;"
|
|
oncommand="security.viewCert();"/>
|
|
<description id="security-view-text" flex="1"/>
|
|
</hbox>
|
|
<separator class="groove"/>
|
|
<description id="security-privacy" class="header"/>
|
|
<vbox flex="1">
|
|
<description id="security-privacy-msg1"/>
|
|
<description id="security-privacy-msg2"/>
|
|
</vbox>
|
|
</vbox>
|
|
</tabpanels>
|
|
</overlay>
|