summaryrefslogtreecommitdiff
path: root/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-22 12:53:39 +0100
committerAndrew Dolgov <[email protected]>2005-08-22 12:53:39 +0100
commit076682aa666847edb6456aae18824bfbd871f68e (patch)
tree1987a90c78298e2dfa7b06bb260d4867d5327a80 /tt-rss.js
parent175847dee889442606adae97f844302cb027cebd (diff)
disable simultaneous xmlhttp calls
Diffstat (limited to 'tt-rss.js')
-rw-r--r--tt-rss.js38
1 files changed, 33 insertions, 5 deletions
diff --git a/tt-rss.js b/tt-rss.js
index f5721639d..7417fbb85 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -90,7 +90,7 @@ function view_callback() {
function updateFeedList(called_from_timer, fetch) {
-
+
if (called_from_timer != true) {
//document.getElementById("feeds").innerHTML = "Loading feeds, please wait...";
notify("Updating feeds...");
@@ -100,14 +100,22 @@ function updateFeedList(called_from_timer, fetch) {
if (fetch) query_str = query_str + "&fetch=yes";
- xmlhttp.open("GET", query_str, true);
- xmlhttp.onreadystatechange=feedlist_callback;
- xmlhttp.send(null);
-
+ if (xmlhttp.readyState == 4 || xmlhttp.readyState == 0) {
+ xmlhttp.open("GET", query_str, true);
+ xmlhttp.onreadystatechange=feedlist_callback;
+ xmlhttp.send(null);
+ } else {
+ notify("Please wait until operation finishes.");
+ }
}
function catchupPage(feed) {
+ if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
+ notify("Please wait until operation finishes.");
+ return
+ }
+
var content = document.getElementById("headlinesList");
var rows = new Array();
@@ -143,6 +151,11 @@ function catchupPage(feed) {
}
function catchupAllFeeds() {
+
+ if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
+ notify("Please wait until operation finishes.");
+ return
+ }
var query_str = "backend.php?op=feeds&subop=catchupAll";
notify("Marking all feeds as read...");
@@ -158,6 +171,11 @@ function viewfeed(feed, skip, subop) {
// document.getElementById('headlines').innerHTML='Loading headlines, please wait...';
// document.getElementById('content').innerHTML='&nbsp;';
+ if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
+ notify("Please wait until operation finishes.");
+ return
+ }
+
xmlhttp.open("GET", "backend.php?op=viewfeed&feed=" + param_escape(feed) +
"&skip=" + param_escape(skip) + "&subop=" + param_escape(subop) , true);
xmlhttp.onreadystatechange=viewfeed_callback;
@@ -169,6 +187,11 @@ function viewfeed(feed, skip, subop) {
function view(id,feed_id) {
+ if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
+ notify("Please wait until operation finishes.");
+ return
+ }
+
var crow = document.getElementById("RROW-" + id);
if (crow.className.match("Unread")) {
@@ -210,6 +233,11 @@ function timeout() {
function search(feed, sender) {
+ if (xmlhttp.readyState != 4 && xmlhttp.readyState != 0) {
+ notify("Please wait until operation finishes.");
+ return
+ }
+
notify("Search: " + feed + ", " + sender.value)
document.getElementById('headlines').innerHTML='Loading headlines, please wait...';