2005-09-05 14:41:59 +02:00
|
|
|
var active_post_id = false;
|
2006-11-23 06:26:49 +01:00
|
|
|
var last_article_view = false;
|
2006-12-07 08:48:00 +01:00
|
|
|
var active_real_feed_id = false;
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
// FIXME: kludges, needs proper implementation
|
2006-12-07 08:48:00 +01:00
|
|
|
var _reload_feedlist_after_view = false;
|
2006-09-29 06:55:07 +02:00
|
|
|
|
2007-01-25 10:12:33 +01:00
|
|
|
var _cdm_wd_timeout = false;
|
|
|
|
var _cdm_wd_vishist = new Array();
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var article_cache = new Array();
|
|
|
|
|
2008-05-17 06:42:20 +02:00
|
|
|
var vgroup_last_feed = false;
|
2008-05-17 17:58:15 +02:00
|
|
|
var post_under_pointer = false;
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2008-05-20 18:06:12 +02:00
|
|
|
var last_requested_article = false;
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
var preload_id_batch = [];
|
|
|
|
var preload_timeout_id = false;
|
|
|
|
|
|
|
|
var cache_added = [];
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
function catchup_callback2(transport, callback) {
|
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("catchup_callback2 " + transport + ", " + callback);
|
2007-08-24 06:04:55 +02:00
|
|
|
notify("");
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
if (callback) {
|
|
|
|
setTimeout(callback, 10);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("catchup_callback2", e, transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
function headlines_callback2(transport, feed_cur_page) {
|
2007-11-21 09:23:34 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
if (!handle_rpc_reply(transport)) return;
|
2009-02-12 22:12:18 +01:00
|
|
|
|
2008-05-19 09:37:44 +02:00
|
|
|
loading_set_progress(100);
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("headlines_callback2 [page=" + feed_cur_page + "]");
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2009-01-31 21:03:40 +01:00
|
|
|
if (!transport_error_check(transport)) return;
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
clean_feed_selections();
|
2009-01-17 11:14:45 +01:00
|
|
|
|
|
|
|
var is_cat = false;
|
|
|
|
var feed_id = false;
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
if (transport.responseXML) {
|
|
|
|
var headlines = transport.responseXML.getElementsByTagName("headlines")[0];
|
|
|
|
if (headlines) {
|
|
|
|
is_cat = headlines.getAttribute("is_cat");
|
|
|
|
feed_id = headlines.getAttribute("id");
|
|
|
|
setActiveFeedId(feed_id, is_cat);
|
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
2008-10-01 06:06:55 +02:00
|
|
|
|
2009-10-07 12:22:44 +02:00
|
|
|
var ll = $('FLL-' + feed_id);
|
|
|
|
|
2010-11-11 13:29:46 +01:00
|
|
|
if (ll && ll.parentNode)
|
|
|
|
ll.parentNode.removeChild(ll);
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (!is_cat) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var feedr = $("FEEDR-" + feed_id);
|
2007-08-24 07:45:42 +02:00
|
|
|
if (feedr && !feedr.className.match("Selected")) {
|
|
|
|
feedr.className = feedr.className + "Selected";
|
|
|
|
}
|
2008-06-05 10:44:33 +02:00
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
var feedr = $("FCAT-" + feed_id);
|
2008-06-05 10:44:33 +02:00
|
|
|
if (feedr && !feedr.className.match("Selected")) {
|
|
|
|
feedr.className = feedr.className + "Selected";
|
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2009-10-07 21:16:21 +02:00
|
|
|
var img = $('FIMG-' + feed_id);
|
|
|
|
|
|
|
|
if (img && !is_cat) {
|
|
|
|
img.src = img.alt;
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var f = $("headlines-frame");
|
2007-08-24 07:45:42 +02:00
|
|
|
try {
|
|
|
|
if (feed_cur_page == 0) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("resetting headlines scrollTop");
|
2007-08-24 07:45:42 +02:00
|
|
|
f.scrollTop = 0;
|
2007-08-24 06:59:12 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
} catch (e) { };
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
2010-11-06 20:19:08 +01:00
|
|
|
var response = transport.responseXML;
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var headlines = response.getElementsByTagName("headlines")[0];
|
|
|
|
var headlines_info = response.getElementsByTagName("headlines-info")[0];
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
if (headlines_info)
|
|
|
|
headlines_info = JSON.parse(headlines_info.firstChild.nodeValue);
|
2010-11-10 19:56:28 +01:00
|
|
|
else {
|
|
|
|
console.error("didn't find headlines-info object in response");
|
|
|
|
return;
|
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var headlines_count = headlines_info.count;
|
|
|
|
var headlines_unread = headlines_info.unread;
|
|
|
|
var disable_cache = headlines_info.disable_cache;
|
|
|
|
|
|
|
|
vgroup_last_feed = headlines_info.vgroup_last_feed;
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2008-02-19 16:01:09 +01:00
|
|
|
if (headlines_count == 0) {
|
|
|
|
_infscroll_disable = 1;
|
|
|
|
} else {
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var counters = response.getElementsByTagName("counters")[0];
|
|
|
|
var articles = response.getElementsByTagName("article");
|
|
|
|
var runtime_info = response.getElementsByTagName("runtime-info");
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
if (feed_cur_page == 0) {
|
|
|
|
if (headlines) {
|
|
|
|
f.innerHTML = headlines.firstChild.nodeValue;
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2007-11-21 10:15:14 +01:00
|
|
|
var cache_prefix = "";
|
|
|
|
|
|
|
|
if (is_cat) {
|
|
|
|
cache_prefix = "C:";
|
|
|
|
} else {
|
|
|
|
cache_prefix = "F:";
|
|
|
|
}
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
cache_invalidate(cache_prefix + feed_id);
|
2007-11-21 10:59:22 +01:00
|
|
|
|
2007-11-21 11:34:06 +01:00
|
|
|
if (!disable_cache) {
|
2009-01-17 11:14:45 +01:00
|
|
|
cache_inject(cache_prefix + feed_id,
|
2007-11-21 11:34:06 +01:00
|
|
|
headlines.firstChild.nodeValue, headlines_unread);
|
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("headlines_callback: returned no data");
|
2007-08-24 07:45:42 +02:00
|
|
|
f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML data)') + "</div>";
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (headlines) {
|
|
|
|
if (headlines_count > 0) {
|
2010-11-11 10:19:28 +01:00
|
|
|
console.log("adding some more headlines...");
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
c = $("headlinesInnerContainer");
|
2007-09-05 18:10:35 +02:00
|
|
|
|
|
|
|
var ids = getSelectedArticleIds2();
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
c.innerHTML = c.innerHTML + headlines.firstChild.nodeValue;
|
2007-09-05 18:10:35 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("restore selected ids: " + ids);
|
2007-09-05 18:10:35 +02:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
markHeadline(ids[i]);
|
|
|
|
}
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("no new headlines received");
|
2007-08-24 07:31:57 +02:00
|
|
|
}
|
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("headlines_callback: returned no data");
|
2007-08-24 07:45:42 +02:00
|
|
|
notify_error("Error while trying to load more headlines");
|
|
|
|
}
|
2008-05-19 09:37:44 +02:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (articles) {
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var a_id = articles[i].getAttribute("id");
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("found id: " + a_id);
|
2007-08-24 07:45:42 +02:00
|
|
|
cache_inject(a_id, articles[i].firstChild.nodeValue);
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
2007-05-16 09:05:42 +02:00
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("no cached articles received");
|
2007-05-15 09:37:10 +02:00
|
|
|
}
|
2010-11-11 07:56:03 +01:00
|
|
|
|
|
|
|
if (counters)
|
|
|
|
parse_counters(counters);
|
|
|
|
else
|
|
|
|
request_counters();
|
2010-11-10 19:56:28 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (runtime_info) {
|
|
|
|
parse_runtime_info(runtime_info[0]);
|
2010-11-10 19:56:28 +01:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2007-05-15 07:59:22 +02:00
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("headlines_callback: returned no XML object");
|
2007-08-24 07:45:42 +02:00
|
|
|
f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
|
2007-05-15 07:59:22 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2010-11-10 12:48:35 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
|
2010-11-13 12:04:37 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (isCdmMode() &&
|
2008-11-13 06:53:41 +01:00
|
|
|
getActiveFeedId() != -3 &&
|
2007-08-24 07:45:42 +02:00
|
|
|
getInitParam("cdm_auto_catchup") == 1) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("starting CDM watchdog");
|
2007-08-24 07:45:42 +02:00
|
|
|
_cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
|
|
|
|
_cdm_wd_vishist = new Array();
|
2007-03-06 07:30:17 +01:00
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("not in CDM mode or watchdog disabled");
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
_feed_cur_page = feed_cur_page;
|
2007-08-28 07:05:45 +02:00
|
|
|
_infscroll_request_sent = 0;
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
notify("");
|
2008-05-19 09:37:44 +02:00
|
|
|
|
|
|
|
remove_splash();
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("headlines_callback2", e, transport);
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
function render_article(article) {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var f = $("content-frame");
|
2006-10-10 05:46:17 +02:00
|
|
|
try {
|
|
|
|
f.scrollTop = 0;
|
|
|
|
} catch (e) { };
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var fi = $("content-insert");
|
2008-07-25 07:11:22 +02:00
|
|
|
|
2008-07-30 05:27:25 +02:00
|
|
|
try {
|
|
|
|
fi.scrollTop = 0;
|
|
|
|
} catch (e) { };
|
2009-06-17 09:16:44 +02:00
|
|
|
|
2008-07-25 07:11:22 +02:00
|
|
|
fi.innerHTML = article;
|
2009-06-17 09:16:44 +02:00
|
|
|
|
2009-10-06 10:58:57 +02:00
|
|
|
// article.evalScripts();
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("render_article", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
function showArticleInHeadlines(id) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
try {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
selectArticles("none");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var crow = $("RROW-" + id);
|
2007-10-10 14:09:09 +02:00
|
|
|
|
|
|
|
if (!crow) return;
|
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
var article_is_unread = crow.className.match("Unread");
|
|
|
|
|
|
|
|
crow.className = crow.className.replace("Unread", "");
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('none');
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
2007-11-22 06:15:21 +01:00
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
var cache_prefix = "";
|
2007-11-22 06:15:21 +01:00
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
if (activeFeedIsCat()) {
|
|
|
|
cache_prefix = "C:";
|
|
|
|
} else {
|
|
|
|
cache_prefix = "F:";
|
|
|
|
}
|
2007-11-22 08:45:46 +01:00
|
|
|
|
|
|
|
var view_mode = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
view_mode = document.forms['main_toolbar_form'].view_mode;
|
|
|
|
view_mode = view_mode[view_mode.selectedIndex].value;
|
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
//
|
2007-11-22 08:45:46 +01:00
|
|
|
}
|
|
|
|
|
2009-08-21 13:24:18 +02:00
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
2007-11-22 06:15:21 +01:00
|
|
|
|
|
|
|
cache_invalidate(cache_prefix + getActiveFeedId());
|
2007-11-22 07:03:37 +01:00
|
|
|
|
|
|
|
cache_inject(cache_prefix + getActiveFeedId(),
|
2009-02-10 10:06:15 +01:00
|
|
|
$("headlines-frame").innerHTML,
|
2007-11-22 07:03:37 +01:00
|
|
|
get_feed_unread(getActiveFeedId()));
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2007-11-22 08:45:46 +01:00
|
|
|
} else if (article_is_unread && view_mode == "all_articles") {
|
2007-11-22 08:35:50 +01:00
|
|
|
|
|
|
|
cache_invalidate(cache_prefix + getActiveFeedId());
|
|
|
|
|
|
|
|
cache_inject(cache_prefix + getActiveFeedId(),
|
2009-02-10 10:06:15 +01:00
|
|
|
$("headlines-frame").innerHTML,
|
2007-11-22 08:35:50 +01:00
|
|
|
get_feed_unread(getActiveFeedId())-1);
|
|
|
|
|
2007-11-26 18:32:37 +01:00
|
|
|
} else if (article_is_unread) {
|
|
|
|
cache_invalidate(cache_prefix + getActiveFeedId());
|
2007-08-24 09:56:13 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-11-22 08:36:26 +01:00
|
|
|
markHeadline(id);
|
|
|
|
|
2010-11-11 09:36:56 +01:00
|
|
|
if (article_is_unread)
|
|
|
|
_force_scheduled_update = true;
|
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("showArticleInHeadlines", e);
|
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function article_callback2(transport, id) {
|
2007-08-24 09:53:35 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("article_callback2 " + id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
if (!handle_rpc_reply(transport)) return;
|
2009-02-12 22:12:18 +01:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
if (transport.responseXML) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-01-31 21:03:40 +01:00
|
|
|
if (!transport_error_check(transport)) return;
|
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
/* var ll = $('LL-' + id);
|
2009-10-07 12:22:44 +02:00
|
|
|
var content = $('HLC-' + id);
|
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
if (ll && content) content.removeChild(ll); */
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
|
|
|
if (upic) {
|
|
|
|
upic.src = 'images/blank_icon.gif';
|
|
|
|
}
|
|
|
|
|
2009-10-07 12:22:44 +02:00
|
|
|
if (id != last_requested_article) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("requested article id is out of sequence, aborting");
|
2009-10-07 12:22:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
// active_post_id = id;
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("looking for articles to cache...");
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
var articles = transport.responseXML.getElementsByTagName("article");
|
|
|
|
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var a_id = articles[i].getAttribute("id");
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("found id: " + a_id);
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
if (a_id == active_post_id) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("active article, rendering...");
|
2007-08-24 09:53:35 +02:00
|
|
|
render_article(articles[i].firstChild.nodeValue);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
cache_inject(a_id, articles[i].firstChild.nodeValue);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2008-05-22 07:45:11 +02:00
|
|
|
|
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
// showArticleInHeadlines(id);
|
2008-05-22 07:45:11 +02:00
|
|
|
|
2009-02-03 19:54:03 +01:00
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
|
|
|
|
}
|
|
|
|
|
2008-05-22 07:45:11 +02:00
|
|
|
var reply = transport.responseXML.firstChild.firstChild;
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("article_callback: returned no XML object");
|
2009-02-10 10:06:15 +01:00
|
|
|
//var f = $("content-frame");
|
2008-07-25 07:11:22 +02:00
|
|
|
//f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2006-11-23 06:26:49 +01:00
|
|
|
|
|
|
|
var date = new Date();
|
|
|
|
last_article_view = date.getTime() / 1000;
|
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
if (_reload_feedlist_after_view) {
|
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
|
|
|
_reload_feedlist_after_view = false;
|
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
request_counters();
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
2007-03-04 10:54:07 +01:00
|
|
|
|
|
|
|
notify("");
|
2007-08-24 09:53:35 +02:00
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("article_callback2", e, transport);
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function view(id) {
|
2006-05-23 08:55:26 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("loading article: " + id);
|
2009-12-29 16:03:16 +01:00
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
if (offline_mode) return view_offline(id);
|
2009-02-03 17:38:33 +01:00
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var cached_article = cache_find(id);
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("cache check result: " + (cached_article != false));
|
2006-05-23 08:55:26 +02:00
|
|
|
|
|
|
|
enableHotkeys();
|
2009-10-27 14:24:37 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
var query = "?op=view&id=" + param_escape(id);
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
var neighbor_ids = getRelativePostIds(active_post_id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
/* only request uncached articles */
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
var cids_to_request = Array();
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
for (var i = 0; i < neighbor_ids.length; i++) {
|
|
|
|
if (!cache_check(neighbor_ids[i])) {
|
|
|
|
cids_to_request.push(neighbor_ids[i]);
|
2007-05-15 07:41:48 +02:00
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("additional ids: " + cids_to_request.toString());
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
/* additional info for piggyback counters */
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
query = query + "&omode=lt";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&cids=" + cids_to_request.toString();
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var crow = $("RROW-" + id);
|
2007-08-24 09:53:35 +02:00
|
|
|
var article_is_unread = crow.className.match("Unread");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
active_post_id = id;
|
2008-05-22 07:40:57 +02:00
|
|
|
showArticleInHeadlines(id);
|
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
if (!cached_article) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
|
|
|
if (upic) {
|
2010-01-14 21:09:23 +01:00
|
|
|
upic.src = getInitParam("sign_progress");
|
2009-10-07 12:22:44 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
} else if (cached_article && article_is_unread) {
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&mode=prefetch";
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
render_article(cached_article);
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
} else if (cached_article) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&mode=prefetch_old";
|
|
|
|
render_article(cached_article);
|
2008-05-20 17:59:42 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
cache_expire();
|
2007-02-07 18:01:35 +01:00
|
|
|
|
2008-05-20 18:06:12 +02:00
|
|
|
last_requested_article = id;
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 09:53:35 +02:00
|
|
|
onComplete: function(transport) {
|
2009-12-29 20:38:22 +01:00
|
|
|
article_callback2(transport, id);
|
2007-08-24 09:53:35 +02:00
|
|
|
} });
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2008-05-21 09:50:58 +02:00
|
|
|
return false;
|
|
|
|
|
2006-05-23 08:55:26 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("view", e);
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2007-05-15 09:51:57 +02:00
|
|
|
function tMark(id) {
|
|
|
|
return toggleMark(id);
|
|
|
|
}
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
function tPub(id) {
|
|
|
|
return togglePub(id);
|
|
|
|
}
|
|
|
|
|
2007-08-11 06:04:45 +02:00
|
|
|
function tMark_afh_off(effect) {
|
|
|
|
try {
|
|
|
|
var elem = effect.effects[0].element;
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("tMark_afh_off : " + elem.id);
|
2007-08-11 06:04:45 +02:00
|
|
|
|
|
|
|
if (elem) {
|
2007-08-23 15:54:17 +02:00
|
|
|
elem.src = elem.src.replace("mark_set", "mark_unset");
|
|
|
|
elem.alt = __("Star article");
|
2007-08-11 06:04:45 +02:00
|
|
|
Element.show(elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("tMark_afh_off", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function tPub_afh_off(effect) {
|
|
|
|
try {
|
|
|
|
var elem = effect.effects[0].element;
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("tPub_afh_off : " + elem.id);
|
2007-08-11 06:04:45 +02:00
|
|
|
|
|
|
|
if (elem) {
|
2007-08-23 15:54:17 +02:00
|
|
|
elem.src = elem.src.replace("pub_set", "pub_unset");
|
|
|
|
elem.alt = __("Publish article");
|
2007-08-11 06:04:45 +02:00
|
|
|
Element.show(elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("tPub_afh_off", e);
|
|
|
|
}
|
|
|
|
}
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
function toggleMark(id, client_only, no_effects) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2007-08-20 14:37:46 +02:00
|
|
|
try {
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&subop=mark";
|
2007-08-20 14:37:46 +02:00
|
|
|
|
|
|
|
query = query + "&afid=" + getActiveFeedId();
|
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
query = query + "&omode=tl";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
2005-09-09 13:29:04 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var mark_img = $("FMPIC-" + id);
|
2009-01-26 06:20:56 +01:00
|
|
|
|
|
|
|
if (!mark_img) return;
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var vfeedu = $("FEEDU--1");
|
|
|
|
var crow = $("RROW-" + id);
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
if (mark_img.src.match("mark_unset")) {
|
|
|
|
mark_img.src = mark_img.src.replace("mark_unset", "mark_set");
|
|
|
|
mark_img.alt = __("Unstar article");
|
2007-08-20 14:37:46 +02:00
|
|
|
query = query + "&mark=1";
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2009-02-03 19:54:03 +01:00
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET marked = 1 WHERE id = ?", [id]);
|
|
|
|
}
|
|
|
|
|
2007-08-20 14:37:46 +02:00
|
|
|
} else {
|
2007-08-23 15:54:17 +02:00
|
|
|
mark_img.alt = __("Please wait...");
|
2007-08-20 14:37:46 +02:00
|
|
|
query = query + "&mark=0";
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
mark_img.src = mark_img.src.replace("mark_set", "mark_unset");
|
|
|
|
mark_img.alt = __("Star article");
|
2009-02-03 19:54:03 +01:00
|
|
|
|
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET marked = 0 WHERE id = ?", [id]);
|
|
|
|
}
|
|
|
|
|
2007-08-20 09:59:18 +02:00
|
|
|
}
|
2006-05-23 08:35:27 +02:00
|
|
|
|
2009-02-15 20:41:16 +01:00
|
|
|
if (!no_effects) update_local_feedlist_counters();
|
2009-02-04 07:51:31 +01:00
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
if (!client_only) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log(query);
|
2007-08-20 14:58:11 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2007-08-20 14:37:46 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleMark", e);
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2009-03-21 21:11:58 +01:00
|
|
|
function togglePub(id, client_only, no_effects, note) {
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
try {
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&subop=publ";
|
2007-08-10 06:03:56 +02:00
|
|
|
|
|
|
|
query = query + "&afid=" + getActiveFeedId();
|
2009-03-21 21:11:58 +01:00
|
|
|
|
|
|
|
if (note != undefined) {
|
|
|
|
query = query + "¬e=" + param_escape(note);
|
|
|
|
} else {
|
|
|
|
query = query + "¬e=undefined";
|
|
|
|
}
|
2007-08-10 06:03:56 +02:00
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
query = query + "&omode=tl";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
2007-08-10 06:03:56 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var mark_img = $("FPPIC-" + id);
|
2009-01-26 06:20:56 +01:00
|
|
|
|
|
|
|
if (!mark_img) return;
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var vfeedu = $("FEEDU--2");
|
|
|
|
var crow = $("RROW-" + id);
|
2007-08-10 06:03:56 +02:00
|
|
|
|
2009-03-21 21:11:58 +01:00
|
|
|
if (mark_img.src.match("pub_unset") || note != undefined) {
|
2007-08-23 15:54:17 +02:00
|
|
|
mark_img.src = mark_img.src.replace("pub_unset", "pub_set");
|
|
|
|
mark_img.alt = __("Unpublish article");
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&pub=1";
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
} else {
|
2007-08-23 15:54:17 +02:00
|
|
|
mark_img.alt = __("Please wait...");
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&pub=0";
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
mark_img.src = mark_img.src.replace("pub_set", "pub_unset");
|
|
|
|
mark_img.alt = __("Publish article");
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
if (!client_only) {
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2010-01-13 10:48:49 +01:00
|
|
|
|
|
|
|
var note = transport.responseXML.getElementsByTagName("note")[0];
|
|
|
|
|
|
|
|
if (note) {
|
|
|
|
var note_id = note.getAttribute("id");
|
|
|
|
var note_size = note.getAttribute("size");
|
|
|
|
var note_content = note.firstChild.nodeValue;
|
|
|
|
|
|
|
|
var container = $('POSTNOTE-' + note_id);
|
|
|
|
|
|
|
|
cache_invalidate(note_id);
|
|
|
|
|
|
|
|
if (container) {
|
|
|
|
if (note_size == "0") {
|
|
|
|
Element.hide(container);
|
|
|
|
} else {
|
|
|
|
container.innerHTML = note_content;
|
|
|
|
Element.show(container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-08-23 15:54:17 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("togglePub", e);
|
|
|
|
}
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
2005-09-05 14:41:59 +02:00
|
|
|
function moveToPost(mode) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var rows = getVisibleArticleIds();
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
var prev_id = false;
|
|
|
|
var next_id = false;
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if (!$('RROW-' + active_post_id)) {
|
2008-05-16 04:06:57 +02:00
|
|
|
active_post_id = false;
|
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (active_post_id == false) {
|
|
|
|
next_id = getFirstVisibleHeadlineId();
|
|
|
|
prev_id = getLastVisibleHeadlineId();
|
|
|
|
} else {
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
if (rows[i] == active_post_id) {
|
|
|
|
prev_id = rows[i-1];
|
|
|
|
next_id = rows[i+1];
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "next") {
|
|
|
|
if (next_id) {
|
|
|
|
if (isCdmMode()) {
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
cdmExpandArticle(next_id);
|
|
|
|
cdmScrollToArticleId(next_id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
} else {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(next_id);
|
|
|
|
view(next_id, getActiveFeedId());
|
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "prev") {
|
|
|
|
if (prev_id) {
|
|
|
|
if (isCdmMode()) {
|
2010-11-09 18:57:23 +01:00
|
|
|
cdmExpandArticle(prev_id);
|
2008-05-16 04:06:57 +02:00
|
|
|
cdmScrollToArticleId(prev_id);
|
|
|
|
} else {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(prev_id);
|
|
|
|
view(prev_id, getActiveFeedId());
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("moveToPost", e);
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function toggleSelected(id) {
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("RCHK-" + id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + id);
|
2008-02-19 15:49:36 +01:00
|
|
|
if (row) {
|
|
|
|
var nc = row.className;
|
|
|
|
|
|
|
|
if (!nc.match("Selected")) {
|
|
|
|
nc = nc + "Selected";
|
2008-05-16 04:06:57 +02:00
|
|
|
if (cb) {
|
|
|
|
cb.checked = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// In CDM basically last selected article == active article
|
|
|
|
if (isCdmMode()) active_post_id = id;
|
2008-02-19 15:49:36 +01:00
|
|
|
} else {
|
|
|
|
nc = nc.replace("Selected", "");
|
2008-05-16 04:06:57 +02:00
|
|
|
if (cb) {
|
|
|
|
cb.checked = false;
|
|
|
|
}
|
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2005-09-05 14:41:59 +02:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
row.className = nc;
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("toggleSelected", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
|
|
|
|
2008-02-19 16:08:57 +01:00
|
|
|
function toggleUnread_afh(effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
|
|
|
var elem = effect.element;
|
2008-02-19 16:08:57 +01:00
|
|
|
elem.style.backgroundColor = "";
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("toggleUnread_afh", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2008-02-19 16:08:57 +01:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
function toggleUnread(id, cmode, effect) {
|
2006-05-16 15:41:57 +02:00
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + id);
|
2006-05-16 15:41:57 +02:00
|
|
|
if (row) {
|
|
|
|
var nc = row.className;
|
2008-05-16 03:38:32 +02:00
|
|
|
var is_selected = row.className.match("Selected");
|
2006-05-16 15:41:57 +02:00
|
|
|
nc = nc.replace("Unread", "");
|
|
|
|
nc = nc.replace("Selected", "");
|
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
// since we are removing selection from the object, uncheck
|
|
|
|
// corresponding checkbox
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("RCHK-" + id);
|
2008-02-19 15:49:36 +01:00
|
|
|
if (cb) {
|
|
|
|
cb.checked = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
// NOTE: I'm not sure that resetting selection here is a feature -fox
|
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
if (cmode == undefined || cmode == 2) {
|
|
|
|
if (row.className.match("Unread")) {
|
|
|
|
row.className = nc;
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-02-19 16:08:57 +01:00
|
|
|
if (effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
|
|
|
|
afterFinish: toggleUnread_afh,
|
|
|
|
queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
|
2008-02-19 16:08:57 +01:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else {
|
|
|
|
row.className = nc + "Unread";
|
|
|
|
}
|
2009-02-04 20:55:01 +01:00
|
|
|
|
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = not unread "+
|
|
|
|
"WHERE id = ?", [id]);
|
|
|
|
}
|
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else if (cmode == 0) {
|
2006-05-16 15:41:57 +02:00
|
|
|
row.className = nc;
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-02-19 16:13:40 +01:00
|
|
|
if (effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
|
2008-02-19 16:13:40 +01:00
|
|
|
afterFinish: toggleUnread_afh,
|
2008-02-19 15:49:36 +01:00
|
|
|
queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
|
2008-02-19 16:13:40 +01:00
|
|
|
}
|
2009-02-04 20:55:01 +01:00
|
|
|
|
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = 0 "+
|
|
|
|
"WHERE id = ?", [id]);
|
|
|
|
}
|
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else if (cmode == 1) {
|
2006-05-16 15:41:57 +02:00
|
|
|
row.className = nc + "Unread";
|
2009-02-04 20:55:01 +01:00
|
|
|
|
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = 1 "+
|
|
|
|
"WHERE id = ?", [id]);
|
|
|
|
}
|
|
|
|
|
2006-05-16 15:41:57 +02:00
|
|
|
}
|
|
|
|
|
2009-02-04 20:55:01 +01:00
|
|
|
update_local_feedlist_counters();
|
|
|
|
|
2008-05-16 03:38:32 +02:00
|
|
|
// Disable unmarking as selected for the time being (16.05.08) -fox
|
|
|
|
if (is_selected) row.className = row.className + "Selected";
|
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
if (cmode == undefined) cmode = 2;
|
2006-05-16 15:41:57 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
|
2006-05-16 15:41:57 +02:00
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
// notify_progress("Loading, please wait...");
|
2007-03-04 10:54:07 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2006-05-16 15:41:57 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-18 10:09:52 +01:00
|
|
|
function selectionRemoveLabel(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// var ok = confirm(__("Remove selected articles from label?"));
|
2009-01-18 10:09:52 +01:00
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// if (ok) {
|
2009-01-18 10:09:52 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=removeFromLabel&ids=" +
|
2009-01-18 10:09:52 +01:00
|
|
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
console.log(query);
|
|
|
|
|
2009-01-18 10:09:52 +01:00
|
|
|
// notify_progress("Loading, please wait...");
|
|
|
|
|
2009-01-18 11:25:06 +01:00
|
|
|
cache_invalidate("F:" + (-11 - id));
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-01-18 10:09:52 +01:00
|
|
|
onComplete: function(transport) {
|
2009-01-18 16:29:25 +01:00
|
|
|
show_labels_in_headlines(transport);
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2009-01-18 10:09:52 +01:00
|
|
|
} });
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// }
|
2009-01-18 10:09:52 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionAssignLabel", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-18 09:47:34 +01:00
|
|
|
function selectionAssignLabel(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// var ok = confirm(__("Assign selected articles to label?"));
|
2009-01-18 09:47:34 +01:00
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// if (ok) {
|
2009-01-18 09:47:34 +01:00
|
|
|
|
2009-01-18 11:25:06 +01:00
|
|
|
cache_invalidate("F:" + (-11 - id));
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=assignToLabel&ids=" +
|
2009-01-18 09:47:34 +01:00
|
|
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
console.log(query);
|
|
|
|
|
2009-01-18 09:47:34 +01:00
|
|
|
// notify_progress("Loading, please wait...");
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-01-18 09:47:34 +01:00
|
|
|
onComplete: function(transport) {
|
2009-01-18 16:07:31 +01:00
|
|
|
show_labels_in_headlines(transport);
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2009-01-18 09:47:34 +01:00
|
|
|
} });
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// }
|
2009-01-18 09:47:34 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionAssignLabel", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionToggleUnread(set_state, callback_func, no_error) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2007-05-11 07:51:47 +02:00
|
|
|
if (rows.length == 0 && !no_error) {
|
2007-03-26 07:31:42 +02:00
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
for (i = 0; i < rows.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + rows[i]);
|
2005-12-01 13:52:18 +01:00
|
|
|
if (row) {
|
|
|
|
var nc = row.className;
|
|
|
|
nc = nc.replace("Unread", "");
|
|
|
|
nc = nc.replace("Selected", "");
|
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
if (set_state == undefined) {
|
|
|
|
if (row.className.match("Unread")) {
|
|
|
|
row.className = nc + "Selected";
|
|
|
|
} else {
|
|
|
|
row.className = nc + "UnreadSelected";
|
|
|
|
}
|
2009-02-15 20:41:16 +01:00
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = NOT unread WHERE id = ?",
|
|
|
|
[rows[i]]);
|
|
|
|
}
|
2007-08-19 07:13:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (set_state == false) {
|
2005-12-01 13:52:18 +01:00
|
|
|
row.className = nc + "Selected";
|
2009-02-15 20:41:16 +01:00
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = 0 WHERE id = ?",
|
|
|
|
[rows[i]]);
|
|
|
|
}
|
2007-08-19 07:13:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (set_state == true) {
|
2005-12-01 13:52:18 +01:00
|
|
|
row.className = nc + "UnreadSelected";
|
2009-02-15 20:41:16 +01:00
|
|
|
if (db) {
|
|
|
|
db.execute("UPDATE articles SET unread = 1 WHERE id = ?",
|
|
|
|
[rows[i]]);
|
|
|
|
}
|
2005-12-01 13:52:18 +01:00
|
|
|
}
|
|
|
|
}
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2009-02-15 20:41:16 +01:00
|
|
|
update_local_feedlist_counters();
|
|
|
|
|
2006-08-02 10:47:34 +02:00
|
|
|
var cmode = "";
|
|
|
|
|
|
|
|
if (set_state == undefined) {
|
|
|
|
cmode = "2";
|
|
|
|
} else if (set_state == true) {
|
|
|
|
cmode = "1";
|
|
|
|
} else if (set_state == false) {
|
|
|
|
cmode = "0";
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=" + cmode + "&ids=" + param_escape(rows.toString());
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2007-03-04 10:54:07 +01:00
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
catchup_callback2(transport, callback_func);
|
|
|
|
} });
|
2005-11-27 15:56:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleUnread", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionToggleMarked() {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2005-12-13 06:52:32 +01:00
|
|
|
|
2007-03-26 07:31:42 +02:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
for (i = 0; i < rows.length; i++) {
|
2007-08-23 15:54:17 +02:00
|
|
|
toggleMark(rows[i], true, true);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
|
2009-02-15 20:41:16 +01:00
|
|
|
update_local_feedlist_counters();
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=markSelected&ids=" +
|
2005-11-27 15:56:10 +01:00
|
|
|
param_escape(rows.toString()) + "&cmode=2";
|
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&afid=" + getActiveFeedId();
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
query = query + "&omode=lc";
|
2007-08-10 06:03:56 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2005-11-27 15:56:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleMarked", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionTogglePublished() {
|
2007-08-09 14:45:30 +02:00
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < rows.length; i++) {
|
2007-08-23 15:54:17 +02:00
|
|
|
togglePub(rows[i], true, true);
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=publishSelected&ids=" +
|
2007-08-09 14:45:30 +02:00
|
|
|
param_escape(rows.toString()) + "&cmode=2";
|
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&afid=" + getActiveFeedId();
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
query = query + "&omode=lc";
|
2007-08-10 06:03:56 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionToggleMarked", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
function getSelectedArticleIds2() {
|
2005-12-13 06:52:32 +01:00
|
|
|
var sel_articles = new Array();
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var children;
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
var children = $("headlinesInnerContainer").childNodes;
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
for (i = 0; i < children.length; i++) {
|
|
|
|
var child = children[i];
|
2005-12-13 06:52:32 +01:00
|
|
|
|
2008-05-28 10:43:17 +02:00
|
|
|
if (child.id && child.id.match("RROW-") && child.className.match("Selected")) {
|
2005-12-13 06:52:32 +01:00
|
|
|
var c_id = child.id.replace("RROW-", "");
|
|
|
|
sel_articles.push(c_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_articles;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
function getLoadedArticleIds() {
|
2007-08-22 06:45:01 +02:00
|
|
|
var sel_articles = new Array();
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
var children = $("headlinesInnerContainer").childNodes;
|
2008-05-19 12:24:46 +02:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (!children) return sel_articles;
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
for (i = 0; i < children.length; i++) {
|
|
|
|
var child = children[i];
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (child.id && child.id.match("RROW-")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
var c_id = child.id.replace("RROW-", "");
|
|
|
|
sel_articles.push(c_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_articles;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
// mode = all,none,unread,invert
|
|
|
|
function selectArticles(mode) {
|
|
|
|
try {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var children;
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
var children = $("headlinesInnerContainer").childNodes;
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
for (i = 0; i < children.length; i++) {
|
|
|
|
var child = children[i];
|
|
|
|
|
|
|
|
if (child.id && child.id.match("RROW-")) {
|
|
|
|
var aid = child.id.replace("RROW-", "");
|
|
|
|
|
|
|
|
var cb = $("RCHK-" + aid);
|
|
|
|
|
|
|
|
if (mode == "all") {
|
|
|
|
if (!child.className.match("Selected")) {
|
|
|
|
child.className = child.className + "Selected";
|
|
|
|
cb.checked = true;
|
|
|
|
}
|
|
|
|
} else if (mode == "unread") {
|
|
|
|
if (child.className.match("Unread") && !child.className.match("Selected")) {
|
|
|
|
child.className = child.className + "Selected";
|
|
|
|
cb.checked = true;
|
|
|
|
}
|
|
|
|
} else if (mode == "invert") {
|
|
|
|
if (child.className.match("Selected")) {
|
|
|
|
child.className = child.className.replace("Selected", "");
|
|
|
|
cb.checked = false;
|
|
|
|
} else {
|
|
|
|
child.className = child.className + "Selected";
|
|
|
|
cb.checked = true;
|
|
|
|
}
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
|
|
|
child.className = child.className.replace("Selected", "");
|
|
|
|
cb.checked = false;
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectArticles", e);
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 10:33:09 +01:00
|
|
|
function catchupPage() {
|
2006-08-02 10:47:34 +02:00
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2007-08-08 15:17:30 +02:00
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
var str = __("Mark all visible articles in %s as read?");
|
|
|
|
|
|
|
|
str = str.replace("%s", fn);
|
2007-08-08 15:17:30 +02:00
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('all');
|
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true)
|
|
|
|
selectArticles('none');
|
2006-02-24 10:33:09 +01:00
|
|
|
}
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
function deleteSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var str;
|
|
|
|
var op;
|
|
|
|
|
|
|
|
if (getActiveFeedId() != 0) {
|
|
|
|
str = __("Delete %d selected articles in %s?");
|
|
|
|
} else {
|
|
|
|
str = __("Delete %d selected articles?");
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop=delete&ids=" + param_escape(rows);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-12-28 15:23:01 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
viewCurrentFeed();
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
2009-12-28 22:09:04 +01:00
|
|
|
exception_error("deleteSelection", e);
|
2009-12-28 15:23:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function archiveSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var str;
|
|
|
|
var op;
|
|
|
|
|
|
|
|
if (getActiveFeedId() != 0) {
|
|
|
|
str = __("Archive %d selected articles in %s?");
|
|
|
|
op = "archive";
|
|
|
|
} else {
|
|
|
|
str = __("Move %d archived articles back?");
|
|
|
|
op = "unarchive";
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop="+op+"&ids=" + param_escape(rows);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2009-12-28 22:09:04 +01:00
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
cache_invalidate(rows[i]);
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-12-28 15:23:01 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
viewCurrentFeed();
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("archiveSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
function catchupSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2007-08-19 07:13:45 +02:00
|
|
|
|
2007-08-26 08:25:48 +02:00
|
|
|
var str = __("Mark %d selected articles in %s as read?");
|
2007-08-19 07:13:45 +02:00
|
|
|
|
2007-08-26 08:25:48 +02:00
|
|
|
str = str.replace("%d", rows.length);
|
2007-08-19 07:13:45 +02:00
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true)
|
2007-08-19 07:13:45 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
function editArticleTags(id, feed_id, cdm_enabled) {
|
2010-01-06 12:17:28 +01:00
|
|
|
displayDlg('editArticleTags', id,
|
|
|
|
function () {
|
2010-11-07 10:55:52 +01:00
|
|
|
$("tags_str").focus();
|
|
|
|
|
|
|
|
new Ajax.Autocompleter('tags_str', 'tags_choices',
|
2010-01-06 12:17:28 +01:00
|
|
|
"backend.php?op=rpc&subop=completeTags",
|
|
|
|
{ tokens: ',', paramName: "search" });
|
|
|
|
});
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function editTagsSave() {
|
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
notify_progress("Saving article tags...");
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
var form = document.forms["tag_edit_form"];
|
|
|
|
|
|
|
|
var query = Form.serialize("tag_edit_form");
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop=setArticleTags&" + query;
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log(query);
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-26 08:39:46 +02:00
|
|
|
onComplete: function(transport) {
|
2010-01-13 10:48:49 +01:00
|
|
|
try {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("tags saved...");
|
2010-01-13 10:48:49 +01:00
|
|
|
|
|
|
|
closeInfoBox();
|
|
|
|
notify("");
|
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
_reload_feedlist_after_view = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var tags_str = transport.responseXML.getElementsByTagName("tags-str")[0];
|
|
|
|
|
|
|
|
if (tags_str) {
|
|
|
|
var id = tags_str.getAttribute("id");
|
|
|
|
|
|
|
|
if (id) {
|
|
|
|
var tags = $("ATSTR-" + id);
|
|
|
|
if (tags) {
|
|
|
|
tags.innerHTML = tags_str.firstChild.nodeValue;
|
|
|
|
}
|
2010-01-18 11:55:28 +01:00
|
|
|
|
|
|
|
cache_invalidate(id);
|
2010-01-13 10:48:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("editTagsSave", e);
|
|
|
|
}
|
2007-08-26 08:39:46 +02:00
|
|
|
} });
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
2006-12-07 10:27:34 +01:00
|
|
|
|
|
|
|
function editTagsInsert() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var form = document.forms["tag_edit_form"];
|
|
|
|
|
|
|
|
var found_tags = form.found_tags;
|
|
|
|
var tags_str = form.tags_str;
|
|
|
|
|
|
|
|
var tag = found_tags[found_tags.selectedIndex].value;
|
|
|
|
|
|
|
|
if (tags_str.value.length > 0 &&
|
|
|
|
tags_str.value.lastIndexOf(", ") != tags_str.value.length - 2) {
|
|
|
|
|
|
|
|
tags_str.value = tags_str.value + ", ";
|
|
|
|
}
|
|
|
|
|
|
|
|
tags_str.value = tags_str.value + tag + ", ";
|
|
|
|
|
|
|
|
found_tags.selectedIndex = 0;
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("editTagsInsert", e);
|
2006-12-07 10:27:34 +01:00
|
|
|
}
|
|
|
|
}
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
function cdmScrollToArticleId(id) {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var ctr = $("headlinesInnerContainer");
|
|
|
|
var e = $("RROW-" + id);
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
if (!e || !ctr) return;
|
|
|
|
|
|
|
|
ctr.scrollTop = e.offsetTop;
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmScrollToArticleId", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:12:33 +01:00
|
|
|
function cdmWatchdog() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ctr = $("headlinesInnerContainer");
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2007-01-30 16:29:22 +01:00
|
|
|
if (!ctr) return;
|
|
|
|
|
2007-01-25 10:12:33 +01:00
|
|
|
var ids = new Array();
|
|
|
|
|
|
|
|
var e = ctr.firstChild;
|
|
|
|
|
|
|
|
while (e) {
|
|
|
|
if (e.className && e.className == "cdmArticleUnread" && e.id &&
|
|
|
|
e.id.match("RROW-")) {
|
|
|
|
|
|
|
|
// article fits in viewport OR article is longer than viewport and
|
|
|
|
// its bottom is visible
|
|
|
|
|
|
|
|
if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
|
|
|
|
ctr.scrollTop + ctr.offsetHeight) {
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log(e.id + " is visible " + e.offsetTop + "." +
|
2007-01-25 10:12:33 +01:00
|
|
|
// (e.offsetTop + e.offsetHeight) + " vs " + ctr.scrollTop + "." +
|
|
|
|
// (ctr.scrollTop + ctr.offsetHeight));
|
|
|
|
|
|
|
|
ids.push(e.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
} else if (e.offsetHeight > ctr.offsetHeight &&
|
|
|
|
e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
|
|
|
|
e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
|
|
|
|
|
|
|
|
ids.push(e.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-26 06:36:19 +01:00
|
|
|
// method 2: article bottom is visible and is in upper 1/2 of the viewport
|
|
|
|
|
|
|
|
/* if (e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
|
|
|
|
e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight/2) {
|
|
|
|
|
|
|
|
ids.push(e.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
} */
|
|
|
|
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
e = e.nextSibling;
|
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("cdmWatchdog, ids= " + ids.toString());
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
if (ids.length > 0) {
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids[i]);
|
2007-01-25 10:12:33 +01:00
|
|
|
if (e) {
|
|
|
|
e.className = e.className.replace("Unread", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0" + "&ids=" + param_escape(ids.toString());
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-26 06:36:19 +01:00
|
|
|
_cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 4000);
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmWatchdog", e);
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
function cache_inject(id, article, param) {
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
try {
|
|
|
|
if (!cache_check_param(id, param)) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_article: miss: " + id + " [p=" + param + "]");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
var date = new Date();
|
|
|
|
var ts = Math.round(date.getTime() / 1000);
|
|
|
|
|
|
|
|
if (db) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
db.execute("INSERT INTO cache (id, article, param, added) VALUES (?, ?, ?, ?)",
|
|
|
|
[id, article, param, ts]);
|
|
|
|
} else {
|
|
|
|
|
2010-11-07 10:54:43 +01:00
|
|
|
var cache_obj = {};
|
2009-02-02 13:02:10 +01:00
|
|
|
|
|
|
|
cache_obj["id"] = id;
|
|
|
|
cache_obj["data"] = article;
|
|
|
|
cache_obj["param"] = param;
|
2010-11-07 10:54:43 +01:00
|
|
|
|
|
|
|
if (param) id = id + ":" + param;
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
cache_added["TS:" + id] = ts;
|
|
|
|
|
2010-11-07 10:54:43 +01:00
|
|
|
if (has_local_storage())
|
|
|
|
localStorage.setItem(id, JSON.stringify(cache_obj));
|
|
|
|
else
|
|
|
|
article_cache.push(cache_obj);
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_article: hit: " + id + " [p=" + param + "]");
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cache_inject", e);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_find(id) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
|
|
|
if (db) {
|
2009-02-02 13:14:34 +01:00
|
|
|
var rs = db.execute("SELECT article FROM cache WHERE id = ?", [id]);
|
2009-02-04 12:20:25 +01:00
|
|
|
var a = false;
|
2009-02-02 13:14:34 +01:00
|
|
|
|
|
|
|
if (rs.isValidRow()) {
|
2009-02-04 12:20:25 +01:00
|
|
|
var a = rs.field(0);
|
2009-02-02 13:14:34 +01:00
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2009-02-04 12:20:25 +01:00
|
|
|
rs.close();
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-07 10:54:43 +01:00
|
|
|
|
|
|
|
if (has_local_storage()) {
|
|
|
|
var cache_obj = localStorage.getItem(id);
|
|
|
|
|
|
|
|
if (cache_obj) {
|
|
|
|
cache_obj = JSON.parse(cache_obj);
|
|
|
|
|
|
|
|
if (cache_obj)
|
|
|
|
return cache_obj['data'];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return article_cache[i]["data"];
|
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
return false;
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
2007-11-21 10:05:04 +01:00
|
|
|
function cache_find_param(id, param) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
|
|
|
if (db) {
|
|
|
|
var rs = db.execute("SELECT article FROM cache WHERE id = ? AND param = ?",
|
|
|
|
[id, param]);
|
2009-02-04 12:20:25 +01:00
|
|
|
var a = false;
|
2009-02-02 13:02:10 +01:00
|
|
|
|
|
|
|
if (rs.isValidRow()) {
|
2009-02-04 12:20:25 +01:00
|
|
|
a = rs.field(0);
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
|
|
|
|
2009-02-04 12:20:25 +01:00
|
|
|
rs.close();
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-07 10:54:43 +01:00
|
|
|
|
|
|
|
if (has_local_storage()) {
|
2010-11-10 14:27:56 +01:00
|
|
|
|
|
|
|
if (param) id = id + ":" + param;
|
|
|
|
|
|
|
|
var cache_obj = localStorage.getItem(id);
|
2010-11-07 10:54:43 +01:00
|
|
|
|
|
|
|
if (cache_obj) {
|
|
|
|
cache_obj = JSON.parse(cache_obj);
|
|
|
|
|
|
|
|
if (cache_obj)
|
|
|
|
return cache_obj['data'];
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
|
|
|
|
return article_cache[i]["data"];
|
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
function cache_check(id) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
|
|
|
if (db) {
|
|
|
|
var rs = db.execute("SELECT COUNT(*) AS c FROM cache WHERE id = ?",
|
|
|
|
[id]);
|
2009-02-04 12:20:25 +01:00
|
|
|
var a = false;
|
2009-02-02 13:02:10 +01:00
|
|
|
|
|
|
|
if (rs.isValidRow()) {
|
2009-02-04 12:20:25 +01:00
|
|
|
a = rs.field(0) != "0";
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
|
|
|
|
2009-02-04 12:20:25 +01:00
|
|
|
rs.close();
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-10 14:27:56 +01:00
|
|
|
if (has_local_storage()) {
|
2010-11-07 10:54:43 +01:00
|
|
|
if (localStorage.getItem(id))
|
2010-11-10 14:27:56 +01:00
|
|
|
return true;
|
2010-11-07 10:54:43 +01:00
|
|
|
} else {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
function cache_check_param(id, param) {
|
2007-11-21 10:05:04 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
if (db) {
|
|
|
|
var rs = db.execute("SELECT COUNT(*) AS c FROM cache WHERE id = ? AND param = ?",
|
|
|
|
[id, param]);
|
2009-02-04 12:20:25 +01:00
|
|
|
var a = false;
|
2007-11-21 10:05:04 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
if (rs.isValidRow()) {
|
2009-02-04 12:20:25 +01:00
|
|
|
a = rs.field(0) != "0";
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
|
|
|
|
2009-02-04 12:20:25 +01:00
|
|
|
rs.close();
|
|
|
|
|
|
|
|
return a;
|
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
if (has_local_storage()) {
|
|
|
|
|
|
|
|
if (param) id = id + ":" + param;
|
|
|
|
|
|
|
|
if (localStorage.getItem(id))
|
|
|
|
return true;
|
|
|
|
|
2010-11-07 10:54:43 +01:00
|
|
|
} else {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
|
|
|
|
return true;
|
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
function cache_expire() {
|
2009-02-02 13:14:34 +01:00
|
|
|
if (db) {
|
|
|
|
var date = new Date();
|
|
|
|
var ts = Math.round(date.getTime() / 1000);
|
|
|
|
|
2009-02-02 14:58:02 +01:00
|
|
|
db.execute("DELETE FROM cache WHERE added < ? - 1800 AND id LIKE 'FEEDLIST'", [ts]);
|
|
|
|
db.execute("DELETE FROM cache WHERE added < ? - 600 AND (id LIKE 'F:%' OR id LIKE 'C:%')", [ts]);
|
|
|
|
db.execute("DELETE FROM cache WHERE added < ? - 86400", [ts]);
|
|
|
|
|
2009-02-02 13:14:34 +01:00
|
|
|
|
|
|
|
} else {
|
2010-11-07 10:54:43 +01:00
|
|
|
if (has_local_storage()) {
|
2010-11-10 14:27:56 +01:00
|
|
|
|
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
for (var i = 0; i < localStorage.length; i++) {
|
2010-11-10 14:33:15 +01:00
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
var id = localStorage.key(i);
|
2010-11-10 14:33:15 +01:00
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
if (timestamp - cache_added["TS:" + id] > 180) {
|
|
|
|
localStorage.removeItem(id);
|
2010-11-10 14:27:56 +01:00
|
|
|
}
|
2010-11-07 10:54:43 +01:00
|
|
|
}
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-07 10:54:43 +01:00
|
|
|
} else {
|
|
|
|
while (article_cache.length > 25) {
|
|
|
|
article_cache.shift();
|
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-05-15 13:41:39 +02:00
|
|
|
|
2010-01-19 16:22:35 +01:00
|
|
|
function cache_flush() {
|
2010-11-10 12:48:35 +01:00
|
|
|
if (db) {
|
|
|
|
db.execute("DELETE FROM cache");
|
|
|
|
} else if (has_local_storage()) {
|
|
|
|
localStorage.clear();
|
|
|
|
} else {
|
|
|
|
article_cache = new Array();
|
|
|
|
}
|
2008-02-23 06:44:13 +01:00
|
|
|
}
|
|
|
|
|
2007-05-15 13:41:39 +02:00
|
|
|
function cache_invalidate(id) {
|
2007-05-17 09:23:15 +02:00
|
|
|
try {
|
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
if (db) {
|
|
|
|
rs = db.execute("DELETE FROM cache WHERE id = ?", [id]);
|
|
|
|
return rs.rowsAffected != 0;
|
|
|
|
} else {
|
|
|
|
|
2010-11-07 10:54:43 +01:00
|
|
|
if (has_local_storage()) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
var found = false;
|
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
for (var i = 0; i < localStorage.length; i++) {
|
|
|
|
var key = localStorage.key(i);
|
2010-11-10 14:27:56 +01:00
|
|
|
|
|
|
|
// console.warn("cache_invalidate: " + key_id + " cmp " + id);
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
if (key == id || key.indexOf(id + ":") == 0) {
|
|
|
|
localStorage.removeItem(key);
|
2010-11-10 14:27:56 +01:00
|
|
|
found = true;
|
|
|
|
break;
|
|
|
|
}
|
2010-11-07 10:54:43 +01:00
|
|
|
}
|
2010-11-10 14:27:56 +01:00
|
|
|
|
|
|
|
return found;
|
|
|
|
|
2010-11-07 10:54:43 +01:00
|
|
|
} else {
|
|
|
|
var i = 0
|
|
|
|
|
|
|
|
while (i < article_cache.length) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_invalidate: removed id " + id);
|
2010-11-07 10:54:43 +01:00
|
|
|
article_cache.splice(i, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
i++;
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-17 09:23:15 +02:00
|
|
|
}
|
2007-05-15 13:41:39 +02:00
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_invalidate: id not found: " + id);
|
2007-05-17 09:23:15 +02:00
|
|
|
return false;
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cache_invalidate", e);
|
2007-05-15 13:41:39 +02:00
|
|
|
}
|
|
|
|
}
|
2007-07-20 08:01:18 +02:00
|
|
|
|
|
|
|
function getActiveArticleId() {
|
|
|
|
return active_post_id;
|
|
|
|
}
|
2007-08-09 08:56:11 +02:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
function preloadBatchedArticles() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=getArticles&ids=" +
|
|
|
|
preload_id_batch.toString();
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
preload_id_batch = [];
|
|
|
|
|
|
|
|
var articles = transport.responseXML.getElementsByTagName("article");
|
|
|
|
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var id = articles[i].getAttribute("id");
|
|
|
|
if (!cache_check(id)) {
|
|
|
|
cache_inject(id, articles[i].firstChild.nodeValue);
|
|
|
|
console.log("preloaded article: " + id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("preloadBatchedArticles", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
function preloadArticleUnderPointer(id) {
|
|
|
|
try {
|
2008-06-24 09:43:20 +02:00
|
|
|
if (getInitParam("bw_limit") == "1") return;
|
|
|
|
|
2008-05-18 10:52:42 +02:00
|
|
|
if (post_under_pointer == id && !cache_check(id)) {
|
2008-05-18 10:51:07 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("trying to preload article " + id);
|
2008-05-18 10:51:07 +02:00
|
|
|
|
|
|
|
var neighbor_ids = getRelativePostIds(id, 1);
|
|
|
|
|
|
|
|
/* only request uncached articles */
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
if (preload_id_batch.indexOf(id) == -1) {
|
|
|
|
for (var i = 0; i < neighbor_ids.length; i++) {
|
|
|
|
if (!cache_check(neighbor_ids[i])) {
|
|
|
|
preload_id_batch.push(neighbor_ids[i]);
|
|
|
|
}
|
2008-05-18 10:51:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
if (preload_id_batch.indexOf(id) == -1)
|
|
|
|
preload_id_batch.push(id);
|
2008-05-18 10:51:07 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("preload ids batch: " + preload_id_batch.toString());
|
2009-12-29 16:49:27 +01:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
window.clearTimeout(preload_timeout_id);
|
|
|
|
preload_batch_timeout_id = window.setTimeout('preloadBatchedArticles()', 1000);
|
2010-01-13 10:48:49 +01:00
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("preloadArticleUnderPointer", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function postMouseIn(id) {
|
|
|
|
try {
|
2008-05-18 10:51:07 +02:00
|
|
|
if (post_under_pointer != id) {
|
|
|
|
post_under_pointer = id;
|
|
|
|
if (!isCdmMode()) {
|
|
|
|
window.setTimeout("preloadArticleUnderPointer(" + id + ")", 250);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("postMouseIn", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function postMouseOut(id) {
|
|
|
|
try {
|
|
|
|
post_under_pointer = false;
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("postMouseOut", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-09 09:36:04 +02:00
|
|
|
function headlines_scroll_handler() {
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("headlinesInnerContainer");
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2007-08-29 16:10:41 +02:00
|
|
|
var toolbar_form = document.forms["main_toolbar_form"];
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
// console.log((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " +
|
|
|
|
// _infscroll_disable);
|
2008-02-19 16:01:09 +01:00
|
|
|
|
2010-01-04 10:12:31 +01:00
|
|
|
if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
|
|
|
|
if (!_infscroll_disable) {
|
|
|
|
viewNextFeedPage();
|
2007-08-24 07:31:57 +02:00
|
|
|
}
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("headlines_scroll_handler", e);
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
function catchupRelativeToArticle(below) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2009-02-02 09:49:00 +01:00
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
if (!getActiveArticleId()) {
|
|
|
|
alert(__("No article is selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var visible_ids = getVisibleArticleIds();
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
var ids_to_mark = new Array();
|
|
|
|
|
|
|
|
if (!below) {
|
|
|
|
for (var i = 0; i < visible_ids.length; i++) {
|
|
|
|
if (visible_ids[i] != getActiveArticleId()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + visible_ids[i]);
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
if (e && e.className.match("Unread")) {
|
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (var i = visible_ids.length-1; i >= 0; i--) {
|
|
|
|
if (visible_ids[i] != getActiveArticleId()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + visible_ids[i]);
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
if (e && e.className.match("Unread")) {
|
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ids_to_mark.length == 0) {
|
|
|
|
alert(__("No articles found to mark"));
|
|
|
|
} else {
|
|
|
|
var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
|
|
|
|
|
2010-10-08 21:27:51 +02:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
for (var i = 0; i < ids_to_mark.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids_to_mark[i]);
|
2007-08-22 06:45:01 +02:00
|
|
|
e.className = e.className.replace("Unread", "");
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0" + "&ids=" + param_escape(ids_to_mark.toString());
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-30 03:01:23 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
catchup_callback2(transport);
|
|
|
|
} });
|
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupRelativeToArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
function cdmExpandArticle(id) {
|
2007-10-18 04:55:44 +02:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
var elem = $("CICD-" + active_post_id);
|
2008-05-21 05:47:14 +02:00
|
|
|
|
2010-11-12 23:41:18 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
|
|
|
|
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
if (id == active_post_id && Element.visible(elem))
|
|
|
|
return true;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles("none");
|
2010-11-09 18:57:23 +01:00
|
|
|
|
|
|
|
var old_offset = $("RROW-" + id).offsetTop;
|
|
|
|
|
2010-11-11 10:19:28 +01:00
|
|
|
if (active_post_id && elem && !getInitParam("cdm_expanded")) {
|
2010-11-09 18:57:23 +01:00
|
|
|
Element.hide(elem);
|
|
|
|
Element.show("CEXC-" + active_post_id);
|
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
active_post_id = id;
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
elem = $("CICD-" + id);
|
|
|
|
|
|
|
|
if (!Element.visible(elem)) {
|
|
|
|
Element.show(elem);
|
|
|
|
Element.hide("CEXC-" + id);
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
if ($("CWRAP-" + id).innerHTML == "") {
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
$("FUPDPIC-" + id).src = "images/indicator_tiny.gif";
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
$("CWRAP-" + id).innerHTML = "<div class=\"insensitive\">" +
|
|
|
|
__("Loading, please wait...") + "</div>";
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=cdmGetArticle&id=" + param_escape(id);
|
|
|
|
|
|
|
|
//console.log(query);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
$("FUPDPIC-" + id).src = 'images/blank_icon.gif';
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var article = transport.responseXML.getElementsByTagName("article")[0];
|
|
|
|
var recv_id = article.getAttribute("id");
|
|
|
|
|
|
|
|
if (recv_id == id)
|
|
|
|
$("CWRAP-" + id).innerHTML = article.firstChild.nodeValue;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$("CWRAP-" + id).innerHTML = __("Unable to load article.");
|
|
|
|
|
|
|
|
}
|
|
|
|
}});
|
|
|
|
|
|
|
|
}
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var new_offset = $("RROW-" + id).offsetTop;
|
|
|
|
|
|
|
|
$("headlinesInnerContainer").scrollTop += (new_offset-old_offset);
|
|
|
|
|
|
|
|
if ($("RROW-" + id).offsetTop != old_offset)
|
|
|
|
$("headlinesInnerContainer").scrollTop = new_offset;
|
|
|
|
|
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
toggleSelected(id);
|
2007-10-18 04:55:44 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
2010-09-13 13:40:35 +02:00
|
|
|
exception_error("cdmExpandArticle", e);
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
return false;
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2008-05-04 09:41:51 +02:00
|
|
|
function fixHeadlinesOrder(ids) {
|
|
|
|
try {
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids[i]);
|
2008-05-04 09:41:51 +02:00
|
|
|
|
|
|
|
if (e) {
|
|
|
|
if (i % 2 == 0) {
|
|
|
|
e.className = e.className.replace("even", "odd");
|
|
|
|
} else {
|
|
|
|
e.className = e.className.replace("odd", "even");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("fixHeadlinesOrder", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function getArticleUnderPointer() {
|
|
|
|
return post_under_pointer;
|
2008-05-04 08:46:32 +02:00
|
|
|
}
|
2008-09-05 09:36:57 +02:00
|
|
|
|
|
|
|
function zoomToArticle(id) {
|
|
|
|
try {
|
|
|
|
var w = window.open("backend.php?op=view&mode=zoom&id=" + param_escape(id),
|
|
|
|
"ttrss_zoom_" + id,
|
|
|
|
"status=0,toolbar=0,location=0,width=450,height=300,scrollbars=1,menubar=0");
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("zoomToArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2008-09-09 09:08:47 +02:00
|
|
|
|
|
|
|
function scrollArticle(offset) {
|
|
|
|
try {
|
|
|
|
if (!isCdmMode()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var ci = $("content-insert");
|
2008-09-09 09:08:47 +02:00
|
|
|
if (ci) {
|
|
|
|
ci.scrollTop += offset;
|
|
|
|
}
|
|
|
|
} else {
|
2009-02-10 10:06:15 +01:00
|
|
|
var hi = $("headlinesInnerContainer");
|
2008-09-09 09:08:47 +02:00
|
|
|
if (hi) {
|
|
|
|
hi.scrollTop += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("scrollArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2009-01-18 16:07:31 +01:00
|
|
|
|
|
|
|
function show_labels_in_headlines(transport) {
|
|
|
|
try {
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var info = transport.responseXML.getElementsByTagName("info-for-headlines")[0];
|
|
|
|
|
|
|
|
var elems = info.getElementsByTagName("entry");
|
|
|
|
|
|
|
|
for (var l = 0; l < elems.length; l++) {
|
|
|
|
var e_id = elems[l].getAttribute("id");
|
|
|
|
|
|
|
|
if (e_id) {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ctr = $("HLLCTR-" + e_id);
|
2009-01-18 16:07:31 +01:00
|
|
|
|
|
|
|
if (ctr) {
|
|
|
|
ctr.innerHTML = elems[l].firstChild.nodeValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("show_labels_in_headlines", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
function toggleHeadlineActions() {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("headlineActionsBody");
|
|
|
|
var p = $("headlineActionsDrop");
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
if (!Element.visible(e)) {
|
|
|
|
Element.show(e);
|
|
|
|
} else {
|
|
|
|
Element.hide(e);
|
|
|
|
}
|
|
|
|
|
2009-01-20 19:04:52 +01:00
|
|
|
e.scrollTop = 0;
|
2009-01-20 18:46:21 +01:00
|
|
|
e.style.left = (p.offsetLeft + 1) + "px";
|
2009-02-12 16:50:32 +01:00
|
|
|
e.style.top = (p.offsetTop + p.offsetHeight + 2) + "px";
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleHeadlineActions", e);
|
|
|
|
}
|
|
|
|
}
|
2009-03-21 21:11:58 +01:00
|
|
|
|
|
|
|
function publishWithNote(id, def_note) {
|
|
|
|
try {
|
|
|
|
if (!def_note) def_note = '';
|
|
|
|
|
|
|
|
var note = prompt(__("Please enter a note for this article:"), def_note);
|
|
|
|
|
|
|
|
if (note != undefined) {
|
|
|
|
togglePub(id, false, false, note);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("publishWithNote", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-05 22:47:02 +01:00
|
|
|
|
|
|
|
function emailArticle(id) {
|
|
|
|
try {
|
2010-11-06 09:13:07 +01:00
|
|
|
if (!id) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id = ids.toString();
|
|
|
|
}
|
|
|
|
|
2010-11-05 22:47:02 +01:00
|
|
|
displayDlg('emailArticle', id,
|
|
|
|
function () {
|
|
|
|
document.forms['article_email_form'].destination.focus();
|
|
|
|
|
|
|
|
new Ajax.Autocompleter('destination', 'destination_choices',
|
|
|
|
"backend.php?op=rpc&subop=completeEmails",
|
|
|
|
{ tokens: '', paramName: "search" });
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("emailArticle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 09:13:07 +01:00
|
|
|
function emailArticleDo() {
|
2010-11-05 22:47:02 +01:00
|
|
|
try {
|
|
|
|
var f = document.forms['article_email_form'];
|
|
|
|
|
|
|
|
if (f.destination.value == "") {
|
|
|
|
alert("Please fill in the destination email.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f.subject.value == "") {
|
|
|
|
alert("Please fill in the subject.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var query = Form.serialize("article_email_form");
|
|
|
|
|
|
|
|
// console.log(query);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var error = transport.responseXML.getElementsByTagName('error')[0];
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
alert(__('Error sending email:') + ' ' + error.firstChild.nodeValue);
|
|
|
|
} else {
|
|
|
|
notify_info('Your message has been sent.');
|
|
|
|
closeInfoBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("sendEmailDo", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("emailArticleDo", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-09 18:57:23 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissArticle(id) {
|
2010-11-09 18:57:23 +01:00
|
|
|
try {
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
|
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
|
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissArticle", e);
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissSelectedArticles() {
|
2010-11-10 09:38:55 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = getVisibleArticleIds();
|
|
|
|
var tmp = [];
|
|
|
|
var sel = [];
|
2010-11-10 09:38:55 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
if (elem.className && elem.className.match("Selected")) {
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
sel.push(ids[i]);
|
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (sel.length > 0)
|
2010-11-10 09:38:55 +01:00
|
|
|
selectionToggleUnread(false);
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-10 09:38:55 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissSelectedArticles", e);
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
function dismissReadArticles() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getVisibleArticleIds();
|
2010-11-12 11:52:53 +01:00
|
|
|
var tmp = [];
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
|
|
|
|
|
|
|
if (elem.className && !elem.className.match("Unread") &&
|
|
|
|
!elem.className.match("Selected")) {
|
|
|
|
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("dismissSelectedArticles", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVisibleArticleIds() {
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = [];
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
try {
|
2010-11-12 11:52:53 +01:00
|
|
|
var tmp = getLoadedArticleIds();
|
|
|
|
|
|
|
|
for (var i = 0; i < tmp.length; i++) {
|
|
|
|
var elem = $("RROW-" + tmp[i]);
|
|
|
|
if (elem && Element.visible(elem))
|
|
|
|
ids.push(tmp[i]);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
2010-11-12 11:52:53 +01:00
|
|
|
exception_error("getVisibleArticleIds", e);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
return ids;
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function cdmClicked(event, id) {
|
|
|
|
try {
|
|
|
|
var shift_key = event.shiftKey;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
if (!event.ctrlKey) {
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles("none");
|
2010-11-11 11:37:03 +01:00
|
|
|
toggleSelected(id);
|
|
|
|
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (elem)
|
|
|
|
elem.className = elem.className.replace("Unread", "");
|
|
|
|
|
2010-11-12 23:41:18 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
|
|
|
|
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0&ids=" + param_escape(id);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_reply(transport);
|
|
|
|
} });
|
|
|
|
|
2010-11-11 21:09:29 +01:00
|
|
|
return true;
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
|
|
|
toggleSelected(id);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmClicked");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function hlClicked(event, id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!event.ctrlKey) {
|
|
|
|
view(id);
|
2010-11-11 12:31:41 +01:00
|
|
|
return true;
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
|
|
|
toggleSelected(id);
|
2010-11-11 12:31:41 +01:00
|
|
|
return false;
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hlClicked");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
function getFirstVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[0];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLastVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[rows.length-1];
|
|
|
|
}
|
|
|
|
|
|
|
|
function openArticleInNewWindow(id) {
|
|
|
|
try {
|
|
|
|
console.log("openArticleInNewWindow: " + id);
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=getArticleLink&id=" + id;
|
|
|
|
var wname = "ttrss_article_" + id;
|
|
|
|
|
|
|
|
console.log(query + " " + wname);
|
|
|
|
|
|
|
|
var w = window.open("", wname);
|
|
|
|
|
|
|
|
if (!w) notify_error("Failed to open window for the article");
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
var link = transport.responseXML.getElementsByTagName("link")[0];
|
|
|
|
var id = transport.responseXML.getElementsByTagName("id")[0];
|
|
|
|
|
|
|
|
console.log("open_article received link: " + link);
|
|
|
|
|
|
|
|
if (link && id) {
|
|
|
|
|
|
|
|
var wname = "ttrss_article_" + id.firstChild.nodeValue;
|
|
|
|
|
|
|
|
console.log("link url: " + link.firstChild.nodeValue + ", wname " + wname);
|
|
|
|
|
|
|
|
var w = window.open(link.firstChild.nodeValue, wname);
|
|
|
|
|
|
|
|
if (!w) { notify_error("Failed to load article in new window"); }
|
|
|
|
|
|
|
|
if (id) {
|
|
|
|
id = id.firstChild.nodeValue;
|
2010-11-13 12:04:37 +01:00
|
|
|
window.setTimeout("toggleUnread(" + id + ", 0)", 100);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
notify_error("Can't open article: received invalid article link");
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("openArticleInNewWindow", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function isCdmMode() {
|
2010-11-13 12:04:37 +01:00
|
|
|
return getInitParam("combined_display_mode");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function markHeadline(id) {
|
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (row) {
|
|
|
|
var is_active = false;
|
|
|
|
|
|
|
|
if (row.className.match("Active")) {
|
|
|
|
is_active = true;
|
|
|
|
}
|
|
|
|
row.className = row.className.replace("Selected", "");
|
|
|
|
row.className = row.className.replace("Active", "");
|
|
|
|
row.className = row.className.replace("Insensitive", "");
|
|
|
|
|
|
|
|
if (is_active) {
|
|
|
|
row.className = row.className = "Active";
|
|
|
|
}
|
|
|
|
|
|
|
|
var check = $("RCHK-" + id);
|
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
row.className = row.className + "Selected";
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
function getRelativePostIds(id, limit) {
|
|
|
|
|
|
|
|
var tmp = [];
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!limit) limit = 3;
|
|
|
|
|
|
|
|
var ids = getVisibleArticleIds();
|
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
if (ids[i] == id) {
|
|
|
|
for (var k = 1; k <= limit; k++) {
|
|
|
|
if (i > k-1) tmp.push(ids[i-k]);
|
|
|
|
if (i < ids.length-k) tmp.push(ids[i+k]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getRelativePostIds", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
function correctHeadlinesOffset(id) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var container = $("headlinesInnerContainer");
|
|
|
|
var row = $("RROW-" + id);
|
|
|
|
|
|
|
|
var viewport = container.offsetHeight;
|
|
|
|
|
|
|
|
var rel_offset_top = row.offsetTop - container.scrollTop;
|
|
|
|
var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
|
|
|
|
|
|
|
|
//console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
|
|
|
|
//console.log("Vport: " + viewport);
|
|
|
|
|
|
|
|
if (rel_offset_top <= 0 || rel_offset_top > viewport) {
|
|
|
|
container.scrollTop = row.offsetTop;
|
|
|
|
} else if (rel_offset_bottom > viewport) {
|
|
|
|
|
|
|
|
/* doesn't properly work with Opera in some cases because
|
|
|
|
Opera fucks up element scrolling */
|
|
|
|
|
|
|
|
container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("correctHeadlinesOffset", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
|