2007-08-24 07:31:57 +02:00
|
|
|
var _infscroll_disable = 0;
|
2007-08-28 07:05:45 +02:00
|
|
|
var _infscroll_request_sent = 0;
|
2010-11-21 11:35:16 +01:00
|
|
|
var _search_query = false;
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2010-11-10 12:48:35 +01:00
|
|
|
var counter_timeout_id = false;
|
|
|
|
|
2008-05-21 06:09:04 +02:00
|
|
|
var counters_last_request = 0;
|
2008-05-19 18:55:57 +02:00
|
|
|
|
2006-03-04 08:09:13 +01:00
|
|
|
function viewCategory(cat) {
|
2006-08-01 14:53:41 +02:00
|
|
|
viewfeed(cat, '', true);
|
2007-04-28 13:07:01 +02:00
|
|
|
return false;
|
2006-03-04 08:09:13 +01:00
|
|
|
}
|
|
|
|
|
2011-08-04 13:20:23 +02:00
|
|
|
function loadMoreHeadlines() {
|
2007-08-09 09:36:04 +02:00
|
|
|
try {
|
2011-10-13 08:45:10 +02:00
|
|
|
console.log("loadMoreHeadlines");
|
|
|
|
|
2011-08-04 13:20:23 +02:00
|
|
|
var offset = 0;
|
|
|
|
|
|
|
|
var view_mode = document.forms["main_toolbar_form"].view_mode.value;
|
|
|
|
var num_unread = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length;
|
|
|
|
var num_all = $$("#headlines-frame > div[id*=RROW]").length;
|
|
|
|
|
|
|
|
// TODO implement marked & published
|
|
|
|
|
|
|
|
if (view_mode == "marked") {
|
|
|
|
console.warn("loadMoreHeadlines: marked is not implemented, falling back.");
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "published") {
|
|
|
|
console.warn("loadMoreHeadlines: published is not implemented, falling back.");
|
|
|
|
offset = num_all;
|
|
|
|
} else if (view_mode == "unread") {
|
|
|
|
offset = num_unread;
|
|
|
|
} else if (view_mode == "adaptive") {
|
|
|
|
if (num_unread > 0)
|
|
|
|
offset = num_unread;
|
|
|
|
else
|
|
|
|
offset = num_all;
|
|
|
|
} else {
|
|
|
|
offset = num_all;
|
|
|
|
}
|
2008-05-17 07:21:57 +02:00
|
|
|
|
2011-11-07 12:46:28 +01:00
|
|
|
viewfeed(getActiveFeedId(), '', activeFeedIsCat(), offset, false, true);
|
2007-08-09 09:36:04 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-18 08:04:14 +02:00
|
|
|
exception_error("viewNextFeedPage", e);
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-03 16:43:44 +01:00
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
function viewfeed(feed, method, is_cat, offset, background, infscroll_req) {
|
2005-11-26 11:06:56 +01:00
|
|
|
try {
|
2011-08-31 12:03:52 +02:00
|
|
|
if (is_cat == undefined)
|
|
|
|
is_cat = false;
|
|
|
|
else
|
|
|
|
is_cat = !!is_cat;
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
if (method == undefined) method = '';
|
2011-08-04 13:20:23 +02:00
|
|
|
if (offset == undefined) offset = 0;
|
2011-08-31 13:25:42 +02:00
|
|
|
if (background == undefined) background = false;
|
2011-12-10 18:43:03 +01:00
|
|
|
if (infscroll_req == undefined) infscroll_req = false;
|
2007-01-26 06:36:19 +01:00
|
|
|
|
2008-05-20 18:08:31 +02:00
|
|
|
last_requested_article = 0;
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
var cached_headlines = false;
|
|
|
|
|
2011-11-26 20:19:04 +01:00
|
|
|
if (feed == getActiveFeedId()) {
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_delete("feed:" + feed + ":" + is_cat);
|
2011-11-26 20:19:04 +01:00
|
|
|
} else {
|
2011-08-31 12:03:52 +02:00
|
|
|
cached_headlines = cache_get("feed:" + feed + ":" + is_cat);
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2011-11-26 20:19:04 +01:00
|
|
|
// switching to a different feed, we might as well catchup stuff visible
|
|
|
|
// in headlines buffer (if any)
|
2011-12-11 21:05:02 +01:00
|
|
|
if (!background && isCdmMode() && getInitParam("cdm_auto_catchup") == 1 && parseInt(getActiveFeedId()) > 0) {
|
2011-11-26 20:19:04 +01:00
|
|
|
|
|
|
|
$$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
|
|
|
|
function(child) {
|
|
|
|
var hf = $("headlines-frame");
|
|
|
|
|
|
|
|
if (hf.scrollTop + hf.offsetHeight >=
|
|
|
|
child.offsetTop + child.offsetHeight) {
|
|
|
|
|
|
|
|
var id = child.id.replace("RROW-", "");
|
|
|
|
|
|
|
|
if (catchup_id_batch.indexOf(id) == -1)
|
|
|
|
catchup_id_batch.push(id);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (catchup_id_batch.length > 0) {
|
|
|
|
window.clearTimeout(catchup_timeout_id);
|
|
|
|
|
|
|
|
if (!_infscroll_request_sent) {
|
|
|
|
catchup_timeout_id = window.setTimeout('catchupBatchedArticles()',
|
|
|
|
2000);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-12-10 18:42:15 +01:00
|
|
|
if (offset == 0 && !background)
|
2011-09-21 07:41:06 +02:00
|
|
|
dijit.byId("content-tabs").selectChild(
|
|
|
|
dijit.byId("content-tabs").getChildren()[0]);
|
2010-11-16 14:57:59 +01:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (!background) {
|
|
|
|
if (getActiveFeedId() != feed || offset == 0) {
|
|
|
|
active_post_id = 0;
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
2007-01-19 10:38:16 +01:00
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
if (!offset && !method && cached_headlines && !background) {
|
2011-08-31 13:25:42 +02:00
|
|
|
try {
|
|
|
|
render_local_headlines(feed, is_cat, JSON.parse(cached_headlines));
|
|
|
|
return;
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("render_local_headlines failed: " + e);
|
|
|
|
}
|
2011-08-31 12:03:52 +02:00
|
|
|
}
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
if (offset != 0 && !method) {
|
2011-08-31 13:25:42 +02:00
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
2007-08-28 07:05:45 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
|
|
|
|
//console.log("infscroll request in progress, aborting");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_infscroll_request_sent = timestamp;
|
2007-08-28 07:05:45 +02:00
|
|
|
}
|
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
hideAuxDlg();
|
2007-08-28 07:05:45 +02:00
|
|
|
}
|
|
|
|
|
2007-06-19 15:03:47 +02:00
|
|
|
Form.enable("main_toolbar_form");
|
|
|
|
|
|
|
|
var toolbar_query = Form.serialize("main_toolbar_form");
|
2006-05-21 06:28:51 +02:00
|
|
|
|
2011-12-12 21:20:53 +01:00
|
|
|
var query = "?op=feeds&method=view&feed=" + feed + "&" +
|
|
|
|
toolbar_query + "&m=" + param_escape(method);
|
2011-08-31 13:25:42 +02:00
|
|
|
|
|
|
|
if (!background) {
|
|
|
|
if (_search_query) {
|
2007-11-21 11:34:06 +01:00
|
|
|
force_nocache = true;
|
2011-08-31 13:25:42 +02:00
|
|
|
query = query + "&" + _search_query;
|
|
|
|
_search_query = false;
|
2007-11-21 11:34:06 +01:00
|
|
|
}
|
2006-05-21 14:09:55 +02:00
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
if (method == "MarkAllRead") {
|
2006-05-21 06:28:51 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
|
2006-05-21 06:28:51 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (show_next_feed) {
|
|
|
|
var nuf = getNextUnreadFeed(feed, is_cat);
|
2006-05-17 15:20:00 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (nuf) {
|
|
|
|
var cached_nuf = cache_get("feed:" + nuf + ":false");
|
2006-05-23 07:34:50 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (cached_nuf) {
|
2010-11-20 09:25:08 +01:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
render_local_headlines(nuf, false, JSON.parse(cached_nuf));
|
2010-11-20 09:25:08 +01:00
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
2011-08-31 13:25:42 +02:00
|
|
|
feed + "&is_cat=" + is_cat;
|
|
|
|
|
|
|
|
console.log(catchup_query);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: catchup_query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
} });
|
|
|
|
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
query += "&nuf=" + param_escape(nuf);
|
|
|
|
}
|
|
|
|
}
|
2010-11-20 09:25:08 +01:00
|
|
|
}
|
2006-05-17 15:20:00 +02:00
|
|
|
}
|
2006-03-04 08:09:13 +01:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (offset != 0) {
|
|
|
|
query = query + "&skip=" + offset;
|
2008-05-17 11:23:04 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
// to prevent duplicate feed titles when showing grouped vfeeds
|
|
|
|
if (vgroup_last_feed) {
|
|
|
|
query = query + "&vgrlf=" + param_escape(vgroup_last_feed);
|
|
|
|
}
|
2008-05-17 11:23:04 +02:00
|
|
|
}
|
2011-08-31 13:25:42 +02:00
|
|
|
|
|
|
|
Form.enable("main_toolbar_form");
|
|
|
|
|
|
|
|
if (!offset)
|
|
|
|
if (!is_cat) {
|
|
|
|
if (!setFeedExpandoIcon(feed, is_cat, 'images/indicator_white.gif'))
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
} else {
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
}
|
2007-01-19 10:38:16 +01:00
|
|
|
}
|
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
query += "&cat=" + is_cat;
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2011-08-04 13:20:23 +02:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
setFeedExpandoIcon(feed, is_cat, 'images/blank_icon.gif');
|
2011-12-10 18:43:03 +01:00
|
|
|
headlines_callback2(transport, offset, background, infscroll_req);
|
2011-08-04 13:20:23 +02:00
|
|
|
} });
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("viewfeed", e);
|
2011-03-18 10:55:45 +01:00
|
|
|
}
|
2005-09-07 05:53:29 +02:00
|
|
|
}
|
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
function feedlist_init() {
|
2005-12-20 12:14:24 +01:00
|
|
|
try {
|
2010-11-15 19:49:00 +01:00
|
|
|
console.log("in feedlist init");
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2008-05-20 13:46:40 +02:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2005-12-20 12:14:24 +01:00
|
|
|
document.onkeydown = hotkey_handler;
|
2009-10-06 13:04:46 +02:00
|
|
|
setTimeout("hotkey_prefix_timeout()", 5*1000);
|
|
|
|
|
2010-11-17 10:51:30 +01:00
|
|
|
if (!getActiveFeedId()) {
|
2011-03-18 10:55:45 +01:00
|
|
|
setTimeout("viewfeed(-3)", 100);
|
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
console.log("T:" +
|
2010-11-17 10:51:30 +01:00
|
|
|
getInitParam("cdm_auto_catchup") + " " + getFeedUnread(-3));
|
2006-11-22 11:11:41 +01:00
|
|
|
|
2010-11-16 21:00:45 +01:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
2008-08-29 09:34:35 +02:00
|
|
|
|
2010-11-19 23:31:20 +01:00
|
|
|
setTimeout("timeout()", 5000);
|
2011-08-31 17:22:47 +02:00
|
|
|
setTimeout("precache_headlines_idle()", 3000);
|
2010-11-19 23:31:20 +01:00
|
|
|
|
2005-12-20 12:14:24 +01:00
|
|
|
} catch (e) {
|
2005-12-20 16:49:52 +01:00
|
|
|
exception_error("feedlist/init", e);
|
2005-12-20 12:14:24 +01:00
|
|
|
}
|
2005-11-15 10:13:49 +01:00
|
|
|
}
|
2007-11-21 08:08:25 +01:00
|
|
|
|
2008-05-20 17:59:42 +02:00
|
|
|
function request_counters_real() {
|
2008-05-20 14:52:38 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("requesting counters...");
|
2008-05-21 06:19:03 +02:00
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=getAllCounters&seq=" + next_seq();
|
2008-05-20 14:52:38 +02:00
|
|
|
|
2010-11-16 10:23:06 +01:00
|
|
|
query = query + "&omode=flc";
|
2008-05-20 14:52:38 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2011-03-18 10:55:45 +01:00
|
|
|
onComplete: function(transport) {
|
2008-05-20 14:52:38 +02:00
|
|
|
try {
|
2010-11-25 11:20:37 +01:00
|
|
|
handle_rpc_json(transport);
|
2008-05-20 14:52:38 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("viewfeed/getcounters", e);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
2008-05-20 17:59:42 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("request_counters_real", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function request_counters() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2008-06-24 09:43:20 +02:00
|
|
|
if (getInitParam("bw_limit") == "1") return;
|
|
|
|
|
2008-05-20 17:59:42 +02:00
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
if (timestamp - counters_last_request > 5) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("scheduling request of counters...");
|
2010-11-10 12:48:35 +01:00
|
|
|
|
|
|
|
window.clearTimeout(counter_timeout_id);
|
|
|
|
counter_timeout_id = window.setTimeout("request_counters_real()", 1000);
|
|
|
|
|
2008-05-20 17:59:42 +02:00
|
|
|
counters_last_request = timestamp;
|
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("request_counters: rate limit reached: " + (timestamp - counters_last_request));
|
2009-01-16 16:33:26 +01:00
|
|
|
}
|
2008-05-20 17:59:42 +02:00
|
|
|
|
2008-05-20 14:52:38 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("request_counters", e);
|
|
|
|
}
|
|
|
|
}
|
2009-02-03 20:33:52 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
function displayNewContentPrompt(id) {
|
|
|
|
try {
|
|
|
|
|
2010-11-18 20:26:04 +01:00
|
|
|
var msg = "<a href='#' onclick='viewCurrentFeed()'>" +
|
2010-11-12 11:52:53 +01:00
|
|
|
__("New articles available in this feed (click to show)") + "</a>";
|
|
|
|
|
|
|
|
msg = msg.replace("%s", getFeedName(id));
|
|
|
|
|
|
|
|
$('auxDlg').innerHTML = msg;
|
|
|
|
|
|
|
|
new Effect.Appear('auxDlg', {duration : 0.5});
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("displayNewContentPrompt", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-25 11:20:37 +01:00
|
|
|
function parse_counters(elems, scheduled_call) {
|
2010-11-12 11:52:53 +01:00
|
|
|
try {
|
|
|
|
for (var l = 0; l < elems.length; l++) {
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
var id = elems[l].id;
|
2010-11-12 11:52:53 +01:00
|
|
|
var kind = elems[l].kind;
|
2011-12-10 18:26:59 +01:00
|
|
|
var ctr = parseInt(elems[l].counter);
|
2010-11-12 11:52:53 +01:00
|
|
|
var error = elems[l].error;
|
|
|
|
var has_img = elems[l].has_img;
|
|
|
|
var updated = elems[l].updated;
|
2010-11-25 11:20:37 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (id == "global-unread") {
|
|
|
|
global_unread = ctr;
|
|
|
|
updateTitle();
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (id == "subscribed-feeds") {
|
|
|
|
feeds_found = ctr;
|
|
|
|
continue;
|
|
|
|
}
|
2010-11-15 14:23:42 +01:00
|
|
|
|
2010-11-19 20:28:16 +01:00
|
|
|
// TODO: enable new content notification for categories
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (!activeFeedIsCat() && id == getActiveFeedId()
|
2010-11-19 20:28:16 +01:00
|
|
|
&& ctr > getFeedUnread(id) && scheduled_call) {
|
2010-11-17 10:51:30 +01:00
|
|
|
displayNewContentPrompt(id);
|
|
|
|
}
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
if (getFeedUnread(id, (kind == "cat")) != ctr)
|
|
|
|
cache_delete("feed:" + id + ":" + (kind == "cat"));
|
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
setFeedUnread(id, (kind == "cat"), ctr);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
if (kind != "cat") {
|
2010-11-24 17:33:44 +01:00
|
|
|
setFeedValue(id, false, 'error', error);
|
2010-11-15 19:49:00 +01:00
|
|
|
setFeedValue(id, false, 'updated', updated);
|
2010-11-16 07:49:00 +01:00
|
|
|
|
|
|
|
if (id > 0) {
|
|
|
|
if (has_img) {
|
2011-03-18 10:55:45 +01:00
|
|
|
setFeedIcon(id, false,
|
2010-11-16 07:49:00 +01:00
|
|
|
getInitParam("icons_url") + "/" + id + ".ico");
|
|
|
|
} else {
|
|
|
|
setFeedIcon(id, false, 'images/blank_icon.gif');
|
|
|
|
}
|
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("parse_counters", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 10:51:30 +01:00
|
|
|
function getFeedUnread(feed, is_cat) {
|
2010-11-12 11:52:53 +01:00
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.getFeedUnread(feed, is_cat);
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
} catch (e) {
|
2010-11-15 19:49:00 +01:00
|
|
|
//
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
|
|
|
|
return -1;
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function hideOrShowFeeds(hide) {
|
2010-11-15 19:49:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-17 20:51:44 +01:00
|
|
|
if (tree)
|
|
|
|
return tree.hideRead(hide, getInitParam("hide_read_shows_special"));
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
function getFeedName(feed, is_cat) {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.getFeedValue(feed, is_cat, 'name');
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
function getFeedValue(feed, is_cat, key) {
|
2010-11-15 19:49:00 +01:00
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 19:49:00 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.getFeedValue(feed, is_cat, key);
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
} catch (e) {
|
|
|
|
//
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
return '';
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
function setFeedUnread(feed, is_cat, unread) {
|
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.setFeedUnread(feed, is_cat, unread);
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setFeedValue(feed, is_cat, key, value) {
|
|
|
|
try {
|
2010-11-18 14:00:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-15 14:23:42 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (tree && tree.model)
|
2010-11-18 14:00:00 +01:00
|
|
|
return tree.model.setFeedValue(feed, is_cat, key, value);
|
2009-02-04 07:51:31 +01:00
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
} catch (e) {
|
2010-11-18 14:00:00 +01:00
|
|
|
//
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectFeed(feed, is_cat) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-18 14:00:00 +01:00
|
|
|
if (tree) return tree.selectFeed(feed, is_cat);
|
2010-11-15 19:49:00 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectFeed", e);
|
2010-11-15 14:23:42 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-16 07:49:00 +01:00
|
|
|
|
|
|
|
function setFeedIcon(feed, is_cat, src) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-18 14:00:00 +01:00
|
|
|
if (tree) return tree.setFeedIcon(feed, is_cat, src);
|
2010-11-16 07:49:00 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedIcon", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-16 10:23:06 +01:00
|
|
|
|
|
|
|
function setFeedExpandoIcon(feed, is_cat, src) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-18 14:00:00 +01:00
|
|
|
if (tree) return tree.setFeedExpandoIcon(feed, is_cat, src);
|
2010-11-16 10:23:06 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedIcon", e);
|
|
|
|
}
|
2010-11-16 14:57:59 +01:00
|
|
|
return false;
|
2010-11-16 10:23:06 +01:00
|
|
|
}
|
2011-08-31 13:25:42 +02:00
|
|
|
|
|
|
|
function getNextUnreadFeed(feed, is_cat) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
var nuf = tree.model.getNextUnreadFeed(feed, is_cat);
|
|
|
|
|
|
|
|
if (nuf)
|
|
|
|
return tree.model.store.getValue(nuf, 'bare_id');
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getNextUnreadFeed", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-11 12:28:11 +01:00
|
|
|
function catchupFeed(feed, is_cat) {
|
|
|
|
try {
|
2011-11-11 12:35:29 +01:00
|
|
|
var str = __("Mark all articles in %s as read?");
|
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
|
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-11-11 12:28:11 +01:00
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var catchup_query = "?op=rpc&method=catchupFeed&feed_id=" +
|
2011-11-11 12:28:11 +01:00
|
|
|
feed + "&is_cat=" + is_cat;
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: catchup_query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
notify("");
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupFeed", e);
|
|
|
|
}
|
|
|
|
}
|