53 строки
2.0 KiB
HTML
53 строки
2.0 KiB
HTML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!-- 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/. -->
|
|
|
|
<!DOCTYPE html [
|
|
<!ENTITY % htmlDTD
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
|
"DTD/xhtml1-strict.dtd">
|
|
%htmlDTD;
|
|
<!ENTITY % netErrorDTD
|
|
SYSTEM "chrome://messenger/locale/newsError.dtd">
|
|
%netErrorDTD;
|
|
<!ENTITY % globalDTD
|
|
SYSTEM "chrome://global/locale/global.dtd">
|
|
%globalDTD;
|
|
]>
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Security-Policy" content="default-src chrome:"/>
|
|
<title>&newsError.title;</title>
|
|
<link rel="stylesheet" href="chrome://global/skin/netError.css" type="text/css" media="all" />
|
|
<!-- If the location of the favicon is changed here, the FAVICON_ERRORPAGE_URL symbol in
|
|
toolkit/components/places/src/nsFaviconService.h should be updated. -->
|
|
<link rel="icon" type="image/png" id="favicon" href="chrome://global/skin/icons/warning.svg"/>
|
|
</head>
|
|
|
|
<body dir="&locale.dir;">
|
|
<div id="errorPageContainer">
|
|
<div id="errorTitle">
|
|
<h1 id="errorTitleText">&articleNotFound.title;</h1>
|
|
</div>
|
|
<div id="errorLongContent">
|
|
<div id="errorShortDesc">
|
|
<p id="errorShortDescText"><b>&articleNotFound.desc;</b></p>
|
|
</div>
|
|
<div id="errorLongDesc">
|
|
<ul>
|
|
<li>&serverResponded.title; <span id="ngResp"/></li>
|
|
<li>&articleExpired.title;</li>
|
|
<li id="messageIdDesc">&trySearching.title; <<span id="msgId"/>> (<span id="msgKey"/>)</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<!-- This button really means "remove all expired articles", but we use
|
|
the "errorTryAgain" id to piggyback on toolkit's CSS. -->
|
|
<button id="errorTryAgain">&removeExpiredArticles.title;</button>
|
|
</div>
|
|
<script src="chrome://messenger/content/newsError.js"/>
|
|
</body>
|
|
</html>
|