digest: support exception error box
This commit is contained in:
parent
ddb25076ee
commit
c5325e0925
|
@ -1,6 +1,6 @@
|
||||||
body {
|
body {
|
||||||
background : #f0f0f0;
|
background : #f0f0f0;
|
||||||
color : gray;
|
color : black;
|
||||||
font-family : sans-serif;
|
font-family : sans-serif;
|
||||||
font-size : 12px;
|
font-size : 12px;
|
||||||
}
|
}
|
||||||
|
@ -28,6 +28,7 @@ a:hover {
|
||||||
font-family : "Lucida Grande", "Segoe UI", Tahoma, Arial, sans-serif;
|
font-family : "Lucida Grande", "Segoe UI", Tahoma, Arial, sans-serif;
|
||||||
margin-left : 1em;
|
margin-left : 1em;
|
||||||
margin-right : 1em;
|
margin-right : 1em;
|
||||||
|
color : gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
#header div.links {
|
#header div.links {
|
||||||
|
@ -50,6 +51,7 @@ a:hover {
|
||||||
#footer {
|
#footer {
|
||||||
font-size : 12px;
|
font-size : 12px;
|
||||||
text-align : center;
|
text-align : center;
|
||||||
|
color : gray;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*#content h1 {
|
/*#content h1 {
|
||||||
|
|
|
@ -579,7 +579,6 @@ function parse_headlines(transport, replace, no_effects) {
|
||||||
|
|
||||||
function init() {
|
function init() {
|
||||||
try {
|
try {
|
||||||
|
|
||||||
new Ajax.Request("backend.php", {
|
new Ajax.Request("backend.php", {
|
||||||
parameters: "backend.php?op=rpc&subop=digest-init",
|
parameters: "backend.php?op=rpc&subop=digest-init",
|
||||||
onComplete: function(transport) {
|
onComplete: function(transport) {
|
||||||
|
|
12
digest.php
12
digest.php
|
@ -26,6 +26,7 @@
|
||||||
<head>
|
<head>
|
||||||
<title>Tiny Tiny RSS</title>
|
<title>Tiny Tiny RSS</title>
|
||||||
<link rel="stylesheet" type="text/css" href="digest.css?<?php echo $dt_add ?>"/>
|
<link rel="stylesheet" type="text/css" href="digest.css?<?php echo $dt_add ?>"/>
|
||||||
|
<link rel="stylesheet" type="text/css" href="infobox.css?<?php echo $dt_add ?>"/>
|
||||||
|
|
||||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
|
||||||
|
|
||||||
|
@ -64,6 +65,17 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div id="dialog_overlay" style="display : none"> </div>
|
||||||
|
|
||||||
|
<div id="errorBoxShadow" style="display : none">
|
||||||
|
<div id="errorBox">
|
||||||
|
<div id="xebTitle"><?php echo __('Fatal Exception') ?></div><div id="xebContent"> </div>
|
||||||
|
<div id="xebBtn" align='center'>
|
||||||
|
<button onclick="closeErrorBox()"><?php echo __('Close this window') ?></button>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
<div id="header">
|
<div id="header">
|
||||||
|
|
||||||
<div class="links">
|
<div class="links">
|
||||||
|
|
Loading…
Reference in New Issue