2005-09-05 14:41:59 +02:00
|
|
|
var active_post_id = false;
|
2006-09-29 06:55:07 +02:00
|
|
|
var _catchup_callback_func = 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;
|
|
|
|
|
|
|
|
var _tag_active_post_id = false;
|
|
|
|
var _tag_active_feed_id = false;
|
2007-01-25 10:38:13 +01:00
|
|
|
var _tag_active_cdm = false;
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
// FIXME: kludge, to restore scrollTop after tag editor terminates
|
|
|
|
var _tag_cdm_scroll = false;
|
|
|
|
|
|
|
|
// 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();
|
|
|
|
|
2006-09-29 06:55:07 +02:00
|
|
|
function catchup_callback() {
|
|
|
|
if (xmlhttp_rpc.readyState == 4) {
|
2006-09-29 06:57:07 +02:00
|
|
|
try {
|
|
|
|
debug("catchup_callback");
|
|
|
|
if (_catchup_callback_func) {
|
|
|
|
setTimeout(_catchup_callback_func, 100);
|
|
|
|
}
|
2007-03-04 10:54:07 +01:00
|
|
|
notify("");
|
2006-09-29 06:57:07 +02:00
|
|
|
all_counters_callback();
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchup_callback", e);
|
|
|
|
}
|
2006-09-29 06:55:07 +02:00
|
|
|
}
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
function headlines_callback() {
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
debug("headlines_callback");
|
|
|
|
var f = document.getElementById("headlines-frame");
|
2006-10-10 05:46:17 +02:00
|
|
|
try {
|
|
|
|
f.scrollTop = 0;
|
|
|
|
} catch (e) { };
|
2007-05-15 07:59:22 +02:00
|
|
|
|
|
|
|
if (xmlhttp.responseXML) {
|
|
|
|
var headlines = xmlhttp.responseXML.getElementsByTagName("headlines")[0];
|
|
|
|
var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0];
|
2007-05-15 09:37:10 +02:00
|
|
|
var articles = xmlhttp.responseXML.getElementsByTagName("article");
|
2007-05-15 07:59:22 +02:00
|
|
|
|
|
|
|
f.innerHTML = headlines.firstChild.nodeValue;
|
|
|
|
|
2007-05-15 09:37:10 +02:00
|
|
|
if (articles) {
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var a_id = articles[i].getAttribute("id");
|
|
|
|
debug("found id: " + a_id);
|
|
|
|
cache_inject(a_id, articles[i].firstChild.nodeValue);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:59:22 +02:00
|
|
|
if (counters) {
|
|
|
|
debug("parsing piggybacked counters: " + counters);
|
|
|
|
parse_counters(counters, false);
|
2007-05-15 08:19:48 +02:00
|
|
|
} else {
|
|
|
|
debug("counters container not found in reply");
|
2007-05-15 07:59:22 +02:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debug("headlines_callback: returned no XML object");
|
2007-05-15 08:19:48 +02:00
|
|
|
f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
|
2007-05-15 07:59:22 +02:00
|
|
|
}
|
|
|
|
|
2006-09-29 06:45:26 +02:00
|
|
|
if (typeof correctPNG != 'undefined') {
|
|
|
|
correctPNG();
|
|
|
|
}
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
|
|
|
|
|
2007-03-06 07:30:17 +01:00
|
|
|
if (!document.getElementById("headlinesList") &&
|
|
|
|
getInitParam("cdm_auto_catchup") == 1) {
|
2007-01-25 10:12:33 +01:00
|
|
|
debug("starting CDM watchdog");
|
|
|
|
_cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
|
|
|
|
_cdm_wd_vishist = new Array();
|
2007-03-06 07:30:17 +01:00
|
|
|
} else {
|
|
|
|
debug("not in CDM mode or watchdog disabled");
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
if (_tag_cdm_scroll) {
|
|
|
|
try {
|
|
|
|
document.getElementById("headlinesInnerContainer").scrollTop = _tag_cdm_scroll;
|
|
|
|
_tag_cdm_scroll = false;
|
|
|
|
} catch (e) { }
|
|
|
|
}
|
|
|
|
|
2006-09-28 14:42:47 +02:00
|
|
|
notify("");
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
function render_article(article) {
|
|
|
|
try {
|
2006-09-28 14:00:03 +02:00
|
|
|
var f = document.getElementById("content-frame");
|
2006-10-10 05:46:17 +02:00
|
|
|
try {
|
|
|
|
f.scrollTop = 0;
|
|
|
|
} catch (e) { };
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
f.innerHTML = article;
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("render_article", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function article_callback() {
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
debug("article_callback");
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (xmlhttp.responseXML) {
|
|
|
|
var reply = xmlhttp.responseXML.firstChild.firstChild;
|
|
|
|
|
|
|
|
var articles = xmlhttp.responseXML.getElementsByTagName("article");
|
|
|
|
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var a_id = articles[i].getAttribute("id");
|
|
|
|
|
|
|
|
debug("found id: " + a_id);
|
|
|
|
|
|
|
|
if (a_id == active_post_id) {
|
|
|
|
debug("active article, rendering...");
|
|
|
|
render_article(articles[i].firstChild.nodeValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_inject(a_id, articles[i].firstChild.nodeValue);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
debug("article_callback: returned no XML object");
|
2007-05-15 08:19:48 +02:00
|
|
|
f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("article_callback", e);
|
|
|
|
}
|
2006-11-23 06:26:49 +01:00
|
|
|
|
|
|
|
var date = new Date();
|
|
|
|
last_article_view = date.getTime() / 1000;
|
|
|
|
|
2006-09-29 06:45:26 +02:00
|
|
|
if (typeof correctPNG != 'undefined') {
|
|
|
|
correctPNG();
|
|
|
|
}
|
2006-12-07 08:48:00 +01:00
|
|
|
|
|
|
|
if (_reload_feedlist_after_view) {
|
|
|
|
setTimeout('updateFeedList(false, false)', 50);
|
|
|
|
_reload_feedlist_after_view = false;
|
|
|
|
} else {
|
2007-05-15 07:41:48 +02:00
|
|
|
var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0];
|
|
|
|
|
|
|
|
if (counters) {
|
|
|
|
debug("parsing piggybacked counters: " + counters);
|
|
|
|
parse_counters(counters, false);
|
|
|
|
} else {
|
2007-05-15 08:19:48 +02:00
|
|
|
debug("counters container not found in reply");
|
2007-05-15 07:41:48 +02:00
|
|
|
}
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
2007-03-04 10:54:07 +01:00
|
|
|
|
|
|
|
notify("");
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-12-04 09:26:09 +01:00
|
|
|
function view(id, feed_id, skip_history) {
|
2006-05-23 08:55:26 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
debug("loading article: " + id + "/" + feed_id);
|
2006-12-04 09:26:09 +01:00
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
active_real_feed_id = feed_id;
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var cached_article = cache_find(id);
|
|
|
|
|
|
|
|
debug("cache check result: " + (cached_article != false));
|
|
|
|
|
|
|
|
/* if (!skip_history) {
|
2006-12-04 09:26:09 +01:00
|
|
|
history_push("ARTICLE:" + id + ":" + feed_id);
|
2007-05-15 07:03:35 +02:00
|
|
|
} */
|
2006-05-23 08:55:26 +02:00
|
|
|
|
|
|
|
enableHotkeys();
|
|
|
|
|
|
|
|
active_post_id = id;
|
2006-09-29 18:29:46 +02:00
|
|
|
//setActiveFeedId(feed_id);
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
var query = "backend.php?op=view&id=" + param_escape(id) +
|
|
|
|
"&feed=" + param_escape(feed_id);
|
|
|
|
|
2006-11-23 06:26:49 +01:00
|
|
|
var date = new Date();
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp) && last_article_view < date.getTime() / 1000 - 15) {
|
|
|
|
debug("<b>xmlhttp seems to be stuck at view, aborting</b>");
|
|
|
|
xmlhttp.abort();
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
if (cached_article || xmlhttp_ready(xmlhttp)) {
|
2006-11-23 06:26:49 +01:00
|
|
|
|
|
|
|
cleanSelected("headlinesList");
|
|
|
|
|
|
|
|
var crow = document.getElementById("RROW-" + active_post_id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
var article_is_unread = crow.className.match("Unread");
|
|
|
|
debug("article is unread: " + article_is_unread);
|
|
|
|
|
2006-11-23 06:26:49 +01:00
|
|
|
crow.className = crow.className.replace("Unread", "");
|
|
|
|
|
|
|
|
var upd_img_pic = document.getElementById("FUPDPIC-" + active_post_id);
|
|
|
|
|
|
|
|
if (upd_img_pic) {
|
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
|
|
|
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
|
|
|
|
markHeadline(active_post_id);
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var neighbor_ids = getRelativePostIds(active_post_id);
|
|
|
|
|
|
|
|
/* only request uncached articles */
|
|
|
|
|
|
|
|
var cids_to_request = Array();
|
|
|
|
|
|
|
|
for (var i = 0; i < neighbor_ids.length; i++) {
|
|
|
|
if (!cache_check(neighbor_ids[i])) {
|
|
|
|
cids_to_request.push(neighbor_ids[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("additional ids: " + cids_to_request.toString());
|
|
|
|
|
2007-05-15 07:41:48 +02:00
|
|
|
/* additional info for piggyback counters */
|
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
query = query + "&omode=lt";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
|
|
|
}
|
|
|
|
|
2007-02-07 18:01:35 +01:00
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
2007-03-04 10:54:07 +01:00
|
|
|
query = query + "&ts=" + timestamp;
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
query = query + "&cids=" + cids_to_request.toString();
|
|
|
|
|
|
|
|
if (!cached_article) {
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
|
|
|
debug(query);
|
|
|
|
|
|
|
|
xmlhttp.open("GET", query, true);
|
|
|
|
xmlhttp.onreadystatechange=article_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
} else if (cached_article && article_is_unread) {
|
|
|
|
|
|
|
|
query = query + "&mode=prefetch";
|
|
|
|
|
|
|
|
debug(query);
|
|
|
|
|
|
|
|
xmlhttp.open("GET", query, true);
|
|
|
|
xmlhttp.onreadystatechange=article_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
render_article(cached_article);
|
|
|
|
|
|
|
|
} else if (cached_article) {
|
|
|
|
|
2007-05-15 08:19:48 +02:00
|
|
|
query = query + "&mode=prefetch_old";
|
|
|
|
|
|
|
|
debug(query);
|
|
|
|
|
|
|
|
xmlhttp.open("GET", query, true);
|
|
|
|
xmlhttp.onreadystatechange=article_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
render_article(cached_article);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_expire();
|
2007-02-07 18:01:35 +01:00
|
|
|
|
2006-09-28 14:00:03 +02:00
|
|
|
} else {
|
|
|
|
debug("xmlhttp busy (@view)");
|
2006-11-19 10:51:40 +01:00
|
|
|
printLockingError();
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2005-12-01 13:43:13 +01:00
|
|
|
function toggleMark(id) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
printLockingError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var query = "backend.php?op=rpc&id=" + id + "&subop=mark";
|
|
|
|
|
2007-05-15 09:51:57 +02:00
|
|
|
var mark_img = document.getElementById("FMPIC-" + id);
|
2006-09-29 07:09:18 +02:00
|
|
|
var vfeedu = document.getElementById("FEEDU--1");
|
2005-09-09 13:29:04 +02:00
|
|
|
var crow = document.getElementById("RROW-" + id);
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2005-12-01 13:43:13 +01:00
|
|
|
if (mark_img.alt != "Reset mark") {
|
2005-09-05 14:02:00 +02:00
|
|
|
mark_img.src = "images/mark_set.png";
|
|
|
|
mark_img.alt = "Reset mark";
|
|
|
|
query = query + "&mark=1";
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2005-09-09 13:29:04 +02:00
|
|
|
if (vfeedu && crow.className.match("Unread")) {
|
|
|
|
vfeedu.innerHTML = (+vfeedu.innerHTML) + 1;
|
|
|
|
}
|
|
|
|
|
2005-09-05 14:02:00 +02:00
|
|
|
} else {
|
|
|
|
mark_img.src = "images/mark_unset.png";
|
|
|
|
mark_img.alt = "Set mark";
|
|
|
|
query = query + "&mark=0";
|
2005-09-08 08:31:16 +02:00
|
|
|
|
2005-09-09 13:29:04 +02:00
|
|
|
if (vfeedu && crow.className.match("Unread")) {
|
|
|
|
vfeedu.innerHTML = (+vfeedu.innerHTML) - 1;
|
|
|
|
}
|
2005-09-08 08:31:16 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2006-09-29 07:09:18 +02:00
|
|
|
var vfeedctr = document.getElementById("FEEDCTR--1");
|
|
|
|
var vfeedr = document.getElementById("FEEDR--1");
|
2005-09-08 08:31:16 +02:00
|
|
|
|
|
|
|
if (vfeedu && vfeedctr) {
|
|
|
|
if ((+vfeedu.innerHTML) > 0) {
|
2005-09-09 13:29:04 +02:00
|
|
|
if (crow.className.match("Unread") && !vfeedr.className.match("Unread")) {
|
2005-09-09 09:58:21 +02:00
|
|
|
vfeedr.className = vfeedr.className + "Unread";
|
2005-09-09 13:29:04 +02:00
|
|
|
vfeedctr.className = "odd";
|
2005-09-09 09:58:21 +02:00
|
|
|
}
|
2005-09-08 08:31:16 +02:00
|
|
|
} else {
|
|
|
|
vfeedctr.className = "invisible";
|
2005-09-09 09:58:21 +02:00
|
|
|
vfeedr.className = vfeedr.className.replace("Unread", "");
|
2005-09-08 08:31:16 +02:00
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2006-05-23 08:35:27 +02:00
|
|
|
debug("toggle starred for aid " + id);
|
|
|
|
|
|
|
|
new Ajax.Request(query);
|
2005-09-05 14:02:00 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-05 14:41:59 +02:00
|
|
|
function moveToPost(mode) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2005-12-25 19:07:44 +01:00
|
|
|
// check for combined mode
|
|
|
|
if (!document.getElementById("headlinesList"))
|
|
|
|
return;
|
|
|
|
|
2005-09-05 14:41:59 +02:00
|
|
|
var rows = getVisibleHeadlineIds();
|
|
|
|
|
|
|
|
var prev_id;
|
|
|
|
var next_id;
|
|
|
|
|
2006-12-07 06:07:46 +01:00
|
|
|
if (!document.getElementById('RROW-' + active_post_id)) {
|
|
|
|
active_post_id = false;
|
|
|
|
}
|
|
|
|
|
2005-09-05 14:41:59 +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];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == "next") {
|
|
|
|
if (next_id != undefined) {
|
2005-09-08 07:29:45 +02:00
|
|
|
view(next_id, getActiveFeedId());
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mode == "prev") {
|
|
|
|
if ( prev_id != undefined) {
|
2005-09-08 07:29:45 +02:00
|
|
|
view(prev_id, getActiveFeedId());
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-05-16 15:41:57 +02:00
|
|
|
function toggleUnread(id, cmode) {
|
|
|
|
try {
|
|
|
|
if (!xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
printLockingError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var row = document.getElementById("RROW-" + id);
|
|
|
|
if (row) {
|
|
|
|
var nc = row.className;
|
|
|
|
nc = nc.replace("Unread", "");
|
|
|
|
nc = nc.replace("Selected", "");
|
|
|
|
|
|
|
|
if (row.className.match("Unread")) {
|
|
|
|
row.className = nc;
|
|
|
|
} else {
|
|
|
|
row.className = nc + "Unread";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!cmode) cmode = 2;
|
|
|
|
|
|
|
|
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
|
|
|
|
param_escape(id) + "&cmode=" + param_escape(cmode);
|
|
|
|
|
2007-03-04 10:54:07 +01:00
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
2006-05-16 15:41:57 +02:00
|
|
|
xmlhttp_rpc.open("GET", query, true);
|
|
|
|
xmlhttp_rpc.onreadystatechange=all_counters_callback;
|
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-05-11 07:51:47 +02:00
|
|
|
function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
|
|
|
if (!xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
printLockingError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
var rows;
|
|
|
|
|
|
|
|
if (cdm_mode) {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
} else {
|
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
}
|
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++) {
|
2005-12-01 13:52:18 +01:00
|
|
|
var row = document.getElementById("RROW-" + rows[i]);
|
|
|
|
if (row) {
|
|
|
|
var nc = row.className;
|
|
|
|
nc = nc.replace("Unread", "");
|
|
|
|
nc = nc.replace("Selected", "");
|
|
|
|
|
|
|
|
if (row.className.match("Unread")) {
|
|
|
|
row.className = nc + "Selected";
|
|
|
|
} else {
|
|
|
|
row.className = nc + "UnreadSelected";
|
|
|
|
}
|
|
|
|
}
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
|
2006-08-02 10:47:34 +02:00
|
|
|
param_escape(rows.toString()) + "&cmode=" + cmode;
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2006-09-29 06:55:07 +02:00
|
|
|
_catchup_callback_func = callback_func;
|
|
|
|
|
2007-03-04 10:54:07 +01:00
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
xmlhttp_rpc.open("GET", query, true);
|
2006-09-29 06:55:07 +02:00
|
|
|
xmlhttp_rpc.onreadystatechange=catchup_callback;
|
2005-11-27 15:56:10 +01:00
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleUnread", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
function selectionToggleMarked(cdm_mode) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
|
|
|
if (!xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
printLockingError();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
var rows;
|
|
|
|
|
|
|
|
if (cdm_mode) {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
} else {
|
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
}
|
2005-11-27 15:56:10 +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++) {
|
|
|
|
var row = document.getElementById("RROW-" + rows[i]);
|
|
|
|
var mark_img = document.getElementById("FMARKPIC-" + rows[i]);
|
|
|
|
|
|
|
|
if (row && mark_img) {
|
|
|
|
|
|
|
|
if (mark_img.alt == "Set mark") {
|
|
|
|
mark_img.src = "images/mark_set.png";
|
|
|
|
mark_img.alt = "Reset mark";
|
|
|
|
mark_img.setAttribute('onclick',
|
|
|
|
'javascript:toggleMark('+rows[i]+', false)');
|
|
|
|
|
|
|
|
} else {
|
|
|
|
mark_img.src = "images/mark_unset.png";
|
|
|
|
mark_img.alt = "Set mark";
|
|
|
|
mark_img.setAttribute('onclick',
|
|
|
|
'javascript:toggleMark('+rows[i]+', true)');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
|
|
|
var query = "backend.php?op=rpc&subop=markSelected&ids=" +
|
|
|
|
param_escape(rows.toString()) + "&cmode=2";
|
|
|
|
|
|
|
|
xmlhttp_rpc.open("GET", query, true);
|
|
|
|
xmlhttp_rpc.onreadystatechange=all_counters_callback;
|
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleMarked", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
function cdmGetSelectedArticles() {
|
|
|
|
var sel_articles = new Array();
|
2006-11-01 05:49:48 +01:00
|
|
|
var container = document.getElementById("headlinesInnerContainer");
|
2005-12-13 06:52:32 +01:00
|
|
|
|
|
|
|
for (i = 0; i < container.childNodes.length; i++) {
|
|
|
|
var child = container.childNodes[i];
|
|
|
|
|
|
|
|
if (child.id.match("RROW-") && child.className.match("Selected")) {
|
|
|
|
var c_id = child.id.replace("RROW-", "");
|
|
|
|
sel_articles.push(c_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_articles;
|
|
|
|
}
|
|
|
|
|
|
|
|
// mode = all,none,unread
|
|
|
|
function cdmSelectArticles(mode) {
|
2006-11-01 05:49:48 +01:00
|
|
|
var container = document.getElementById("headlinesInnerContainer");
|
2005-12-13 06:52:32 +01:00
|
|
|
|
|
|
|
for (i = 0; i < container.childNodes.length; i++) {
|
|
|
|
var child = container.childNodes[i];
|
|
|
|
|
|
|
|
if (child.id.match("RROW-")) {
|
2006-01-09 14:55:39 +01:00
|
|
|
var aid = child.id.replace("RROW-", "");
|
|
|
|
|
|
|
|
var cb = document.getElementById("RCHK-" + aid);
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
if (mode == "all") {
|
|
|
|
if (!child.className.match("Selected")) {
|
|
|
|
child.className = child.className + "Selected";
|
2006-01-09 14:55:39 +01:00
|
|
|
cb.checked = true;
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
} else if (mode == "unread") {
|
|
|
|
if (child.className.match("Unread") && !child.className.match("Selected")) {
|
|
|
|
child.className = child.className + "Selected";
|
2006-01-09 14:55:39 +01:00
|
|
|
cb.checked = true;
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
child.className = child.className.replace("Selected", "");
|
2006-01-09 14:55:39 +01:00
|
|
|
cb.checked = false;
|
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
|
|
|
|
|
|
|
if (document.getElementById("headlinesList")) {
|
|
|
|
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
|
2007-05-11 07:51:47 +02:00
|
|
|
selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
|
2006-08-02 10:47:34 +02:00
|
|
|
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
|
|
|
|
} else {
|
|
|
|
cdmSelectArticles('all');
|
2007-05-11 07:51:47 +02:00
|
|
|
selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
|
2006-08-02 10:47:34 +02:00
|
|
|
cdmSelectArticles('none');
|
|
|
|
}
|
2006-02-24 10:33:09 +01:00
|
|
|
}
|
|
|
|
|
2006-08-01 09:54:46 +02:00
|
|
|
function labelFromSearch(search, search_mode, match_on, feed_id, is_cat) {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
printLockingError();
|
|
|
|
}
|
|
|
|
|
|
|
|
var title = prompt("Please enter label title:", "");
|
|
|
|
|
|
|
|
if (title) {
|
|
|
|
|
|
|
|
var query = "backend.php?op=labelFromSearch&search=" + param_escape(search) +
|
|
|
|
"&smode=" + param_escape(search_mode) + "&match=" + param_escape(match_on) +
|
|
|
|
"&feed=" + param_escape(feed_id) + "&is_cat=" + param_escape(is_cat) +
|
|
|
|
"&title=" + param_escape(title);
|
|
|
|
|
|
|
|
debug("LFS: " + query);
|
|
|
|
|
|
|
|
xmlhttp_rpc.open("GET", query, true);
|
2006-09-29 07:09:18 +02:00
|
|
|
xmlhttp_rpc.onreadystatechange=dlg_frefresh_callback;
|
2006-08-01 09:54:46 +02:00
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
function editArticleTags(id, feed_id, cdm_enabled) {
|
2006-12-07 08:48:00 +01:00
|
|
|
_tag_active_post_id = id;
|
|
|
|
_tag_active_feed_id = feed_id;
|
2007-01-25 10:38:13 +01:00
|
|
|
_tag_active_cdm = cdm_enabled;
|
2007-05-15 13:41:39 +02:00
|
|
|
|
|
|
|
cache_invalidate(id);
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
try {
|
|
|
|
_tag_cdm_scroll = document.getElementById("headlinesInnerContainer").scrollTop;
|
|
|
|
} catch (e) { }
|
2006-12-07 08:48:00 +01:00
|
|
|
displayDlg('editArticleTags', id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function tag_saved_callback() {
|
|
|
|
if (xmlhttp_rpc.readyState == 4) {
|
|
|
|
try {
|
|
|
|
debug("in tag_saved_callback");
|
|
|
|
|
|
|
|
closeInfoBox();
|
|
|
|
notify("");
|
|
|
|
|
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
_reload_feedlist_after_view = true;
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
if (!_tag_active_cdm) {
|
|
|
|
if (active_post_id == _tag_active_post_id) {
|
|
|
|
debug("reloading current article");
|
|
|
|
view(_tag_active_post_id, _tag_active_feed_id);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
debug("reloading current feed");
|
|
|
|
viewCurrentFeed();
|
|
|
|
}
|
2006-12-07 08:48:00 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchup_callback", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function editTagsSave() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
printLockingError();
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
|
|
|
|
xmlhttp_rpc.open("GET", "backend.php?op=rpc&subop=setArticleTags&" + query, true);
|
|
|
|
xmlhttp_rpc.onreadystatechange=tag_saved_callback;
|
|
|
|
xmlhttp_rpc.send(null);
|
|
|
|
|
|
|
|
}
|
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) {
|
|
|
|
exception_error(e, "editTagsInsert");
|
|
|
|
}
|
|
|
|
}
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
function cdmWatchdog() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ctr = document.getElementById("headlinesInnerContainer");
|
|
|
|
|
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) {
|
|
|
|
|
|
|
|
// debug(e.id + " is visible " + e.offsetTop + "." +
|
|
|
|
// (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;
|
|
|
|
}
|
|
|
|
|
|
|
|
debug("cdmWatchdog, ids= " + ids.toString());
|
|
|
|
|
|
|
|
if (ids.length > 0 && xmlhttp_ready(xmlhttp_rpc)) {
|
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var e = document.getElementById("RROW-" + ids[i]);
|
|
|
|
if (e) {
|
|
|
|
e.className = e.className.replace("Unread", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
|
|
|
|
param_escape(ids.toString()) + "&cmode=0";
|
|
|
|
|
2007-01-25 10:13:18 +01:00
|
|
|
xmlhttp_rpc.open("GET", query, true);
|
2007-01-25 10:12:33 +01:00
|
|
|
xmlhttp_rpc.onreadystatechange=all_counters_callback;
|
2007-01-26 06:36:19 +01:00
|
|
|
xmlhttp_rpc.send(null);
|
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) {
|
|
|
|
exception_error(e, "cdmWatchdog");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
|
|
|
|
function cache_inject(id, article) {
|
2007-05-15 07:21:19 +02:00
|
|
|
if (!cache_check(id)) {
|
2007-05-15 07:03:35 +02:00
|
|
|
debug("cache_article: miss: " + id);
|
|
|
|
|
|
|
|
var cache_obj = new Array();
|
|
|
|
|
2007-05-15 07:21:19 +02:00
|
|
|
cache_obj["id"] = id;
|
2007-05-15 07:03:35 +02:00
|
|
|
cache_obj["data"] = article;
|
|
|
|
|
2007-05-15 07:21:19 +02:00
|
|
|
article_cache.push(cache_obj);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
debug("cache_article: hit: " + id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_find(id) {
|
2007-05-15 07:21:19 +02:00
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return article_cache[i]["data"];
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
|
|
|
|
function cache_check(id) {
|
2007-05-15 07:21:19 +02:00
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function cache_expire() {
|
2007-05-15 08:02:35 +02:00
|
|
|
while (article_cache.length > 20) {
|
2007-05-15 07:21:19 +02:00
|
|
|
article_cache.shift();
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-05-15 13:41:39 +02:00
|
|
|
|
|
|
|
function cache_invalidate(id) {
|
|
|
|
var i = 0
|
|
|
|
|
|
|
|
while (i < article_cache.length) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
article_cache.remove(i);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|