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;
|
|
|
|
|
2009-03-21 21:11:58 +01:00
|
|
|
function toggle_published_callback(transport) {
|
|
|
|
try {
|
|
|
|
if (transport.responseXML) {
|
|
|
|
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggle_published_callback", e, transport);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
function catchup_callback2(transport, callback) {
|
|
|
|
try {
|
|
|
|
debug("catchup_callback2 " + transport + ", " + callback);
|
|
|
|
notify("");
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
function clean_feed_selections() {
|
2007-08-24 06:59:12 +02:00
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var feeds = $("feedList").getElementsByTagName("LI");
|
2007-08-24 06:59:12 +02:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
for (var i = 0; i < feeds.length; i++) {
|
|
|
|
if (feeds[i].id && feeds[i].id.match("FEEDR-")) {
|
|
|
|
feeds[i].className = feeds[i].className.replace("Selected", "");
|
|
|
|
}
|
2008-06-05 10:44:33 +02:00
|
|
|
if (feeds[i].id && feeds[i].id.match("FCAT-")) {
|
|
|
|
feeds[i].className = feeds[i].className.replace("Selected", "");
|
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("clean_feed_selections", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
function headlines_callback2(transport, feed_cur_page) {
|
2007-11-21 09:23:34 +01:00
|
|
|
try {
|
|
|
|
|
2009-02-12 22:12:18 +01:00
|
|
|
if (!transport.responseText && db) {
|
|
|
|
offlineConfirmModeChange();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2008-05-19 09:37:44 +02:00
|
|
|
loading_set_progress(100);
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
debug("headlines_callback2 [page=" + feed_cur_page + "]");
|
|
|
|
|
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);
|
|
|
|
|
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";
|
|
|
|
}
|
2009-10-07 12:22:44 +02:00
|
|
|
if (feedr && ll) feedr.removeChild(ll);
|
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";
|
|
|
|
}
|
2009-10-07 12:44:51 +02:00
|
|
|
|
|
|
|
var fcap = $("FCAP-" + feed_id);
|
|
|
|
if (fcap && ll) fcap.removeChild(ll);
|
2009-10-07 12:22:44 +02:00
|
|
|
|
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) {
|
|
|
|
debug("resetting headlines scrollTop");
|
|
|
|
f.scrollTop = 0;
|
2007-08-24 06:59:12 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
} catch (e) { };
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var headlines = transport.responseXML.getElementsByTagName("headlines")[0];
|
|
|
|
var headlines_count_obj = transport.responseXML.getElementsByTagName("headlines-count")[0];
|
2007-11-21 09:23:34 +01:00
|
|
|
var headlines_unread_obj = transport.responseXML.getElementsByTagName("headlines-unread")[0];
|
2007-11-21 11:34:06 +01:00
|
|
|
var disable_cache_obj = transport.responseXML.getElementsByTagName("disable-cache")[0];
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2008-05-17 06:42:20 +02:00
|
|
|
var vgroup_last_feed_obj = transport.responseXML.getElementsByTagName("vgroup-last-feed")[0];
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
var headlines_count = headlines_count_obj.getAttribute("value");
|
2007-11-21 09:23:34 +01:00
|
|
|
var headlines_unread = headlines_unread_obj.getAttribute("value");
|
2007-11-21 11:34:06 +01:00
|
|
|
var disable_cache = disable_cache_obj.getAttribute("value") != "0";
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2008-05-17 06:42:20 +02:00
|
|
|
vgroup_last_feed = vgroup_last_feed_obj.getAttribute("value");
|
|
|
|
|
2008-02-19 16:01:09 +01:00
|
|
|
if (headlines_count == 0) {
|
|
|
|
_infscroll_disable = 1;
|
|
|
|
} else {
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
var counters = transport.responseXML.getElementsByTagName("counters")[0];
|
|
|
|
var articles = transport.responseXML.getElementsByTagName("article");
|
|
|
|
var runtime_info = transport.responseXML.getElementsByTagName("runtime-info");
|
|
|
|
|
|
|
|
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 {
|
|
|
|
debug("headlines_callback: returned no data");
|
|
|
|
f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML data)') + "</div>";
|
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (headlines) {
|
|
|
|
if (headlines_count > 0) {
|
|
|
|
debug("adding some more headlines...");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var c = $("headlinesList");
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
if (!c) {
|
2009-02-10 10:06:15 +01:00
|
|
|
c = $("headlinesInnerContainer");
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
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
|
|
|
|
|
|
|
debug("restore selected ids: " + ids);
|
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
markHeadline(ids[i]);
|
|
|
|
}
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} else {
|
|
|
|
debug("no new headlines received");
|
2007-08-24 07:31:57 +02:00
|
|
|
}
|
|
|
|
} else {
|
2007-08-24 07:45:42 +02:00
|
|
|
debug("headlines_callback: returned no data");
|
|
|
|
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");
|
|
|
|
debug("found id: " + a_id);
|
|
|
|
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 {
|
2007-08-24 07:45:42 +02:00
|
|
|
debug("no cached articles received");
|
2007-05-15 09:37:10 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
if (counters) {
|
|
|
|
debug("parsing piggybacked counters: " + counters);
|
|
|
|
parse_counters(counters, false);
|
|
|
|
} else {
|
2008-05-20 14:52:38 +02:00
|
|
|
debug("counters container not found in reply, requesting...");
|
|
|
|
request_counters();
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (runtime_info) {
|
|
|
|
debug("parsing runtime info: " + runtime_info[0]);
|
|
|
|
parse_runtime_info(runtime_info[0]);
|
|
|
|
} else {
|
|
|
|
debug("counters container not found in reply");
|
2007-06-07 10:06:36 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2007-05-15 07:59:22 +02:00
|
|
|
} else {
|
2007-08-24 07:45:42 +02:00
|
|
|
debug("headlines_callback: returned no XML object");
|
|
|
|
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
|
|
|
|
|
|
|
if (typeof correctPNG != 'undefined') {
|
|
|
|
correctPNG();
|
2006-09-29 06:45:26 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if (!$("headlinesList") &&
|
2008-11-13 06:53:41 +01:00
|
|
|
getActiveFeedId() != -3 &&
|
2007-08-24 07:45:42 +02:00
|
|
|
getInitParam("cdm_auto_catchup") == 1) {
|
|
|
|
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 {
|
2007-08-24 07:45:42 +02:00
|
|
|
debug("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
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
cleanSelected("headlinesList");
|
2007-08-24 09:53:35 +02:00
|
|
|
|
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
|
|
|
|
|
|
|
selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
|
|
|
|
|
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);
|
|
|
|
|
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
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
function article_callback2(transport, id, feed_id) {
|
|
|
|
try {
|
|
|
|
debug("article_callback2 " + id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-02-12 22:12:18 +01:00
|
|
|
if (!transport.responseText && db) {
|
|
|
|
offlineConfirmModeChange();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
debug("requested article id is out of sequence, aborting");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
active_real_feed_id = feed_id;
|
|
|
|
active_post_id = id;
|
|
|
|
|
2008-05-22 07:45:11 +02:00
|
|
|
debug("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");
|
|
|
|
|
|
|
|
debug("found id: " + a_id);
|
|
|
|
|
|
|
|
if (a_id == active_post_id) {
|
|
|
|
debug("active article, rendering...");
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
showArticleInHeadlines(id);
|
|
|
|
|
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 {
|
|
|
|
debug("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-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 {
|
2009-02-02 13:58:24 +01:00
|
|
|
if (transport.responseXML) {
|
|
|
|
var counters = transport.responseXML.getElementsByTagName("counters")[0];
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2009-02-02 13:58:24 +01:00
|
|
|
if (counters) {
|
|
|
|
debug("parsing piggybacked counters: " + counters);
|
|
|
|
parse_counters(counters, false);
|
|
|
|
} else {
|
|
|
|
debug("counters container not found in reply, requesting...");
|
|
|
|
request_counters();
|
|
|
|
}
|
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("");
|
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 16:03:16 +01:00
|
|
|
function view(id, feed_id) {
|
2006-05-23 08:55:26 +02:00
|
|
|
try {
|
2009-12-29 16:03:16 +01:00
|
|
|
if (!feed_id) feed_id = 0;
|
|
|
|
|
2006-05-23 08:55:26 +02:00
|
|
|
debug("loading article: " + id + "/" + feed_id);
|
2009-02-03 17:38:33 +01:00
|
|
|
|
|
|
|
if (offline_mode) return view_offline(id, feed_id);
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var cached_article = cache_find(id);
|
|
|
|
|
|
|
|
debug("cache check result: " + (cached_article != false));
|
2006-05-23 08:55:26 +02:00
|
|
|
|
|
|
|
enableHotkeys();
|
2009-10-27 14:24:37 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2006-09-29 18:29:46 +02:00
|
|
|
//setActiveFeedId(feed_id);
|
2005-09-08 14:10:07 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=view&id=" + param_escape(id) +
|
2006-09-28 14:00:03 +02:00
|
|
|
"&feed=" + param_escape(feed_id);
|
|
|
|
|
2006-11-23 06:26:49 +01:00
|
|
|
var date = new Date();
|
|
|
|
|
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
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
debug("additional ids: " + cids_to_request.toString());
|
2007-05-15 07:03:35 +02: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
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
|
|
|
query = query + "&ts=" + timestamp;
|
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
|
|
|
|
2008-05-21 06:38:28 +02:00
|
|
|
if (!async_counters_work) {
|
|
|
|
query = query + "&csync=true";
|
|
|
|
}
|
|
|
|
|
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 12:22:44 +02:00
|
|
|
// notify_progress("Loading, please wait...", true);
|
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
/* var content = $('HLC-' + id);
|
2009-10-07 12:22:44 +02:00
|
|
|
|
|
|
|
if (content && !$('LL-' + id)) {
|
|
|
|
var ll = document.createElement('img');
|
|
|
|
|
|
|
|
ll.src = 'images/indicator_tiny.gif';
|
|
|
|
ll.className = 'hlLoading';
|
|
|
|
ll.id = 'LL-' + id;
|
|
|
|
|
|
|
|
content.appendChild(ll);
|
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
} */
|
|
|
|
|
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
|
|
|
if (upic) {
|
|
|
|
upic.src = 'images/indicator_white.gif';
|
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) {
|
|
|
|
article_callback2(transport, id, feed_id);
|
|
|
|
} });
|
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;
|
|
|
|
|
|
|
|
debug("tMark_afh_off : " + elem.id);
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
debug("tPub_afh_off : " + elem.id);
|
|
|
|
|
|
|
|
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 {
|
|
|
|
//mark_img.src = "images/mark_unset.png";
|
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";
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList") && !no_effects) {
|
2007-08-20 14:37:46 +02:00
|
|
|
Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
|
|
|
|
} else {
|
2007-08-23 15:54:17 +02:00
|
|
|
mark_img.src = mark_img.src.replace("mark_set", "mark_unset");
|
|
|
|
mark_img.alt = __("Star article");
|
2007-08-20 14:37:46 +02:00
|
|
|
}
|
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) {
|
|
|
|
debug(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) {
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
} });
|
|
|
|
|
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-11 06:04:45 +02:00
|
|
|
//mark_img.src = "images/pub_unset.png";
|
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";
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList") && !no_effects) {
|
2007-08-20 09:59:18 +02:00
|
|
|
Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
|
|
|
|
} else {
|
2007-08-23 15:54:17 +02:00
|
|
|
mark_img.src = mark_img.src.replace("pub_set", "pub_unset");
|
|
|
|
mark_img.alt = __("Publish article");
|
2007-08-20 09:59:18 +02:00
|
|
|
}
|
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) {
|
2009-03-21 21:11:58 +01:00
|
|
|
toggle_published_callback(transport);
|
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) {
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
exception_error("togglePub", e);
|
|
|
|
}
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
2007-05-16 05:36:40 +02:00
|
|
|
function correctHeadlinesOffset(id) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var hlist = $("headlinesList");
|
|
|
|
var container = $("headlinesInnerContainer");
|
|
|
|
var row = $("RROW-" + id);
|
2007-05-16 05:36:40 +02:00
|
|
|
|
|
|
|
var viewport = container.offsetHeight;
|
|
|
|
|
|
|
|
var rel_offset_top = row.offsetTop - container.scrollTop;
|
|
|
|
var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
|
|
|
|
|
|
|
|
debug("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
|
|
|
|
debug("Vport: " + viewport);
|
2007-05-16 06:06:05 +02:00
|
|
|
|
2007-05-16 05:36:40 +02:00
|
|
|
if (rel_offset_top <= 0 || rel_offset_top > viewport) {
|
|
|
|
container.scrollTop = row.offsetTop;
|
|
|
|
} else if (rel_offset_bottom > viewport) {
|
2007-05-16 06:06:05 +02:00
|
|
|
|
|
|
|
/* doesn't properly work with Opera in some cases because
|
|
|
|
Opera fucks up element scrolling */
|
|
|
|
|
2007-05-16 05:36:40 +02:00
|
|
|
container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("correctHeadlinesOffset", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
var rows;
|
|
|
|
|
|
|
|
if (isCdmMode()) {
|
|
|
|
rows = cdmGetVisibleArticles();
|
|
|
|
} else {
|
|
|
|
rows = getVisibleHeadlineIds();
|
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
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()) {
|
|
|
|
|
|
|
|
if (!cdmArticleIsActuallyVisible(next_id)) {
|
|
|
|
cdmScrollToArticleId(next_id);
|
|
|
|
}
|
|
|
|
cdmSelectArticles("none");
|
|
|
|
toggleUnread(next_id, 0, true);
|
|
|
|
toggleSelected(next_id);
|
|
|
|
|
|
|
|
} 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()) {
|
|
|
|
cdmScrollToArticleId(prev_id);
|
|
|
|
cdmSelectArticles("none");
|
|
|
|
toggleUnread(prev_id, 0, true);
|
|
|
|
toggleSelected(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) {
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
} });
|
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);
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
all_counters_callback2(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);
|
|
|
|
|
|
|
|
// 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);
|
|
|
|
all_counters_callback2(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);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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 {
|
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++) {
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
function selectionToggleMarked(cdm_mode) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
|
|
|
|
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++) {
|
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
|
|
|
/* if (tagsAreDisplayed()) {
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&omode=tl";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
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) {
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
} });
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
function selectionTogglePublished(cdm_mode) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var rows;
|
|
|
|
|
|
|
|
if (cdm_mode) {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
} else {
|
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
/* if (tagsAreDisplayed()) {
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&omode=tl";
|
|
|
|
} else {
|
|
|
|
query = query + "&omode=flc";
|
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) {
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
} });
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionToggleMarked", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
function cdmGetSelectedArticles() {
|
|
|
|
var sel_articles = new Array();
|
2009-02-10 10:06:15 +01:00
|
|
|
var container = $("headlinesInnerContainer");
|
2005-12-13 06:52:32 +01:00
|
|
|
|
|
|
|
for (i = 0; i < container.childNodes.length; i++) {
|
|
|
|
var child = container.childNodes[i];
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
function cdmGetVisibleArticles() {
|
|
|
|
var sel_articles = new Array();
|
2009-02-10 10:06:15 +01:00
|
|
|
var container = $("headlinesInnerContainer");
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2008-05-19 12:24:46 +02:00
|
|
|
if (!container) return sel_articles;
|
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
for (i = 0; i < container.childNodes.length; i++) {
|
|
|
|
var child = container.childNodes[i];
|
|
|
|
|
2008-05-28 10:43:17 +02: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;
|
|
|
|
}
|
|
|
|
|
|
|
|
function cdmGetUnreadArticles() {
|
|
|
|
var sel_articles = new Array();
|
2009-02-10 10:06:15 +01:00
|
|
|
var container = $("headlinesInnerContainer");
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
for (i = 0; i < container.childNodes.length; i++) {
|
|
|
|
var child = container.childNodes[i];
|
|
|
|
|
2008-05-28 10:43:17 +02:00
|
|
|
if (child.id && child.id.match("RROW-") && child.className.match("Unread")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
var c_id = child.id.replace("RROW-", "");
|
|
|
|
sel_articles.push(c_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_articles;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-12-13 06:52:32 +01:00
|
|
|
// mode = all,none,unread
|
|
|
|
function cdmSelectArticles(mode) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var container = $("headlinesInnerContainer");
|
2005-12-13 06:52:32 +01:00
|
|
|
|
|
|
|
for (i = 0; i < container.childNodes.length; i++) {
|
|
|
|
var child = container.childNodes[i];
|
|
|
|
|
2008-05-28 10:43:17 +02:00
|
|
|
if (child.id && child.id.match("RROW-")) {
|
2006-01-09 14:55:39 +01:00
|
|
|
var aid = child.id.replace("RROW-", "");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("RCHK-" + aid);
|
2006-01-09 14:55:39 +01:00
|
|
|
|
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
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList")) {
|
2006-08-02 10:47:34 +02:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
function deleteSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var rows;
|
|
|
|
|
|
|
|
if ($("headlinesList")) {
|
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
} else {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
debug(query);
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
var rows;
|
|
|
|
|
|
|
|
if ($("headlinesList")) {
|
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
} else {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
debug(query);
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
var rows;
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList")) {
|
2007-08-19 07:13:45 +02:00
|
|
|
rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
|
|
|
|
} else {
|
|
|
|
rows = cdmGetSelectedArticles();
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList")) {
|
2007-08-19 07:13:45 +02:00
|
|
|
selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
|
|
|
|
// selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
|
|
|
|
} else {
|
|
|
|
selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
|
|
|
|
// cdmSelectArticles('none');
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
function editArticleTags(id, feed_id, cdm_enabled) {
|
2006-12-07 08:48:00 +01:00
|
|
|
displayDlg('editArticleTags', id);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2007-08-26 08:39:46 +02:00
|
|
|
function tag_saved_callback(transport) {
|
|
|
|
try {
|
|
|
|
debug("in tag_saved_callback");
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2007-08-26 08:39:46 +02:00
|
|
|
closeInfoBox();
|
|
|
|
notify("");
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2007-08-26 08:39:46 +02:00
|
|
|
if (tagsAreDisplayed()) {
|
|
|
|
_reload_feedlist_after_view = true;
|
|
|
|
}
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2009-01-23 14:20:05 +01:00
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var tags_str = transport.responseXML.getElementsByTagName("tags-str")[0];
|
|
|
|
|
|
|
|
if (tags_str) {
|
|
|
|
var id = tags_str.getAttribute("id");
|
|
|
|
|
|
|
|
if (id) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var tags = $("ATSTR-" + id);
|
2009-01-23 14:20:05 +01:00
|
|
|
if (tags) {
|
|
|
|
tags.innerHTML = tags_str.firstChild.nodeValue;
|
|
|
|
}
|
|
|
|
}
|
2007-01-25 10:38:13 +01:00
|
|
|
}
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
2007-08-26 08:39:46 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
2009-01-23 14:20:05 +01:00
|
|
|
exception_error("tag_saved_callback", e);
|
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
|
|
|
|
|
|
|
debug(query);
|
|
|
|
|
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) {
|
|
|
|
tag_saved_callback(transport);
|
|
|
|
} });
|
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 16:01:09 +01:00
|
|
|
function cdmScrollViewport(where) {
|
|
|
|
debug("cdmScrollViewport: " + where);
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ctr = $("headlinesInnerContainer");
|
2008-02-19 16:01:09 +01:00
|
|
|
|
|
|
|
if (!ctr) return;
|
|
|
|
|
|
|
|
if (where == "bottom") {
|
|
|
|
ctr.scrollTop = ctr.scrollHeight;
|
|
|
|
} else {
|
|
|
|
ctr.scrollTop = where;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
function cdmArticleIsBelowViewport(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;
|
|
|
|
|
|
|
|
// article starts below viewport
|
|
|
|
|
|
|
|
if (ctr.scrollTop < e.offsetTop) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmArticleIsVisible", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cdmArticleIsAboveViewport(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;
|
|
|
|
|
|
|
|
// article starts above viewport
|
|
|
|
|
|
|
|
if (ctr.scrollTop > e.offsetTop + e.offsetHeight) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmArticleIsVisible", e);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cdmArticleIsActuallyVisible(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;
|
|
|
|
|
|
|
|
// 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) {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
} else if (e.offsetHeight > ctr.offsetHeight &&
|
|
|
|
e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
|
|
|
|
e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmArticleIsVisible", 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) {
|
|
|
|
|
|
|
|
// 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());
|
|
|
|
|
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) {
|
|
|
|
all_counters_callback2(transport);
|
|
|
|
} });
|
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) {
|
2009-02-02 13:02:10 +01:00
|
|
|
try {
|
|
|
|
if (!cache_check_param(id, param)) {
|
|
|
|
debug("cache_article: miss: " + id + " [p=" + param + "]");
|
|
|
|
|
|
|
|
|
|
|
|
if (db) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
var date = new Date();
|
|
|
|
var ts = Math.round(date.getTime() / 1000);
|
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 {
|
|
|
|
|
|
|
|
var cache_obj = new Array();
|
|
|
|
|
|
|
|
cache_obj["id"] = id;
|
|
|
|
cache_obj["data"] = article;
|
|
|
|
cache_obj["param"] = param;
|
|
|
|
|
|
|
|
article_cache.push(cache_obj);
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
debug("cache_article: hit: " + id + " [p=" + param + "]");
|
|
|
|
}
|
|
|
|
} 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 {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return article_cache[i]["data"];
|
|
|
|
}
|
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 {
|
|
|
|
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"];
|
|
|
|
}
|
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 {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return true;
|
|
|
|
}
|
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 {
|
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
|
|
|
|
return true;
|
|
|
|
}
|
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 {
|
2009-02-02 13:02:10 +01:00
|
|
|
while (article_cache.length > 25) {
|
|
|
|
article_cache.shift();
|
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-05-15 13:41:39 +02:00
|
|
|
|
2008-02-23 06:44:13 +01:00
|
|
|
function cache_empty() {
|
|
|
|
article_cache = new Array();
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
var i = 0
|
|
|
|
|
|
|
|
while (i < article_cache.length) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
debug("cache_invalidate: removed id " + id);
|
|
|
|
article_cache.splice(i, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
i++;
|
2007-05-17 09:23:15 +02:00
|
|
|
}
|
2007-05-15 13:41:39 +02:00
|
|
|
}
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2007-05-17 09:23:15 +02:00
|
|
|
debug("cache_invalidate: id not found: " + id);
|
|
|
|
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
|
|
|
|
2008-05-21 05:47:14 +02:00
|
|
|
function cdmClicked(id) {
|
2007-08-09 08:56:11 +02:00
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var elem = $("RROW-" + id);
|
2008-05-21 05:47:14 +02:00
|
|
|
|
|
|
|
if (elem) {
|
2007-08-09 08:56:11 +02:00
|
|
|
var id = elem.id.replace("RROW-", "");
|
|
|
|
active_post_id = id;
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2009-02-04 15:48:49 +01:00
|
|
|
// cdmSelectArticles("none");
|
2008-05-16 04:13:50 +02:00
|
|
|
toggleUnread(id, 0, true);
|
2009-02-04 15:48:49 +01:00
|
|
|
// toggleSelected(id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2007-08-09 08:56:11 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
2008-05-20 07:47:57 +02:00
|
|
|
exception_error("cdmClicked", e);
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
|
|
|
}
|
2007-08-09 08:56:11 +02:00
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
function preload_article_callback(transport) {
|
|
|
|
try {
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var articles = transport.responseXML.getElementsByTagName("article");
|
|
|
|
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var id = articles[i].getAttribute("id");
|
2008-05-18 10:52:42 +02:00
|
|
|
if (!cache_check(id)) {
|
2008-05-18 10:51:07 +02:00
|
|
|
cache_inject(id, articles[i].firstChild.nodeValue);
|
|
|
|
debug("preloaded article: " + id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("preload_article_callback", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
debug("trying to preload article " + id);
|
|
|
|
|
|
|
|
var neighbor_ids = getRelativePostIds(id, 1);
|
|
|
|
|
|
|
|
/* 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());
|
|
|
|
|
|
|
|
cids_to_request.push(id);
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=getArticles&ids=" +
|
2008-05-18 10:51:07 +02:00
|
|
|
cids_to_request.toString();
|
2009-12-29 16:49:27 +01:00
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2008-05-18 10:51:07 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
preload_article_callback(transport);
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
} 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
|
|
|
// don't do infinite scrolling when Limit == All
|
|
|
|
|
|
|
|
var toolbar_form = document.forms["main_toolbar_form"];
|
|
|
|
|
|
|
|
var limit = toolbar_form.limit[toolbar_form.limit.selectedIndex];
|
|
|
|
if (limit.value != 0) {
|
2008-02-19 16:01:09 +01:00
|
|
|
|
|
|
|
debug((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " +
|
|
|
|
_infscroll_disable);
|
|
|
|
|
|
|
|
if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
|
2007-08-29 16:10:41 +02:00
|
|
|
if (!_infscroll_disable) {
|
|
|
|
debug("more cowbell!");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
var visible_ids;
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
visible_ids = getVisibleHeadlineIds();
|
|
|
|
} else {
|
|
|
|
visible_ids = cdmGetVisibleArticles();
|
|
|
|
}
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (confirm(msg)) {
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
function cdmExpandArticle(a_id) {
|
|
|
|
try {
|
|
|
|
var id = 'CICD-' + a_id;
|
|
|
|
|
2008-05-21 05:47:14 +02:00
|
|
|
try {
|
|
|
|
Element.hide("CEXC-" + a_id);
|
|
|
|
} catch (e) { }
|
|
|
|
|
2007-10-18 04:55:44 +02:00
|
|
|
Effect.Appear(id, {duration : 0.5,
|
|
|
|
beforeStart: function(effect) {
|
|
|
|
var h_id = 'CICH-' + a_id;
|
2009-02-10 10:06:15 +01:00
|
|
|
var h_elem = $(h_id);
|
2007-10-18 04:55:44 +02:00
|
|
|
if (h_elem) { h_elem.style.display = "none"; }
|
|
|
|
|
|
|
|
toggleUnread(a_id, 0);
|
|
|
|
}});
|
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("appearBlockElementF", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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-06-03 17:37:46 +02:00
|
|
|
function hideReadHeadlines() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = false;
|
|
|
|
var vis_ids = new Array();
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if ($("headlinesList")) {
|
2008-06-03 17:37:46 +02:00
|
|
|
ids = getVisibleHeadlineIds();
|
|
|
|
} else {
|
|
|
|
ids = cdmGetVisibleArticles();
|
|
|
|
}
|
|
|
|
|
2008-06-03 17:43:25 +02:00
|
|
|
var read_headlines_visible = true;
|
|
|
|
|
2008-06-03 17:37:46 +02:00
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + ids[i]);
|
2008-06-03 17:37:46 +02:00
|
|
|
|
|
|
|
if (row && row.className) {
|
|
|
|
if (read_headlines_visible) {
|
|
|
|
if (row.className.match("Unread") || row.className.match("Selected")) {
|
|
|
|
Element.show(row);
|
|
|
|
vis_ids.push(ids[i]);
|
|
|
|
} else {
|
|
|
|
//Effect.Fade(row, {duration : 0.3});
|
|
|
|
Element.hide(row);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
Element.show(row);
|
|
|
|
vis_ids.push(ids[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fixHeadlinesOrder(vis_ids);
|
|
|
|
|
|
|
|
read_headlines_visible = !read_headlines_visible;
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hideReadHeadlines", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-08-18 08:21:35 +02:00
|
|
|
function invertHeadlineSelection() {
|
|
|
|
try {
|
|
|
|
var rows = new Array();
|
|
|
|
var r = false;
|
|
|
|
|
|
|
|
if (!isCdmMode()) {
|
|
|
|
r = document.getElementsByTagName("TR");
|
|
|
|
} else {
|
|
|
|
r = document.getElementsByTagName("DIV");
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var i = 0; i < r.length; i++) {
|
|
|
|
if (r[i].id && r[i].id.match("RROW-")) {
|
|
|
|
rows.push(r[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
var nc = rows[i].className;
|
|
|
|
var id = rows[i].id.replace("RROW-", "");
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("RCHK-" + id);
|
2008-08-18 08:21:35 +02:00
|
|
|
|
|
|
|
if (!rows[i].className.match("Selected")) {
|
|
|
|
nc = nc + "Selected";
|
|
|
|
cb.checked = true;
|
|
|
|
} else {
|
|
|
|
nc = nc.replace("Selected", "");
|
|
|
|
cb.checked = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
rows[i].className = nc;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("invertHeadlineSelection", 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
|
|
|
|
2008-10-22 09:54:38 +02:00
|
|
|
function showOriginalArticleInline(id) {
|
|
|
|
try {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=getArticleLink&id=" + id;
|
2008-10-22 09:54:38 +02:00
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2008-10-22 09:54:38 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
|
|
|
|
var link = transport.responseXML.getElementsByTagName("link")[0];
|
|
|
|
var id = transport.responseXML.getElementsByTagName("id")[0];
|
|
|
|
|
|
|
|
notify("");
|
|
|
|
|
|
|
|
if (link && id) {
|
|
|
|
link = link.firstChild.nodeValue;
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ci = $("content-insert");
|
2008-10-22 09:54:38 +02:00
|
|
|
|
|
|
|
var tmp = "<iframe id=\"inline_orig_article\" width=\""+ci.offsetWidth+"\" height=\""+ci.offsetHeight+"\" style=\"border-width : 0px;\" src=\""+link+"\"></iframe>";
|
|
|
|
|
|
|
|
render_article(tmp);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("showOriginalArticleInline", 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);
|
|
|
|
}
|
|
|
|
}
|