$mode = db_escape_string($_GET["mode"]);
$omode = db_escape_string($_GET["omode"]);
+ $csync = $_GET["csync"];
+
print "<reply>";
// in prefetch mode we only output requested cids, main article
}
}
- if ($mode != "prefetch_old") {
+ if ($mode != "prefetch_old" && !$csync) {
print "<counters>";
getAllCounters($link, $omode);
print "</counters>";
$next_unread_feed = db_escape_string($_GET["nuf"]);
$offset = db_escape_string($_GET["skip"]);
$vgroup_last_feed = db_escape_string($_GET["vgrlf"]);
+ $csync = $_GET["csync"];
set_pref($link, "_DEFAULT_VIEW_MODE", $view_mode);
set_pref($link, "_DEFAULT_VIEW_LIMIT", $limit);
if ($_GET["debug"]) $timing_info = print_checkpoint("20", $timing_info);
- if (time() - $_SESSION["get_all_counters_stamp"] > 300) {
+ $viewfeed_ctr_interval = 300;
+
+ if ($csync) {
+ $viewfeed_ctr_interval = 60;
+ }
+
+ if (time() - $_SESSION["get_all_counters_stamp"] > $viewfeed_ctr_interval) {
print "<counters>";
getAllCounters($link, $omode, $feed);
print "</counters>";
query = query + "&omode=flc";
}
+ if (!async_counters_work) {
+ query = query + "&csync=true";
+ }
+
debug(query);
var container = document.getElementById("headlinesInnerContainer");
new Ajax.Request(query, {
onComplete: function(transport) {
try {
- all_counters_callback2(transport);
+ all_counters_callback2(transport, true);
} catch (e) {
exception_error("viewfeed/getcounters", e);
}
var xmlhttp_rpc = Ajax.getTransport();
var notify_silent = false;
var last_progress_point = 0;
+var async_counters_work = false;
/* add method to remove element from array */
}
-function all_counters_callback2(transport) {
+function all_counters_callback2(transport, async_call) {
try {
+ if (async_call) async_counters_work = true;
+
debug("<b>all_counters_callback2 IN: " + transport + "</b>");
parse_counters_reply(transport);
debug("<b>all_counters_callback2 OUT: " + transport + "</b>");
var crow = document.getElementById("RROW-" + id);
var article_is_unread = crow.className.match("Unread");
+ if (!async_counters_work) {
+ query = query + "&csync=true";
+ }
+
if (!cached_article) {
notify_progress("Loading, please wait...");