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
|
|
|
|
2008-05-20 05:40:27 +02:00
|
|
|
var mouse_is_down = false;
|
|
|
|
var mouse_y = 0;
|
|
|
|
var mouse_x = 0;
|
|
|
|
|
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
|
|
|
|
2008-09-06 15:23:20 +02:00
|
|
|
function toggle_sortable_feedlist(enabled) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (enabled) {
|
|
|
|
Sortable.create('feedList', {onChange: feedlist_dragsorted, only: "feedCat"});
|
|
|
|
} else {
|
|
|
|
Sortable.destroy('feedList');
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggle_sortable_feedlist", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-02-02 13:14:34 +01:00
|
|
|
function render_feedlist(data) {
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var f = $("feeds-frame");
|
2009-02-02 13:14:34 +01:00
|
|
|
f.innerHTML = data;
|
2009-02-04 13:09:55 +01:00
|
|
|
// cache_invalidate("FEEDLIST");
|
|
|
|
// cache_inject("FEEDLIST", data, getInitParam("num_feeds"));
|
2009-02-02 13:14:34 +01:00
|
|
|
feedlist_init();
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("render_feedlist", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 06:49:57 +02:00
|
|
|
function feedlist_callback2(transport) {
|
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("feedlist_callback2");
|
2009-01-31 21:03:40 +01:00
|
|
|
if (!transport_error_check(transport)) return;
|
2009-02-02 13:14:34 +01:00
|
|
|
render_feedlist(transport.responseText);
|
2007-08-24 06:49:57 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("feedlist_callback2", e);
|
2006-09-28 14:00:03 +02: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
|
|
|
|
|
|
|
viewfeed(getActiveFeedId(), undefined, activeFeedIsCat(), undefined,
|
2009-02-04 12:47:09 +01:00
|
|
|
undefined, 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
|
|
|
|
2007-01-19 10:38:16 +01:00
|
|
|
function viewfeed(feed, subop, is_cat, subop_param, skip_history, offset) {
|
2005-11-26 11:06:56 +01:00
|
|
|
try {
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2009-02-03 16:43:44 +01:00
|
|
|
if (offline_mode) return viewfeed_offline(feed, subop, is_cat, subop_param,
|
|
|
|
skip_history, offset);
|
|
|
|
|
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-09-05 11:41:19 +02:00
|
|
|
console.log("<b>" + _infscroll_request_sent + " : " + timestamp + "</b>");
|
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
|
|
|
|
2009-02-07 09:16:45 +01:00
|
|
|
catchup_local_feed(feed, is_cat);
|
|
|
|
|
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");
|
|
|
|
|
2007-05-15 07:59:22 +02:00
|
|
|
// for piggybacked counters
|
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
query = query + "&omode=lt";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
|
|
|
}
|
|
|
|
|
2008-05-21 06:38:28 +02:00
|
|
|
if (!async_counters_work) {
|
|
|
|
query = query + "&csync=true";
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2008-05-19 10:54:16 +02:00
|
|
|
/* if (container && page_offset == 0 && !isCdmMode()) {
|
2007-08-24 08:25:11 +02:00
|
|
|
new Effect.Fade(container, {duration: 1, to: 0.01,
|
2007-10-18 04:21:37 +02:00
|
|
|
queue: { position:'end', scope: 'FEEDL-' + feed, limit: 1 } } );
|
2008-05-19 10:54:16 +02:00
|
|
|
} */
|
2007-08-24 06:59:12 +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-02-10 10:06:15 +01:00
|
|
|
var f = $("headlines-frame");
|
2007-11-21 09:23:34 +01:00
|
|
|
|
|
|
|
clean_feed_selections();
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
setActiveFeedId(feed, is_cat);
|
2007-11-21 09:23:34 +01:00
|
|
|
|
|
|
|
if (!is_cat) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var feedr = $("FEEDR-" + feed);
|
2007-11-21 09:23:34 +01:00
|
|
|
if (feedr && !feedr.className.match("Selected")) {
|
|
|
|
feedr.className = feedr.className + "Selected";
|
|
|
|
}
|
2009-01-17 11:14:45 +01:00
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
var feedr = $("FCAT-" + feed_id);
|
2009-01-17 11:14:45 +01:00
|
|
|
if (feedr && !feedr.className.match("Selected")) {
|
|
|
|
feedr.className = feedr.className + "Selected";
|
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
}
|
|
|
|
|
2007-11-21 10:15:14 +01:00
|
|
|
f.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 {
|
|
|
|
|
|
|
|
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) {
|
|
|
|
|
2009-10-12 12:32:18 +02:00
|
|
|
if (!img.src.match("indicator_white")) {
|
|
|
|
img.alt = img.src;
|
2010-01-14 21:09:23 +01:00
|
|
|
img.src = getInitParam("sign_progress");
|
2009-10-12 12:32:18 +02:00
|
|
|
}
|
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
|
|
|
}
|
2009-10-07 12:22:44 +02: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
|
|
|
}
|
|
|
|
|
2007-08-11 14:02:50 +02:00
|
|
|
function toggleCollapseCat_af(effect) {
|
|
|
|
//var caption = elem.id.replace("FCATLIST-", "");
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var elem = effect.element;
|
|
|
|
var cat = elem.id.replace("FCATLIST-", "");
|
2009-02-10 10:06:15 +01:00
|
|
|
var cap = $("FCAP-" + cat);
|
2007-11-17 11:49:13 +01:00
|
|
|
|
2007-08-11 14:02:50 +02:00
|
|
|
if (Element.visible(elem)) {
|
2007-11-17 11:49:13 +01:00
|
|
|
cap.innerHTML = cap.innerHTML.replace("…", "");
|
2007-08-11 14:02:50 +02:00
|
|
|
} else {
|
2007-11-17 11:49:13 +01:00
|
|
|
if (cap.innerHTML.lastIndexOf("…") != cap.innerHTML.length-3) {
|
|
|
|
cap.innerHTML = cap.innerHTML + "…";
|
2007-08-11 14:02:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleCollapseCat_af", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 09:53:56 +01:00
|
|
|
function toggleCollapseCat(cat) {
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cat_elem = $("FCAT-" + cat);
|
|
|
|
var cat_list = $("FCATLIST-" + cat).parentNode;
|
|
|
|
var caption = $("FCAP-" + cat);
|
2005-12-13 09:53:56 +01:00
|
|
|
|
2007-08-11 14:02:50 +02:00
|
|
|
Effect.toggle('FCATLIST-' + cat, 'blind', { duration: 0.5,
|
|
|
|
afterFinish: toggleCollapseCat_af });
|
2005-12-13 09:53:56 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php",
|
|
|
|
{ parameters: "backend.php?op=feeds&subop=collapse&cid=" +
|
|
|
|
param_escape(cat) } );
|
2005-12-13 09:53:56 +01:00
|
|
|
|
2009-02-05 20:34:56 +01:00
|
|
|
local_collapse_cat(cat);
|
|
|
|
|
2005-12-13 09:53:56 +01:00
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("toggleCollapseCat", e);
|
2005-12-13 09:53:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-29 10:01:53 +02:00
|
|
|
function feedlist_dragsorted(ctr) {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var elem = $("feedList");
|
2008-08-29 10:01:53 +02:00
|
|
|
|
|
|
|
var cats = elem.getElementsByTagName("LI");
|
|
|
|
var ordered_cats = new Array();
|
|
|
|
|
|
|
|
for (var i = 0; i < cats.length; i++) {
|
|
|
|
if (cats[i].id && cats[i].id.match("FCAT-")) {
|
|
|
|
ordered_cats.push(cats[i].id.replace("FCAT-", ""));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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-09-05 11:41:19 +02: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-09-05 11:41:19 +02: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;
|
2008-05-19 18:13:22 +02:00
|
|
|
document.onmousemove = mouse_move_handler;
|
|
|
|
document.onmousedown = mouse_down_handler;
|
|
|
|
document.onmouseup = mouse_up_handler;
|
2009-01-17 16:01:09 +01:00
|
|
|
|
2009-02-03 20:33:52 +01:00
|
|
|
if (!offline_mode) setTimeout("timeout()", 1);
|
2006-03-20 15:45:55 +01:00
|
|
|
|
2009-10-06 13:04:46 +02:00
|
|
|
setTimeout("hotkey_prefix_timeout()", 5*1000);
|
|
|
|
|
2006-09-29 06:45:26 +02:00
|
|
|
if (typeof correctPNG != 'undefined') {
|
|
|
|
correctPNG();
|
|
|
|
}
|
|
|
|
|
2006-11-22 11:11:41 +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 {
|
2008-05-19 10:03:53 +02:00
|
|
|
if (getInitParam("cdm_auto_catchup") != 1 && get_feed_unread(-3) > 0) {
|
2008-05-19 09:37:44 +02:00
|
|
|
notify_silent_next();
|
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
|
|
|
}
|
2007-08-23 09:23:27 +02:00
|
|
|
}
|
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
|
|
|
|
2008-02-20 13:38:38 +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
|
|
|
|
|
|
|
function hide_footer_af(effect) {
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function hide_footer() {
|
|
|
|
try {
|
|
|
|
if (Element.visible("footer")) {
|
|
|
|
new Effect.Fade("footer", { afterFinish: hide_footer_af });
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hide_footer", e);
|
|
|
|
}
|
|
|
|
}
|
2008-02-15 13:25:17 +01:00
|
|
|
|
2010-01-15 11:43:17 +01:00
|
|
|
function init_collapsable_feedlist() {
|
2008-02-20 06:27:16 +01:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("init_collapsable_feedlist");
|
2008-02-20 06:27:16 +01:00
|
|
|
|
2010-01-15 11:43:17 +01:00
|
|
|
var theme = getInitParam("theme");
|
|
|
|
var options = getInitParam("theme_options");
|
|
|
|
|
|
|
|
if (theme != "" && !options.match("collapse_feedlist")) return;
|
2008-02-20 10:06:09 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var fbtn = $("collapse_feeds_btn");
|
2008-02-20 06:27:16 +01:00
|
|
|
|
|
|
|
if (fbtn) Element.show(fbtn);
|
|
|
|
|
2009-12-24 13:25:06 +01:00
|
|
|
if (getInitParam("collapsed_feedlist") == 1) {
|
2008-02-20 09:56:38 +01:00
|
|
|
collapse_feedlist();
|
|
|
|
}
|
|
|
|
|
2008-02-20 06:27:16 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("init_hidden_feedlist", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2008-05-19 09:37:44 +02:00
|
|
|
|
2008-05-19 18:13:22 +02:00
|
|
|
function mouse_move_handler(e) {
|
|
|
|
try {
|
|
|
|
var client_y;
|
2008-05-19 18:16:51 +02:00
|
|
|
var client_x;
|
2008-05-19 18:13:22 +02:00
|
|
|
|
|
|
|
if (window.event) {
|
|
|
|
client_y = window.event.clientY;
|
2008-05-19 18:16:51 +02:00
|
|
|
client_x = window.event.clientX;
|
2008-05-19 18:13:22 +02:00
|
|
|
} else if (e) {
|
2008-05-20 06:08:36 +02:00
|
|
|
client_x = e.screenX;
|
|
|
|
client_y = e.screenY;
|
2008-05-19 18:13:22 +02:00
|
|
|
}
|
|
|
|
|
2008-05-20 03:03:35 +02:00
|
|
|
if (mouse_is_down) {
|
2008-05-19 18:13:22 +02:00
|
|
|
|
2008-05-19 18:16:51 +02:00
|
|
|
if (mouse_y == 0) mouse_y = client_y;
|
|
|
|
if (mouse_x == 0) mouse_x = client_x;
|
2008-05-19 18:13:22 +02:00
|
|
|
|
2008-05-19 18:16:51 +02:00
|
|
|
resize_headlines(mouse_x - client_x, mouse_y - client_y);
|
2008-05-20 07:14:55 +02:00
|
|
|
|
|
|
|
mouse_y = client_y;
|
|
|
|
mouse_x = client_x;
|
|
|
|
|
2008-05-19 18:13:22 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("mouse_move_handler", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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-19 18:13:22 +02:00
|
|
|
function mouse_down_handler(e) {
|
|
|
|
try {
|
2008-12-04 07:06:48 +01:00
|
|
|
|
|
|
|
/* do not prevent right click */
|
2009-06-19 09:24:12 +02:00
|
|
|
if (e && e.button && e.button == 2) return;
|
2008-12-04 07:06:48 +01:00
|
|
|
|
2008-05-20 10:29:13 +02:00
|
|
|
if (resize_enabled) {
|
2008-05-20 07:14:55 +02:00
|
|
|
mouse_is_down = true;
|
|
|
|
mouse_x = 0;
|
|
|
|
mouse_y = 0;
|
2008-05-20 07:18:00 +02:00
|
|
|
document.onselectstart = function() { return false; };
|
2008-07-25 07:11:22 +02:00
|
|
|
return false;
|
2008-05-20 07:14:55 +02:00
|
|
|
}
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
if (selection_disabled) {
|
|
|
|
document.onselectstart = function() { return false; };
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2008-05-19 18:13:22 +02:00
|
|
|
} catch (e) {
|
2009-06-19 09:24:12 +02:00
|
|
|
exception_error("mouse_down_handler", e);
|
2008-05-19 18:13:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function mouse_up_handler(e) {
|
|
|
|
try {
|
|
|
|
mouse_is_down = false;
|
2009-01-20 18:46:21 +01:00
|
|
|
|
2009-01-20 18:59:01 +01:00
|
|
|
if (!selection_disabled) {
|
2009-01-20 18:46:21 +01:00
|
|
|
document.onselectstart = null;
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("headlineActionsBody");
|
2009-01-20 18:46:21 +01:00
|
|
|
if (e) Element.hide(e);
|
2009-02-12 14:35:25 +01:00
|
|
|
|
|
|
|
var e = $("offlineModeDrop");
|
|
|
|
if (e) Element.hide(e);
|
|
|
|
|
2009-01-20 18:46:21 +01:00
|
|
|
}
|
|
|
|
|
2008-05-19 18:13:22 +02:00
|
|
|
} catch (e) {
|
2009-06-19 09:24:12 +02:00
|
|
|
exception_error("mouse_up_handler", e);
|
2008-05-19 18:13:22 +02:00
|
|
|
}
|
|
|
|
}
|
2008-05-20 14:52:38 +02:00
|
|
|
|
2008-05-20 17:59:42 +02:00
|
|
|
function request_counters_real() {
|
2008-05-20 14:52:38 +02:00
|
|
|
|
|
|
|
try {
|
2008-05-21 06:19:03 +02:00
|
|
|
|
2009-02-02 13:39:18 +01:00
|
|
|
if (offline_mode) return;
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("requesting counters...");
|
2008-05-21 06:19:03 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=getAllCounters";
|
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 {
|
2008-05-21 06:38:28 +02:00
|
|
|
all_counters_callback2(transport, true);
|
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);
|
|
|
|
|
2009-01-17 15:15:43 +01:00
|
|
|
if (timestamp - counters_last_request > 15) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("scheduling request of counters...");
|
2008-05-21 06:19:03 +02:00
|
|
|
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
|
|
|
|
2009-02-04 07:51:31 +01:00
|
|
|
|