2007-08-24 06:59:12 +02:00
|
|
|
var _feed_cur_page = 0;
|
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;
|
2008-05-19 12:24:46 +02:00
|
|
|
var feed_under_pointer = undefined;
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2010-11-10 12:48:35 +01:00
|
|
|
var counter_timeout_id = false;
|
|
|
|
|
2008-05-20 10:29:13 +02:00
|
|
|
var resize_enabled = false;
|
2009-01-20 18:46:21 +01:00
|
|
|
var selection_disabled = false;
|
2008-05-21 06:09:04 +02:00
|
|
|
var counters_last_request = 0;
|
2008-05-19 18:55:57 +02:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var feeds_sort_by_unread = false;
|
|
|
|
var feedlist_sortable_enabled = false;
|
|
|
|
|
2008-09-06 15:23:20 +02:00
|
|
|
function toggle_sortable_feedlist(enabled) {
|
2010-11-15 14:23:42 +01:00
|
|
|
/* try {
|
2008-09-06 15:23:20 +02:00
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
Sortable.create('feedList', {onChange: feedlist_dragsorted, only: "feedCat"});
|
|
|
|
} else {
|
|
|
|
Sortable.destroy('feedList');
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggle_sortable_feedlist", e);
|
2010-11-15 14:23:42 +01:00
|
|
|
} */
|
2008-09-06 15:23:20 +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
|
|
|
}
|
|
|
|
|
2007-08-09 09:36:04 +02:00
|
|
|
function viewNextFeedPage() {
|
|
|
|
try {
|
2008-05-17 07:21:57 +02:00
|
|
|
//if (!getActiveFeedId()) return;
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("viewNextFeedPage: calling viewfeed(), p: " + parseInt(_feed_cur_page+1));
|
2008-05-17 07:21:57 +02:00
|
|
|
|
2010-11-12 15:41:32 +01:00
|
|
|
viewfeed(getActiveFeedId(), '', activeFeedIsCat(), parseInt(_feed_cur_page+1));
|
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
|
|
|
|
2010-11-12 15:41:32 +01:00
|
|
|
function viewfeed(feed, subop, is_cat, offset) {
|
2005-11-26 11:06:56 +01:00
|
|
|
try {
|
2010-11-11 11:59:33 +01:00
|
|
|
if (is_cat == undefined) is_cat = false;
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2007-08-09 09:36:04 +02:00
|
|
|
// if (!offset) page_offset = 0;
|
2007-01-26 06:36:19 +01:00
|
|
|
|
2008-05-20 18:08:31 +02:00
|
|
|
last_requested_article = 0;
|
2009-01-17 15:15:43 +01:00
|
|
|
//counters_last_request = 0;
|
2008-05-20 18:08:31 +02:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
if (feed == getActiveFeedId()) {
|
|
|
|
cache_invalidate("F:" + feed);
|
|
|
|
}
|
|
|
|
|
2008-02-20 13:38:38 +01:00
|
|
|
/* if (getInitParam("theme") == "" || getInitParam("theme") == "compact") {
|
2008-02-20 10:09:51 +01:00
|
|
|
if (getInitParam("hide_feedlist") == 1) {
|
|
|
|
Element.hide("feeds-holder");
|
|
|
|
}
|
2008-02-20 13:38:38 +01:00
|
|
|
} */
|
2008-02-19 17:00:02 +01:00
|
|
|
|
2007-11-21 11:34:06 +01:00
|
|
|
var force_nocache = false;
|
|
|
|
|
2007-08-09 09:41:14 +02:00
|
|
|
var page_offset = 0;
|
|
|
|
|
2007-08-09 09:36:04 +02:00
|
|
|
if (offset > 0) {
|
2007-01-26 06:36:19 +01:00
|
|
|
page_offset = offset;
|
2007-08-09 09:36:04 +02:00
|
|
|
} else {
|
|
|
|
page_offset = 0;
|
2007-08-24 06:59:12 +02:00
|
|
|
_feed_cur_page = 0;
|
2007-08-24 07:31:57 +02:00
|
|
|
_infscroll_disable = 0;
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (getActiveFeedId() != feed) {
|
2007-08-24 06:59:12 +02:00
|
|
|
_feed_cur_page = 0;
|
2007-08-23 08:01:25 +02:00
|
|
|
active_post_id = 0;
|
2007-08-24 07:31:57 +02:00
|
|
|
_infscroll_disable = 0;
|
2007-01-26 06:36:19 +01:00
|
|
|
}
|
2007-01-19 10:38:16 +01:00
|
|
|
|
2007-08-28 07:05:45 +02:00
|
|
|
if (page_offset != 0 && !subop) {
|
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
console.log(_infscroll_request_sent + " : " + timestamp);
|
2007-08-28 07:05:45 +02:00
|
|
|
|
|
|
|
if (_infscroll_request_sent && _infscroll_request_sent + 30 > timestamp) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("infscroll request in progress, aborting");
|
2007-08-28 07:05:45 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_infscroll_request_sent = timestamp;
|
|
|
|
}
|
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
enableHotkeys();
|
2009-10-13 17:05:36 +02:00
|
|
|
hideAuxDlg();
|
2007-05-17 13:58:38 +02:00
|
|
|
closeInfoBox();
|
|
|
|
|
2007-06-19 15:03:47 +02:00
|
|
|
Form.enable("main_toolbar_form");
|
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
var toolbar_form = document.forms["main_toolbar_form"];
|
2007-06-19 15:03:47 +02:00
|
|
|
var toolbar_query = Form.serialize("main_toolbar_form");
|
2006-05-21 06:28:51 +02:00
|
|
|
|
2007-08-29 16:10:41 +02:00
|
|
|
if (toolbar_form.query) {
|
2007-11-21 11:34:06 +01:00
|
|
|
if (toolbar_form.query.value != "") {
|
|
|
|
force_nocache = true;
|
|
|
|
}
|
2006-05-22 10:56:52 +02:00
|
|
|
toolbar_form.query.value = "";
|
2006-05-21 14:09:55 +02:00
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=viewfeed&feed=" + feed + "&" +
|
2006-05-21 06:28:51 +02:00
|
|
|
toolbar_query + "&subop=" + param_escape(subop);
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("search_form")) {
|
2006-09-29 05:04:48 +02:00
|
|
|
var search_query = Form.serialize("search_form");
|
2006-05-21 06:28:51 +02:00
|
|
|
query = query + "&" + search_query;
|
2009-10-06 13:43:13 +02:00
|
|
|
$("search_form").query.value = "";
|
2006-09-29 05:04:48 +02:00
|
|
|
closeInfoBox(true);
|
2007-11-21 11:34:06 +01:00
|
|
|
force_nocache = true;
|
2006-05-21 06:28:51 +02:00
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log("IS_CAT_STORED: " + activeFeedIsCat() + ", IS_CAT: " + is_cat);
|
2006-08-01 06:13:48 +02:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
if (subop == "MarkAllRead") {
|
2006-05-17 15:20:00 +02:00
|
|
|
|
2006-09-29 05:04:48 +02:00
|
|
|
var show_next_feed = getInitParam("on_catchup_show_next_feed") == "1";
|
2006-05-23 07:34:50 +02:00
|
|
|
|
2008-10-01 06:06:55 +02:00
|
|
|
if (show_next_feed) {
|
|
|
|
|
|
|
|
if (!activeFeedIsCat()) {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var feedlist = $('feedList');
|
2008-10-01 06:06:55 +02:00
|
|
|
|
2010-09-13 13:40:35 +02:00
|
|
|
var next_unread_feed = getRelativeFeedId2(feed, false,
|
|
|
|
"next", true);
|
|
|
|
|
|
|
|
/* gRFI2 also returns categories which we don't really
|
|
|
|
* need here, so we skip them */
|
|
|
|
|
|
|
|
while (next_unread_feed && next_unread_feed.match("CAT:"))
|
|
|
|
next_unread_feed = getRelativeFeedId2(
|
|
|
|
next_unread_feed.replace("CAT:", ""),
|
|
|
|
true, "next", true);
|
|
|
|
|
2008-10-01 06:06:55 +02:00
|
|
|
if (!next_unread_feed) {
|
2010-09-13 13:40:35 +02:00
|
|
|
next_unread_feed = getRelativeFeedId2(-3, true,
|
|
|
|
"next", true);
|
2008-10-01 06:06:55 +02:00
|
|
|
}
|
2010-09-13 13:40:35 +02:00
|
|
|
|
2008-10-01 06:06:55 +02:00
|
|
|
if (next_unread_feed) {
|
|
|
|
query = query + "&nuf=" + param_escape(next_unread_feed);
|
|
|
|
//setActiveFeedId(next_unread_feed);
|
|
|
|
feed = next_unread_feed;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
|
|
|
var next_unread_feed = getNextUnreadCat(feed);
|
|
|
|
|
|
|
|
/* we don't need to specify that our next feed is actually
|
|
|
|
a category, because we're in the is_cat mode by definition
|
|
|
|
already */
|
|
|
|
|
|
|
|
if (next_unread_feed && show_next_feed) {
|
|
|
|
query = query + "&nuf=" + param_escape(next_unread_feed);
|
|
|
|
feed = next_unread_feed;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2006-05-17 15:20:00 +02:00
|
|
|
}
|
2005-11-26 11:06:56 +01:00
|
|
|
}
|
2006-03-04 08:09:13 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (is_cat) {
|
2006-03-04 08:09:13 +01:00
|
|
|
query = query + "&cat=1";
|
|
|
|
}
|
2006-03-04 14:58:15 +01:00
|
|
|
|
2007-01-26 06:36:19 +01:00
|
|
|
if (page_offset != 0) {
|
|
|
|
query = query + "&skip=" + page_offset;
|
2008-05-17 11:23:04 +02:00
|
|
|
|
|
|
|
// to prevent duplicate feed titles when showing grouped vfeeds
|
|
|
|
if (vgroup_last_feed) {
|
|
|
|
query = query + "&vgrlf=" + param_escape(vgroup_last_feed);
|
|
|
|
}
|
2007-01-19 10:38:16 +01:00
|
|
|
}
|
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
Form.enable("main_toolbar_form");
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var container = $("headlinesInnerContainer");
|
2006-09-29 03:24:26 +02:00
|
|
|
|
2009-01-16 15:44:10 +01:00
|
|
|
var unread_ctr = -1;
|
|
|
|
|
|
|
|
if (!is_cat) unread_ctr = get_feed_unread(feed);
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
var cache_check = false;
|
|
|
|
|
2007-11-22 06:05:24 +01:00
|
|
|
if (unread_ctr != -1 && !page_offset && !force_nocache && !subop) {
|
2007-11-21 10:15:14 +01:00
|
|
|
|
|
|
|
var cache_prefix = "";
|
|
|
|
|
|
|
|
if (is_cat) {
|
|
|
|
cache_prefix = "C:";
|
|
|
|
} else {
|
|
|
|
cache_prefix = "F:";
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_check = cache_check_param(cache_prefix + feed, unread_ctr);
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("headline cache check: " + cache_check);
|
2007-11-21 09:23:34 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (cache_check) {
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
setActiveFeedId(feed, is_cat);
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
$("headlines-frame").innerHTML = cache_find_param(cache_prefix + feed,
|
|
|
|
unread_ctr);
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2008-05-20 14:52:38 +02:00
|
|
|
request_counters();
|
2009-02-02 13:14:34 +01:00
|
|
|
remove_splash();
|
2007-11-21 09:23:34 +01:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2010-11-13 12:07:06 +01:00
|
|
|
// if (!page_offset) {
|
2009-10-07 12:44:51 +02:00
|
|
|
var feedr;
|
|
|
|
|
|
|
|
if (is_cat) {
|
|
|
|
feedr = $('FCAP-' + feed);
|
|
|
|
} else {
|
|
|
|
feedr = $('FEEDR-' + feed);
|
|
|
|
}
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2009-10-07 19:48:47 +02:00
|
|
|
if (feedr && !$('FLL-' + feed)) {
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2009-10-07 21:16:21 +02:00
|
|
|
var img = $('FIMG-' + feed);
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2009-10-07 21:16:21 +02:00
|
|
|
if (!is_cat && img) {
|
|
|
|
|
2010-11-11 13:29:46 +01:00
|
|
|
var cat_list = feedr.parentNode;
|
|
|
|
|
|
|
|
if (!cat_list || Element.visible(cat_list)) {
|
|
|
|
if (!img.src.match("indicator_white")) {
|
|
|
|
img.alt = img.src;
|
|
|
|
img.src = getInitParam("sign_progress");
|
|
|
|
}
|
|
|
|
} else if (cat_list) {
|
|
|
|
feed_cat_id = cat_list.id.replace("FCATLIST-", "");
|
|
|
|
|
|
|
|
if (!$('FLL-' + feed_cat_id)) {
|
|
|
|
|
|
|
|
var ll = document.createElement('img');
|
2009-10-07 21:16:21 +02:00
|
|
|
|
2010-11-11 13:29:46 +01:00
|
|
|
ll.src = getInitParam("sign_progress_tiny");
|
|
|
|
ll.className = 'hlLoading';
|
|
|
|
ll.id = 'FLL-' + feed;
|
|
|
|
|
|
|
|
$("FCAP-" + feed_cat_id).appendChild(ll);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-10-07 21:16:21 +02:00
|
|
|
} else {
|
|
|
|
|
2009-10-12 12:32:18 +02:00
|
|
|
if (!$('FLL-' + feed)) {
|
|
|
|
var ll = document.createElement('img');
|
2009-10-07 21:16:21 +02:00
|
|
|
|
2010-01-14 21:23:25 +01:00
|
|
|
ll.src = getInitParam("sign_progress_tiny");
|
2009-10-12 12:32:18 +02:00
|
|
|
ll.className = 'hlLoading';
|
|
|
|
ll.id = 'FLL-' + feed;
|
2009-10-07 21:16:21 +02:00
|
|
|
|
2009-10-12 12:32:18 +02:00
|
|
|
feedr.appendChild(ll);
|
|
|
|
}
|
2009-10-07 21:16:21 +02:00
|
|
|
}
|
2010-11-11 13:29:46 +01:00
|
|
|
}
|
2010-11-13 12:07:06 +01:00
|
|
|
// }
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-11-21 09:23:34 +01:00
|
|
|
onComplete: function(transport) {
|
2009-01-17 11:14:45 +01:00
|
|
|
headlines_callback2(transport, page_offset);
|
2007-11-21 09:23:34 +01:00
|
|
|
} });
|
|
|
|
}
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2005-11-26 11:06:56 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("viewfeed", e);
|
|
|
|
}
|
2005-09-07 05:53:29 +02:00
|
|
|
}
|
|
|
|
|
2010-11-11 13:29:46 +01:00
|
|
|
|
2008-08-29 10:01:53 +02:00
|
|
|
function feedlist_dragsorted(ctr) {
|
|
|
|
try {
|
2010-11-14 13:55:51 +01:00
|
|
|
var cats = $$("#feedList > li[id*=FCAT-]");
|
|
|
|
var ordered_cats = [];
|
2008-08-29 10:01:53 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
cats.each(function(cat) {
|
|
|
|
ordered_cats.push(cat.id.replace("FCAT-", ""));
|
|
|
|
});
|
2008-08-29 10:01:53 +02:00
|
|
|
|
|
|
|
if (ordered_cats.length > 0) {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=feeds&subop=catsort&corder=" +
|
2008-08-29 10:01:53 +02:00
|
|
|
param_escape(ordered_cats.toString());
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log(query);
|
2008-08-29 10:01:53 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", { parameters: query });
|
2008-08-29 10:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-09-12 08:41:04 +02:00
|
|
|
exception_error("feedlist_dragsorted", e);
|
2008-08-29 10:01:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
function feedlist_init() {
|
2005-12-20 12:14:24 +01:00
|
|
|
try {
|
2008-05-19 10:03:53 +02:00
|
|
|
loading_set_progress(90);
|
2008-05-19 09:37:44 +02:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
console.log("in feedlist init");
|
2006-03-30 08:32:08 +02: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-15 19:49:00 +01:00
|
|
|
if (getActiveFeedId()) {
|
2010-09-05 11:41:19 +02:00
|
|
|
//console.log("some feed is open on feedlist refresh, reloading");
|
2008-08-06 10:20:55 +02:00
|
|
|
//setTimeout("viewCurrentFeed()", 100);
|
2007-08-23 09:23:27 +02:00
|
|
|
} else {
|
2010-11-15 19:49:00 +01:00
|
|
|
if (getInitParam("cdm_auto_catchup") != 1) {
|
2007-11-17 07:49:13 +01:00
|
|
|
setTimeout("viewfeed(-3)", 100);
|
2008-05-19 09:37:44 +02:00
|
|
|
} else {
|
2010-11-04 17:11:54 +01:00
|
|
|
setTimeout("viewfeed(-5)", 100);
|
2008-05-19 09:37:44 +02:00
|
|
|
remove_splash();
|
2007-11-17 07:49:13 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
console.log("T:" +
|
|
|
|
getInitParam("cdm_auto_catchup") + " " + get_feed_unread(-3));
|
2006-11-22 11:11:41 +01:00
|
|
|
|
2010-01-15 09:46:20 +01:00
|
|
|
if (getInitParam("theme") == "" ||
|
|
|
|
getInitParam("theme_options").match("hide_footer")) {
|
2008-02-20 06:34:11 +01:00
|
|
|
setTimeout("hide_footer()", 5000);
|
2008-02-20 10:06:09 +01:00
|
|
|
}
|
2007-11-21 08:08:25 +01:00
|
|
|
|
2010-11-15 11:12:02 +01:00
|
|
|
//init_collapsable_feedlist(getInitParam("theme"));
|
2008-02-15 13:25:17 +01:00
|
|
|
|
2008-09-06 15:23:20 +02:00
|
|
|
toggle_sortable_feedlist(isFeedlistSortable());
|
2008-08-29 09:34:35 +02: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
|
|
|
|
2010-11-15 08:39:52 +01:00
|
|
|
/* function hide_footer_af(effect) {
|
2007-11-21 08:08:25 +01:00
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var c = $("content-frame");
|
2007-11-21 08:08:25 +01:00
|
|
|
|
|
|
|
if (c) {
|
|
|
|
c.style.bottom = "0px";
|
2008-10-22 09:54:38 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ioa = $("inline_orig_article");
|
2008-10-22 09:54:38 +02:00
|
|
|
|
|
|
|
if (ioa) {
|
|
|
|
ioa.height = c.offsetHeight;
|
|
|
|
}
|
|
|
|
|
2007-11-21 08:08:25 +01:00
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
var h = $("headlines-frame");
|
2007-11-21 08:08:25 +01:00
|
|
|
|
|
|
|
if (h) {
|
|
|
|
h.style.bottom = "0px";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hide_footer_af", e);
|
|
|
|
}
|
2010-11-15 08:39:52 +01:00
|
|
|
} */
|
2007-11-21 08:08:25 +01:00
|
|
|
|
|
|
|
function hide_footer() {
|
|
|
|
try {
|
2010-11-15 19:49:00 +01:00
|
|
|
/* if (Element.visible("footer")) {
|
2010-11-15 08:39:52 +01:00
|
|
|
|
|
|
|
Element.hide("footer");
|
2010-11-15 11:12:02 +01:00
|
|
|
dijit.byId("main").resize();
|
2010-11-15 08:39:52 +01:00
|
|
|
|
|
|
|
//new Effect.Fade("footer", { afterFinish: hide_footer_af });
|
2010-11-15 19:49:00 +01:00
|
|
|
} */
|
2007-11-21 08:08:25 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("hide_footer", e);
|
|
|
|
}
|
|
|
|
}
|
2008-02-15 13:25:17 +01:00
|
|
|
|
2009-01-20 18:46:21 +01:00
|
|
|
function enable_selection(b) {
|
2009-01-20 18:59:01 +01:00
|
|
|
selection_disabled = !b;
|
2009-01-20 18:46:21 +01:00
|
|
|
}
|
|
|
|
|
2008-05-20 10:29:13 +02:00
|
|
|
function enable_resize(b) {
|
|
|
|
resize_enabled = b;
|
2008-05-19 18:55:57 +02: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
|
|
|
|
2010-11-11 20:59:01 +01:00
|
|
|
var query = "?op=rpc&subop=getAllCounters&seq=" + next_seq();
|
2008-05-20 14:52:38 +02:00
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
query = query + "&omode=tl";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2008-05-20 14:52:38 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
try {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(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 {
|
|
|
|
|
|
|
|
var msg = "<a href='#' onclick='viewfeed("+id+")'>" +
|
|
|
|
__("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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function parse_counters(reply, scheduled_call) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var feeds_found = 0;
|
|
|
|
|
|
|
|
var elems = JSON.parse(reply.firstChild.nodeValue);
|
|
|
|
|
|
|
|
for (var l = 0; l < elems.length; l++) {
|
|
|
|
|
|
|
|
var id = elems[l].id
|
|
|
|
var kind = elems[l].kind;
|
|
|
|
var ctr = parseInt(elems[l].counter)
|
|
|
|
var error = elems[l].error;
|
|
|
|
var has_img = elems[l].has_img;
|
|
|
|
var updated = elems[l].updated;
|
|
|
|
var title = elems[l].title;
|
|
|
|
var xmsg = elems[l].xmsg;
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
var treeItem;
|
|
|
|
|
|
|
|
setFeedUnread(id, (kind == "cat"), ctr);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
if (kind != "cat") {
|
|
|
|
//setFeedValue(id, false, 'error', error);
|
|
|
|
setFeedValue(id, false, 'updated', updated);
|
2010-11-16 07:49:00 +01:00
|
|
|
|
|
|
|
if (id > 0) {
|
|
|
|
if (has_img) {
|
|
|
|
setFeedIcon(id, false,
|
|
|
|
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
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
hideOrShowFeeds(getInitParam("hide_read_feeds") == 1);
|
|
|
|
|
|
|
|
var feeds_stored = number_of_feeds;
|
|
|
|
|
|
|
|
if (feeds_stored != feeds_found) {
|
|
|
|
number_of_feeds = feeds_found;
|
|
|
|
|
|
|
|
if (feeds_stored != 0 && feeds_found != 0) {
|
|
|
|
console.log("Subscribed feed number changed, refreshing feedlist");
|
2010-11-15 14:23:42 +01:00
|
|
|
setTimeout('updateFeedList()', 50);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("parse_counters", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
function get_feed_unread(feed, is_cat) {
|
2010-11-12 11:52:53 +01:00
|
|
|
try {
|
2010-11-15 19:49:00 +01:00
|
|
|
if (is_cat)
|
|
|
|
treeItem = treeModel.store._itemsByIdentity['CAT:' + feed];
|
|
|
|
else
|
|
|
|
treeItem = treeModel.store._itemsByIdentity['FEED:' + feed];
|
|
|
|
|
|
|
|
if (treeItem)
|
|
|
|
return treeModel.store.getValue(treeItem, 'unread');
|
|
|
|
|
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 get_cat_unread(id) {
|
2010-11-15 19:49:00 +01:00
|
|
|
return get_feed_unread(id, true);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function get_feed_entry_unread(elem) {
|
|
|
|
|
|
|
|
var id = elem.id.replace("FEEDR-", "");
|
|
|
|
|
|
|
|
if (id <= 0) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
return parseInt($("FEEDU-" + id).innerHTML);
|
|
|
|
} catch (e) {
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function get_feed_entry_name(elem) {
|
|
|
|
var id = elem.id.replace("FEEDR-", "");
|
|
|
|
return getFeedName(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function resort_category(node, cat_mode) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
//console.log("resort_category: " + node + " CM=" + cat_mode);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
var by_unread = feedsSortByUnread();
|
|
|
|
|
|
|
|
var list = node.getElementsByTagName("LI");
|
2010-11-14 16:22:06 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
for (i = 0; i < list.length; i++) {
|
|
|
|
|
|
|
|
for (j = i+1; j < list.length; j++) {
|
|
|
|
|
|
|
|
var tmp_val = get_feed_entry_unread(list[i]);
|
|
|
|
var cur_val = get_feed_entry_unread(list[j]);
|
2010-11-14 16:22:06 +01:00
|
|
|
|
|
|
|
//console.log(list[i].id + " vs " + list[j].id);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var tmp_name = get_feed_entry_name(list[i]).toLowerCase();
|
|
|
|
var cur_name = get_feed_entry_name(list[j]).toLowerCase();
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
/* we don't want to match FEEDR-0 - e.g. Archived articles */
|
|
|
|
|
|
|
|
var valid_pair = cat_mode || (list[i].id.match(/FEEDR-[1-9]/) &&
|
|
|
|
list[j].id.match(/FEEDR-[1-9]/));
|
|
|
|
|
|
|
|
if (valid_pair && ((by_unread && (cur_val > tmp_val)) || (!by_unread && (cur_name < tmp_name)))) {
|
|
|
|
tempnode_i = list[i].cloneNode(true);
|
|
|
|
tempnode_j = list[j].cloneNode(true);
|
|
|
|
node.replaceChild(tempnode_i, list[j]);
|
|
|
|
node.replaceChild(tempnode_j, list[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("resort_category", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function resort_feedlist() {
|
2010-11-15 20:59:05 +01:00
|
|
|
return;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
console.log("resort_feedlist");
|
|
|
|
|
|
|
|
if ($("FCATLIST--1")) {
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var lists = $$("#feedList ul[id*=FCATLIST]");
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
lists.each(function(list) {
|
|
|
|
if (list.id != "FCATLIST--1") resort_category(list, true);
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
} else {
|
|
|
|
resort_category($("feedList"), false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hideOrShowFeeds(hide) {
|
2010-11-15 19:49:00 +01:00
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-16 09:41:31 +01:00
|
|
|
if (!tree) return;
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
if (getInitParam("enable_feed_cats")) {
|
|
|
|
|
|
|
|
var cats = tree.model.store._arrayOfTopLevelItems;
|
|
|
|
|
|
|
|
cats.each(function(cat) {
|
|
|
|
var cat_unread = hideOrShowFeedsCategory(cat.items, hide);
|
|
|
|
|
|
|
|
var id = String(cat.id);
|
|
|
|
var node = tree._itemNodesMap[id];
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
if (hide && cat_unread == 0) {
|
|
|
|
Effect.Fade(node[0].rowNode, {duration : 0.3,
|
|
|
|
queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
|
|
|
|
} else {
|
|
|
|
Element.show(node[0].rowNode);
|
|
|
|
++cat_unread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
hideOrShowFeedsCategory(tree.model.store._arrayOfTopLevelItems, hide);
|
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
/* try {
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if ($("FCATLIST--1")) {
|
|
|
|
|
|
|
|
var lists = $$("#feedList ul[id*=FCATLIST]");
|
|
|
|
|
|
|
|
lists.each(function(list) {
|
|
|
|
hideOrShowFeedsCategory(list.id.replace("FCATLIST-", ""), hide);
|
|
|
|
});
|
|
|
|
|
|
|
|
} else {
|
|
|
|
hideOrShowFeedsCategory(null, hide);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hideOrShowFeeds", e);
|
2010-11-15 14:23:42 +01:00
|
|
|
} */
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
function hideOrShowFeedsCategory(feeds, hide) {
|
2010-11-12 11:52:53 +01:00
|
|
|
try {
|
2010-11-15 19:49:00 +01:00
|
|
|
//console.warn("hideOrShowFeedsCategory: function not implemented");
|
|
|
|
var tree = dijit.byId("feedTree");
|
2010-11-16 09:41:31 +01:00
|
|
|
|
|
|
|
if (!tree) return;
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
var cat_unread = 0;
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
feeds.each(function(feed) {
|
|
|
|
var id = String(feed.id);
|
|
|
|
var bare_id = parseInt(id.substr(id.indexOf(":")+1));
|
|
|
|
|
|
|
|
var unread = feed.unread[0];
|
|
|
|
var node = tree._itemNodesMap[id];
|
|
|
|
|
|
|
|
if (node) {
|
|
|
|
if (hide && unread == 0 && (bare_id > 0 || !getInitParam("hide_read_shows_special"))) {
|
|
|
|
Effect.Fade(node[0].rowNode, {duration : 0.3,
|
|
|
|
queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
|
|
|
|
} else {
|
|
|
|
Element.show(node[0].rowNode);
|
|
|
|
++cat_unread;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
return cat_unread;
|
|
|
|
|
|
|
|
/* var nodes;
|
2010-11-14 13:55:51 +01:00
|
|
|
var cat_node;
|
|
|
|
|
|
|
|
if (cat_id) {
|
|
|
|
nodes = $$("#FCATLIST-" + cat_id + " > li");
|
|
|
|
cat_node = $("FCAT-" + cat_id);
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
nodes = $$("#feedList li");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var cat_unread = 0;
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
nodes.each(function(node) {
|
|
|
|
|
|
|
|
var is_unread = node.hasClassName("Unread") ||
|
2010-11-14 14:01:04 +01:00
|
|
|
node.hasClassName("Selected") ||
|
2010-11-14 13:55:51 +01:00
|
|
|
(node.hasClassName("virt") &&
|
2010-11-14 14:01:04 +01:00
|
|
|
getInitParam("hide_read_shows_special"));
|
2010-11-14 13:55:51 +01:00
|
|
|
|
|
|
|
if (hide && !is_unread) {
|
|
|
|
Effect.Fade(node, {duration : 0.3,
|
|
|
|
queue: { position: 'end', scope: 'FFADE-' + node.id, limit: 1 }});
|
|
|
|
} else {
|
|
|
|
Element.show(node);
|
|
|
|
++cat_unread;
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (cat_node) {
|
2010-11-14 14:01:04 +01:00
|
|
|
if (hide && cat_unread == 0 && !cat_node.hasClassName("Selected")) {
|
2010-11-14 13:55:51 +01:00
|
|
|
Effect.Fade(cat_node, {duration : 0.3,
|
|
|
|
queue: { position: 'end', scope: 'CFADE-' + cat_node.id, limit: 1 }});
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
Element.show(cat_node);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
2010-11-15 19:49:00 +01:00
|
|
|
} */
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hideOrShowFeedsCategory", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
function getFeedName(feed, is_cat) {
|
|
|
|
return getFeedValue(feed, is_cat, 'name');
|
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
function getFeedValue(feed, is_cat, key) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (is_cat)
|
|
|
|
treeItem = treeModel.store._itemsByIdentity['CAT:' + feed];
|
|
|
|
else
|
|
|
|
treeItem = treeModel.store._itemsByIdentity['FEED:' + feed];
|
|
|
|
|
|
|
|
if (treeItem)
|
|
|
|
return treeModel.store.getValue(treeItem, key);
|
|
|
|
|
|
|
|
} 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
|
|
|
}
|
|
|
|
|
|
|
|
function getNextUnreadCat(id) {
|
|
|
|
try {
|
2010-11-14 13:55:51 +01:00
|
|
|
var rows = $$("#feedList li[id*=FCAT]");
|
|
|
|
var unread_cats = [];
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
rows.each(function(row) {
|
|
|
|
var cat_id = row.id.replace("FCAT-", "");
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (Element.visible(row) && get_cat_unread(cat_id) > 0)
|
|
|
|
unread_cats.push(parseInt(cat_id));
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
console.log(unread_cats);
|
|
|
|
|
|
|
|
var idx = unread_cats.indexOf(id);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (idx != -1 && idx < unread_cats.length-1) {
|
|
|
|
return unread_cats[idx+1];
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
return unread_cats[0];
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getNextUnreadCat", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getRelativeFeedId2(id, is_cat, direction, unread_only) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
// alert(id + " IC: " + is_cat + " D: " + direction + " U: " + unread_only);
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var rows = $$("#feedList li");
|
2010-11-12 11:52:53 +01:00
|
|
|
var feeds = new Array();
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
if (rows[i].id.match("FEEDR-")) {
|
|
|
|
|
|
|
|
if (rows[i].id == "FEEDR-" + id && !is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
|
|
|
|
|
|
|
|
if (!unread_only ||
|
2010-11-14 13:55:51 +01:00
|
|
|
(rows[i].hasClassName("Unread") || rows[i].id == "FEEDR-" + id)) {
|
2010-11-12 11:52:53 +01:00
|
|
|
feeds.push(rows[i].id.replace("FEEDR-", ""));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows[i].id.match("FCAT-")) {
|
|
|
|
if (rows[i].id == "FCAT-" + id && is_cat || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
|
|
|
|
|
|
|
|
var cat_id = parseInt(rows[i].id.replace("FCAT-", ""));
|
|
|
|
|
|
|
|
if (cat_id >= 0) {
|
|
|
|
if (!unread_only || get_cat_unread(cat_id) > 0) {
|
|
|
|
feeds.push("CAT:"+cat_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// alert(feeds.toString());
|
|
|
|
|
|
|
|
if (!id) {
|
|
|
|
if (direction == "next") {
|
|
|
|
return feeds.shift();
|
|
|
|
} else {
|
|
|
|
return feeds.pop();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (direction == "next") {
|
|
|
|
if (is_cat) id = "CAT:" + id;
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx != -1 && idx < feeds.length) {
|
|
|
|
return feeds[idx+1];
|
|
|
|
} else {
|
|
|
|
return getRelativeFeedId2(false, is_cat, direction, unread_only);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (is_cat) id = "CAT:" + id;
|
|
|
|
var idx = feeds.indexOf(id);
|
|
|
|
if (idx > 0) {
|
|
|
|
return feeds[idx-1];
|
|
|
|
} else {
|
|
|
|
return getRelativeFeedId2(false, is_cat, direction, unread_only);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getRelativeFeedId2", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function feedsSortByUnread() {
|
|
|
|
return feeds_sort_by_unread;
|
|
|
|
}
|
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
function setFeedUnread(feed, is_cat, unread) {
|
|
|
|
try {
|
2010-11-15 19:49:00 +01:00
|
|
|
setFeedValue(feed, is_cat, 'unread', parseInt(unread));
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function setFeedValue(feed, is_cat, key, value) {
|
|
|
|
try {
|
|
|
|
if (!value) value = '';
|
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
if (is_cat)
|
|
|
|
treeItem = treeModel.store._itemsByIdentity['CAT:' + feed];
|
|
|
|
else
|
|
|
|
treeItem = treeModel.store._itemsByIdentity['FEED:' + feed];
|
|
|
|
|
|
|
|
if (treeItem)
|
2010-11-15 19:49:00 +01:00
|
|
|
treeModel.store.setValue(treeItem, key, value);
|
2009-02-04 07:51:31 +01:00
|
|
|
|
2010-11-15 14:23:42 +01:00
|
|
|
} catch (e) {
|
2010-11-15 19:49:00 +01:00
|
|
|
exception_error("setFeedValue", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleCollapseCat(id) {
|
|
|
|
console.warn("toggleCollapseCat: function not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectFeed(feed, is_cat) {
|
|
|
|
try {
|
|
|
|
var tree = dijit.byId("feedTree");
|
|
|
|
|
2010-11-16 09:41:31 +01:00
|
|
|
if (!tree) return;
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
if (is_cat)
|
|
|
|
treeNode = tree._itemNodesMap['CAT:' + feed];
|
|
|
|
else
|
|
|
|
treeNode = tree._itemNodesMap['FEED:' + feed];
|
|
|
|
|
|
|
|
if (treeNode) {
|
|
|
|
treeNode = treeNode[0];
|
2010-11-16 07:53:55 +01:00
|
|
|
if (!is_cat) tree._expandNode(treeNode);
|
2010-11-15 19:49:00 +01:00
|
|
|
tree._selectNode(treeNode);
|
|
|
|
}
|
|
|
|
|
|
|
|
} 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-16 09:41:31 +01:00
|
|
|
if (!tree) return;
|
|
|
|
|
2010-11-16 07:49:00 +01:00
|
|
|
if (is_cat)
|
|
|
|
treeNode = tree._itemNodesMap['CAT:' + feed];
|
|
|
|
else
|
|
|
|
treeNode = tree._itemNodesMap['FEED:' + feed];
|
|
|
|
|
|
|
|
if (treeNode) {
|
|
|
|
treeNode = treeNode[0];
|
|
|
|
treeNode.iconNode.src = src;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setFeedIcon", e);
|
|
|
|
}
|
|
|
|
}
|