changed updated.png

This commit is contained in:
Andrew Dolgov 2005-08-22 13:44:50 +01:00
parent 076682aa66
commit a234aee573
3 changed files with 11 additions and 7 deletions

View File

@ -261,7 +261,7 @@
href=\"javascript:viewfeed($feed, $skip, '');\">Refresh Page</a>";
print "&nbsp;";
print "<a class=\"button\"
href=\"javascript:viewfeed($feed, 0, 'ForceUpdate');\">Update</a>";
href=\"javascript:viewfeed($feed, 0, 'ForceUpdate');\">Update Feed</a>";
print "&nbsp;&nbsp;Mark as read: ";

View File

@ -26,6 +26,10 @@ if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
xmlhttp = new XMLHttpRequest();
}
function printLockingError() {
notify("Please wait until operation finishes");
}
function notify_callback() {
var container = document.getElementById('notify');
if (xmlhttp.readyState == 4) {
@ -105,14 +109,14 @@ function updateFeedList(called_from_timer, fetch) {
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
} else {
notify("Please wait until operation finishes.");
printLockingError();
}
}
function catchupPage(feed) {
if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
notify("Please wait until operation finishes.");
printLockingError();
return
}
@ -153,7 +157,7 @@ function catchupPage(feed) {
function catchupAllFeeds() {
if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
notify("Please wait until operation finishes.");
printLockingError();
return
}
var query_str = "backend.php?op=feeds&subop=catchupAll";
@ -172,7 +176,7 @@ function viewfeed(feed, skip, subop) {
// document.getElementById('content').innerHTML='&nbsp;';
if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
notify("Please wait until operation finishes.");
printLockingError();
return
}
@ -188,7 +192,7 @@ function viewfeed(feed, skip, subop) {
function view(id,feed_id) {
if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
notify("Please wait until operation finishes.");
printLockingError();
return
}
@ -234,7 +238,7 @@ function timeout() {
function search(feed, sender) {
if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
notify("Please wait until operation finishes.");
printLockingError();
return
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 244 B

After

Width:  |  Height:  |  Size: 224 B