mirror of https://github.com/roytam1/kmeleon.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
295 lines
13 KiB
295 lines
13 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<!DOCTYPE html [ |
|
<!ENTITY % htmlDTD |
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" |
|
"DTD/xhtml1-strict.dtd"> |
|
%htmlDTD; |
|
<!ENTITY % netErrorDTD |
|
SYSTEM "chrome://global/locale/netError.dtd"> |
|
%netErrorDTD; |
|
<!ENTITY % globalDTD |
|
SYSTEM "chrome://global/locale/global.dtd"> |
|
%globalDTD; |
|
]> |
|
<html xmlns="http://www.w3.org/1999/xhtml" class="km_PageBackground"> |
|
<head> |
|
<title>&loadError.label;</title> |
|
<link rel="stylesheet" href="chrome://global/skin/netError.css" type="text/css" media="all" /> |
|
<link rel="icon" type="image/png" href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABGdBTUEAANbY1E9YMgAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAICSURBVHjaYvz//z8DJQAggJhwiDPvnmlzc2aR0O+JGezt+AwACCCsBhxfYhn59N41FWtXIxZOLu70niRGXVwGAAQQNgNYHj96O8HaWYdJW5ubwd4/mI2Ng7sblwEAAYRhwMm1URk/vn4SUNWVYGD8+YZBXZOZm5OLzRjoCmNsBgAEEKoBN82Y7l851GLrqMjM8Oc7A8O/3wwMP54wuAQFCXNycUzGZgBAAKEYcOaKZO2/f//5FbUVgBrfMoRVcgHpNwyKGjKMXDwCan0prFboBgAEELIBzDcvXyy2cVZhYPj9GWj7H4jo/38MDJ9OMDj7O/KzsjH3oxsAEEBwA/bNNipiZf7FI6cqwcDw8x2qqp8fGORUpVn4BEXlgGHhhCwFEEAwA9gfP3hdZ+Oizcjw+wvCdjgAuuLrFQbXIH9hTm7uqcgyAAEENuD4ctcebm5mbikFYRTbV7V/Q6j88Z5BSuY7q4CQgAjQFR4wYYAAAhtw89L5ZFsnRaDtn4CW/YXrAQcisit+PGVwDgrnZ2NnnwATBQggpsNLvGYLCAmxi8tLARWg+h3FBVBXSEj/ZZWQkRcCuiIQJAQQQCyvnj5KMDTkZ2JgYmRg4FchnHv+vmEwttLmeXT3VjKQtx4ggFgk5TXebV63UfT3ijOMxOZAVlZWdiB1EMQGCCBGSrMzQIABAFR3kRM3KggZAAAAAElFTkSuQmCC" /> |
|
<script type="application/x-javascript"><![CDATA[ |
|
// Error url MUST be formatted like this: |
|
// moz-neterror:page?e=error&u=url&d=desc |
|
// Note that this file uses document.documentURI to get |
|
// the URL (with the format from above). This is because |
|
// document.location.href gets the current URI off the docshell, |
|
// which is the URL displayed in the location bar, i.e. |
|
// the URI that the user attempted to load. |
|
function getErrorCode() |
|
{ |
|
var url = document.documentURI; |
|
var error = url.search(/e\=/); |
|
var duffUrl = url.search(/\&u\=/); |
|
return decodeURIComponent(url.slice(error + 2, duffUrl)); |
|
} |
|
|
|
function getCSSClass() |
|
{ |
|
var url = document.documentURI; |
|
var matches = url.match(/s\=([^&]+)\&/); |
|
// s is optional, if no match just return nothing |
|
if (!matches || matches.length < 2) |
|
return ""; |
|
|
|
// parenthetical match is the second entry |
|
return decodeURIComponent(matches[1]); |
|
} |
|
|
|
function getDescription() |
|
{ |
|
var url = document.documentURI; |
|
var desc = url.search(/d\=/); |
|
// desc == -1 if not found; if so, return an empty string |
|
// instead of what would turn out to be portions of the URI |
|
if (desc == -1) return ""; |
|
return decodeURIComponent(url.slice(desc + 2)); |
|
} |
|
function retryThis(buttonEl) |
|
{ |
|
// Session history has the URL of the page that failed |
|
// to load, not the one of the error page. So, just call |
|
// reload(), which will also repost POST data correctly. |
|
try { |
|
location.reload(); |
|
} catch (e) { |
|
// We probably tried to reload a URI that caused an exception to |
|
// occur; e.g. a non-existent file. |
|
} |
|
buttonEl.disabled = true; |
|
} |
|
function initPage() |
|
{ |
|
var err = getErrorCode(); |
|
// if it's an unknown error or there's no title or description |
|
// defined, get the generic message |
|
var errTitle = document.getElementById("et_" + err); |
|
var errDesc = document.getElementById("ed_" + err); |
|
if (!errTitle || !errDesc) |
|
{ |
|
errTitle = document.getElementById("et_generic"); |
|
errDesc = document.getElementById("ed_generic"); |
|
} |
|
var title = document.getElementById("errorTitleText"); |
|
if (title) |
|
{ |
|
title.parentNode.replaceChild(errTitle, title); |
|
// change id to the replaced child's id so styling works |
|
errTitle.id = "errorTitleText"; |
|
} |
|
var sd = document.getElementById("errorShortDescText"); |
|
if (sd) |
|
sd.textContent = getDescription(); |
|
var ld = document.getElementById("errorLongDesc"); |
|
if (ld) |
|
{ |
|
ld.parentNode.replaceChild(errDesc, ld); |
|
// change id to the replaced child's id so styling works |
|
errDesc.id = "errorLongDesc"; |
|
} |
|
// remove undisplayed errors to avoid bug 39098 |
|
var errContainer = document.getElementById("errorContainer"); |
|
errContainer.parentNode.removeChild(errContainer); |
|
|
|
var className = getCSSClass(); |
|
if (className && className != "expertBadCert") { |
|
// Associate a CSS class with the root of the page, if one was passed in, |
|
// to allow custom styling. |
|
// Not "expertBadCert" though, don't want to deal with the favicon |
|
document.documentElement.className = className; |
|
|
|
// Also, if they specified a CSS class, they must supply their own |
|
// favicon. In order to trigger the browser to repaint though, we |
|
// need to remove/add the link element. |
|
var favicon = document.getElementById("favicon"); |
|
var faviconParent = favicon.parentNode; |
|
faviconParent.removeChild(favicon); |
|
favicon.setAttribute("href", "chrome://global/skin/icons/" + className + "_favicon.png"); |
|
faviconParent.appendChild(favicon); |
|
} |
|
if (className == "expertBadCert") { |
|
showSecuritySection(); |
|
} |
|
|
|
if (err == "nssBadCert") { |
|
// Remove the "Try again" button for security exceptions, since it's |
|
// almost certainly useless. |
|
document.getElementById("errorTryAgain").style.display = "none"; |
|
document.getElementById("errorPageContainer").setAttribute("class", "certerror"); |
|
addDomainErrorLink(); |
|
} |
|
else { |
|
// Remove the override block for non-certificate errors. CSS-hiding |
|
// isn't good enough here, because of bug 39098 |
|
var secOverride = document.getElementById("securityOverrideDiv"); |
|
secOverride.parentNode.removeChild(secOverride); |
|
} |
|
} |
|
|
|
function showSecuritySection() { |
|
// Swap link out, content in |
|
document.getElementById('securityOverrideContent').style.display = ''; |
|
document.getElementById('securityOverrideLink').style.display = 'none'; |
|
} |
|
|
|
/* In the case of SSL error pages about domain mismatch, see if |
|
we can hyperlink the user to the correct site. We don't want |
|
to do this generically since it allows MitM attacks to redirect |
|
users to a site under attacker control, but in certain cases |
|
it is safe (and helpful!) to do so. Bug 402210 |
|
*/ |
|
function addDomainErrorLink() { |
|
// Rather than textContent, we need to treat description as HTML |
|
var sd = document.getElementById("errorShortDescText"); |
|
if (sd) { |
|
var desc = getDescription(); |
|
|
|
// sanitize description text - see bug 441169 |
|
|
|
// First, find the index of the <a> tag we care about, being careful not to |
|
// use an over-greedy regex |
|
var re = /<a id="cert_domain_link" title="([^"]+)">/; |
|
var result = re.exec(desc); |
|
if(!result) |
|
return; |
|
|
|
// Remove sd's existing children |
|
sd.textContent = ""; |
|
|
|
// Everything up to the link should be text content |
|
sd.appendChild(document.createTextNode(desc.slice(0, result.index))); |
|
|
|
// Now create the link itself |
|
var anchorEl = document.createElement("a"); |
|
anchorEl.setAttribute("id", "cert_domain_link"); |
|
anchorEl.setAttribute("title", result[1]); |
|
anchorEl.appendChild(document.createTextNode(result[1])); |
|
sd.appendChild(anchorEl); |
|
|
|
// Finally, append text for anything after the closing </a> |
|
sd.appendChild(document.createTextNode(desc.slice(desc.indexOf("</a>") + "</a>".length))); |
|
} |
|
|
|
var link = document.getElementById('cert_domain_link'); |
|
if (!link) |
|
return; |
|
|
|
var okHost = link.getAttribute("title"); |
|
var thisHost = document.location.hostname; |
|
var proto = document.location.protocol; |
|
|
|
// If okHost is a wildcard domain ("*.example.com") let's |
|
// use "www" instead. "*.example.com" isn't going to |
|
// get anyone anywhere useful. bug 432491 |
|
okHost = okHost.replace(/^\*\./, "www."); |
|
|
|
/* case #1: |
|
* example.com uses an invalid security certificate. |
|
* |
|
* The certificate is only valid for www.example.com |
|
* |
|
* Make sure to include the "." ahead of thisHost so that |
|
* a MitM attack on paypal.com doesn't hyperlink to "notpaypal.com" |
|
* |
|
* We'd normally just use a RegExp here except that we lack a |
|
* library function to escape them properly (bug 248062), and |
|
* domain names are famous for having '.' characters in them, |
|
* which would allow spurious and possibly hostile matches. |
|
*/ |
|
if (endsWith(okHost, "." + thisHost)) |
|
link.href = proto + okHost; |
|
|
|
/* case #2: |
|
* browser.garage.maemo.org uses an invalid security certificate. |
|
* |
|
* The certificate is only valid for garage.maemo.org |
|
*/ |
|
if (endsWith(thisHost, "." + okHost)) |
|
link.href = proto + okHost; |
|
} |
|
|
|
function endsWith(haystack, needle) { |
|
return haystack.slice(-needle.length) == needle; |
|
} |
|
|
|
]]></script> |
|
</head> |
|
<body dir="&locale.dir;" class="km_PageBackground km_Text"> |
|
<div id="errorContainer"> |
|
<div id="errorTitlesContainer"> |
|
<h1 id="et_generic">&generic.title;</h1> |
|
<h1 id="et_dnsNotFound">&dnsNotFound.title;</h1> |
|
<h1 id="et_fileNotFound">&fileNotFound.title;</h1> |
|
<h1 id="et_malformedURI">&malformedURI.title;</h1> |
|
<h1 id="et_protocolNotFound">&protocolNotFound.title;</h1> |
|
<h1 id="et_connectionFailure">&connectionFailure.title;</h1> |
|
<h1 id="et_netTimeout">&netTimeout.title;</h1> |
|
<h1 id="et_redirectLoop">&redirectLoop.title;</h1> |
|
<h1 id="et_unknownSocketType">&unknownSocketType.title;</h1> |
|
<h1 id="et_netReset">&netReset.title;</h1> |
|
<h1 id="et_netOffline">&netOffline.title;</h1> |
|
<h1 id="et_netInterrupt">&netInterrupt.title;</h1> |
|
<h1 id="et_deniedPortAccess">&deniedPortAccess.title;</h1> |
|
<h1 id="et_proxyResolveFailure">&proxyResolveFailure.title;</h1> |
|
<h1 id="et_proxyConnectFailure">&proxyConnectFailure.title;</h1> |
|
<h1 id="et_contentEncodingError">&contentEncodingError.title;</h1> |
|
<h1 id="et_unsafeContentType">&unsafeContentType.title;</h1> |
|
<h1 id="et_nssFailure2">&nssFailure2.title;</h1> |
|
<h1 id="et_nssBadCert">&nssBadCert.title;</h1> |
|
<h1 id="et_malwareBlocked">&malwareBlocked.title;</h1> |
|
</div> |
|
<div id="errorDescriptionsContainer"> |
|
<div id="ed_generic">&generic.longDesc;</div> |
|
<div id="ed_dnsNotFound">&dnsNotFound.longDesc;</div> |
|
<div id="ed_fileNotFound">&fileNotFound.longDesc;</div> |
|
<div id="ed_malformedURI">&malformedURI.longDesc;</div> |
|
<div id="ed_protocolNotFound">&protocolNotFound.longDesc;</div> |
|
<div id="ed_connectionFailure">&connectionFailure.longDesc;</div> |
|
<div id="ed_netTimeout">&netTimeout.longDesc;</div> |
|
<div id="ed_redirectLoop">&redirectLoop.longDesc;</div> |
|
<div id="ed_unknownSocketType">&unknownSocketType.longDesc;</div> |
|
<div id="ed_netReset">&netReset.longDesc;</div> |
|
<div id="ed_netOffline">&netOffline.longDesc;</div> |
|
<div id="ed_netInterrupt">&netInterrupt.longDesc;</div> |
|
<div id="ed_deniedPortAccess">&deniedPortAccess.longDesc;</div> |
|
<div id="ed_proxyResolveFailure">&proxyResolveFailure.longDesc;</div> |
|
<div id="ed_proxyConnectFailure">&proxyConnectFailure.longDesc;</div> |
|
<div id="ed_contentEncodingError">&contentEncodingError.longDesc;</div> |
|
<div id="ed_unsafeContentType">&unsafeContentType.longDesc;</div> |
|
<div id="ed_nssFailure2">&nssFailure2.longDesc;</div> |
|
<div id="ed_nssBadCert">&nssBadCert.longDesc2;</div> |
|
<div id="ed_malwareBlocked">&malwareBlocked.longDesc;</div> |
|
</div> |
|
</div> |
|
<div id="errorPageContainer" class="km_TextBackground km_TextBorder km_PageContainer"> |
|
<div id="errorTextContainer" class="km_Icon"> |
|
<div class="km_Border km_SpecialBorder km_IconWidth km_IconHeight"> |
|
<div id="errorTitle"> |
|
<h1 id="errorTitleText"/> |
|
</div> |
|
<div id="errorShortDesc"> |
|
<p id="errorShortDescText" class="km_Border"/> |
|
</div> |
|
<div id="errorLongDesc"/> |
|
<div id="securityOverrideDiv"> |
|
<a id="securityOverrideLink" href="javascript:showSecuritySection();" >&securityOverride.linkText;</a> |
|
<div id="securityOverrideContent" style="display: none;">&securityOverride.warningText;</div> |
|
</div> |
|
</div> |
|
</div> |
|
<div class="km_IconWidth km_Button"> |
|
<xul:button xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" |
|
id="errorTryAgain" label="&retry.label;" oncommand="retryThis();"/> |
|
</div> |
|
</div> |
|
<script type="application/x-javascript">initPage();</script> |
|
</body> |
|
</html> |