summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2006-08-13 10:45:30 +0100
committerAndrew Dolgov <[email protected]>2006-08-13 10:45:30 +0100
commit7bf7e4d3ef9b2993f24caff2339fcf78a2027321 (patch)
tree7b036697c118bdac09ccd768b5021a2c84a7ddcd
parentaec3ce39de92ab044cbfb4eaa7f98a564a010510 (diff)
rework auto-refresh method if number of subscriptions changed
-rw-r--r--functions.js16
-rw-r--r--functions.php12
2 files changed, 19 insertions, 9 deletions
diff --git a/functions.js b/functions.js
index 4ab997d80..269093022 100644
--- a/functions.js
+++ b/functions.js
@@ -490,15 +490,16 @@ function parse_counters(reply, scheduled_call) {
var has_img = reply.childNodes[l].getAttribute("hi");
var updated = reply.childNodes[l].getAttribute("updated");
- if (t == "feed") {
- feeds_found++;
- }
-
if (id == "global-unread") {
title_obj.global_unread = ctr;
title_obj.updateTitle();
continue;
}
+
+ if (id == "subscribed-feeds") {
+ feeds_found = ctr;
+ continue;
+ }
if (t == "category") {
var catctr = f_document.getElementById("FCATCTR-" + id);
@@ -573,10 +574,9 @@ function parse_counters(reply, scheduled_call) {
debug("Feed counters, C: " + feeds_found + ", S:" + feeds_stored);
if (feeds_stored != feeds_found) {
- if (feeds_found != 0) {
- getMainContext().number_of_feeds = feeds_found;
- }
- if (feeds_stored != 0 && feeds_found != 0) {
+ getMainContext().number_of_feeds = feeds_found;
+
+ if (feeds_stored != 0) {
debug("Subscribed feed number changed, refreshing feedlist");
updateFeedList();
}
diff --git a/functions.php b/functions.php
index a46061bda..4ca5582d3 100644
--- a/functions.php
+++ b/functions.php
@@ -1562,7 +1562,17 @@
if ($global_unread == -1) {
$global_unread = getGlobalUnread($link);
}
- print "<counter type=\"global\" id='global-unread' counter='$global_unread'/>";
+ print "<counter type=\"global\" id='global-unread'
+ counter='$global_unread'/>";
+
+ $result = db_query($link, "SELECT COUNT(id) AS fn FROM
+ ttrss_feeds WHERE owner_uid = " . $_SESSION["uid"]);
+
+ $subscribed_feeds = db_fetch_result($result, 0, "fn");
+
+ print "<counter type=\"global\" id='subscribed-feeds'
+ counter='$subscribed_feeds'/>";
+
}
function getTagCounters($link, $smart_mode = SMART_RPC_COUNTERS) {