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:12:33 +01:00
|
|
|
var _cdm_wd_timeout = false;
|
|
|
|
var _cdm_wd_vishist = new Array();
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var article_cache = new Array();
|
|
|
|
|
2008-05-17 06:42:20 +02:00
|
|
|
var vgroup_last_feed = false;
|
2008-05-17 17:58:15 +02:00
|
|
|
var post_under_pointer = false;
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2008-05-20 18:06:12 +02:00
|
|
|
var last_requested_article = false;
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
var preload_id_batch = [];
|
|
|
|
var preload_timeout_id = false;
|
|
|
|
|
|
|
|
var cache_added = [];
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
function catchup_callback2(transport, callback) {
|
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("catchup_callback2 " + transport + ", " + callback);
|
2007-08-24 06:04:55 +02:00
|
|
|
notify("");
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
if (callback) {
|
|
|
|
setTimeout(callback, 10);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("catchup_callback2", e, transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
function headlines_callback2(transport, feed_cur_page) {
|
2007-11-21 09:23:34 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
if (!handle_rpc_reply(transport)) return;
|
2009-02-12 22:12:18 +01:00
|
|
|
|
2010-11-19 14:08:02 +01:00
|
|
|
loading_set_progress(25);
|
2008-05-19 09:37:44 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("headlines_callback2 [page=" + feed_cur_page + "]");
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2009-01-31 21:03:40 +01:00
|
|
|
if (!transport_error_check(transport)) return;
|
|
|
|
|
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
|
|
|
|
2010-11-13 16:48:56 +01:00
|
|
|
var update_btn = document.forms["main_toolbar_form"].update;
|
|
|
|
|
|
|
|
update_btn.disabled = !(feed_id >= 0 && !is_cat);
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
try {
|
|
|
|
if (feed_cur_page == 0) {
|
2010-11-15 19:49:00 +01:00
|
|
|
$("headlines-frame").scrollTop = 0;
|
2007-08-24 06:59:12 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
} catch (e) { };
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
2010-11-06 20:19:08 +01:00
|
|
|
var response = transport.responseXML;
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var headlines = response.getElementsByTagName("headlines")[0];
|
2010-11-15 11:12:02 +01:00
|
|
|
|
|
|
|
var headlines_content = headlines.getElementsByTagName("content")[0];
|
|
|
|
var headlines_toolbar = headlines.getElementsByTagName("toolbar")[0];
|
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var headlines_info = response.getElementsByTagName("headlines-info")[0];
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
if (headlines_info)
|
|
|
|
headlines_info = JSON.parse(headlines_info.firstChild.nodeValue);
|
2010-11-10 19:56:28 +01:00
|
|
|
else {
|
|
|
|
console.error("didn't find headlines-info object in response");
|
|
|
|
return;
|
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var headlines_count = headlines_info.count;
|
|
|
|
var headlines_unread = headlines_info.unread;
|
|
|
|
var disable_cache = headlines_info.disable_cache;
|
|
|
|
|
|
|
|
vgroup_last_feed = headlines_info.vgroup_last_feed;
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2010-11-14 00:12:24 +01:00
|
|
|
if (parseInt(headlines_count) < getInitParam("default_article_limit")) {
|
2008-02-19 16:01:09 +01:00
|
|
|
_infscroll_disable = 1;
|
|
|
|
} else {
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
|
|
|
|
2010-11-06 20:19:08 +01:00
|
|
|
var counters = response.getElementsByTagName("counters")[0];
|
|
|
|
var articles = response.getElementsByTagName("article");
|
|
|
|
var runtime_info = response.getElementsByTagName("runtime-info");
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
if (feed_cur_page == 0) {
|
|
|
|
if (headlines) {
|
2010-11-19 17:09:31 +01:00
|
|
|
dijit.byId("headlines-frame").attr('content',
|
|
|
|
headlines_content.firstChild.nodeValue);
|
2010-11-15 11:12:02 +01:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
dijit.byId("headlines-toolbar").attr('content',
|
|
|
|
headlines_toolbar.firstChild.nodeValue);
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2010-11-19 19:05:28 +01:00
|
|
|
initHeadlinesMenu();
|
|
|
|
|
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,
|
2010-11-15 19:49:00 +01:00
|
|
|
$("headlines-frame").innerHTML, headlines_unread);
|
2007-11-21 11:34:06 +01:00
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("headlines_callback: returned no data");
|
2010-11-19 17:09:31 +01:00
|
|
|
dijit.byId("headlines-frame").attr('content',
|
|
|
|
"<div class='whiteBox'>" +
|
|
|
|
__('Could not update headlines (missing XML data)') + "</div>");
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (headlines) {
|
|
|
|
if (headlines_count > 0) {
|
2010-11-11 10:19:28 +01:00
|
|
|
console.log("adding some more headlines...");
|
2007-09-05 18:10:35 +02:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
var c = dijit.byId("headlines-frame");
|
2007-09-05 18:10:35 +02:00
|
|
|
var ids = getSelectedArticleIds2();
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
c.attr('content', c.attr('content') +
|
|
|
|
headlines_content.firstChild.nodeValue);
|
2007-09-05 18:10:35 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("restore selected ids: " + ids);
|
2007-09-05 18:10:35 +02:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
markHeadline(ids[i]);
|
|
|
|
}
|
|
|
|
|
2010-11-19 19:05:28 +01:00
|
|
|
initHeadlinesMenu();
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("no new headlines received");
|
2007-08-24 07:31:57 +02:00
|
|
|
}
|
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("headlines_callback: returned no data");
|
2007-08-24 07:45:42 +02:00
|
|
|
notify_error("Error while trying to load more headlines");
|
|
|
|
}
|
2008-05-19 09:37:44 +02:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (articles) {
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var a_id = articles[i].getAttribute("id");
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("found id: " + a_id);
|
2007-08-24 07:45:42 +02:00
|
|
|
cache_inject(a_id, articles[i].firstChild.nodeValue);
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
2007-05-16 09:05:42 +02:00
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("no cached articles received");
|
2007-05-15 09:37:10 +02:00
|
|
|
}
|
2010-11-11 07:56:03 +01:00
|
|
|
|
|
|
|
if (counters)
|
|
|
|
parse_counters(counters);
|
|
|
|
else
|
|
|
|
request_counters();
|
2010-11-10 19:56:28 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (runtime_info) {
|
|
|
|
parse_runtime_info(runtime_info[0]);
|
2010-11-10 19:56:28 +01:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2007-05-15 07:59:22 +02:00
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("headlines_callback: returned no XML object");
|
2010-11-19 17:09:31 +01:00
|
|
|
dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
|
|
|
|
__('Could not update headlines (missing XML object)') + "</div>");
|
2007-05-15 07:59:22 +02:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
2010-11-10 12:48:35 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
|
2010-11-13 12:04:37 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (isCdmMode() &&
|
2008-11-13 06:53:41 +01:00
|
|
|
getActiveFeedId() != -3 &&
|
2007-08-24 07:45:42 +02:00
|
|
|
getInitParam("cdm_auto_catchup") == 1) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("starting CDM watchdog");
|
2007-08-24 07:45:42 +02:00
|
|
|
_cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
|
|
|
|
_cdm_wd_vishist = new Array();
|
2007-03-06 07:30:17 +01:00
|
|
|
} else {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("not in CDM mode or watchdog disabled");
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
2007-08-24 07:45:42 +02:00
|
|
|
|
|
|
|
_feed_cur_page = feed_cur_page;
|
2007-08-28 07:05:45 +02:00
|
|
|
_infscroll_request_sent = 0;
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
notify("");
|
2008-05-19 09:37:44 +02:00
|
|
|
|
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 {
|
2010-11-16 12:43:43 +01:00
|
|
|
dijit.byId("headlines-wrap-inner").addChild(
|
|
|
|
dijit.byId("content-insert"));
|
|
|
|
|
2010-11-16 17:15:04 +01:00
|
|
|
var c = $("content-insert");
|
2008-07-25 07:11:22 +02:00
|
|
|
|
2008-07-30 05:27:25 +02:00
|
|
|
try {
|
2010-11-16 17:15:04 +01:00
|
|
|
c.scrollTop = 0;
|
2008-07-30 05:27:25 +02:00
|
|
|
} catch (e) { };
|
2009-06-17 09:16:44 +02:00
|
|
|
|
2010-11-16 17:15:04 +01:00
|
|
|
c.innerHTML = article;
|
|
|
|
|
|
|
|
correctHeadlinesOffset(getActiveArticleId());
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("render_article", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
function showArticleInHeadlines(id) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
try {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
selectArticles("none");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var crow = $("RROW-" + id);
|
2007-10-10 14:09:09 +02:00
|
|
|
|
|
|
|
if (!crow) return;
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var article_is_unread = crow.hasClassName("Unread");
|
2007-08-24 09:56:13 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
crow.removeClassName("Unread");
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('none');
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
2007-11-22 06:15:21 +01:00
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
var cache_prefix = "";
|
2007-11-22 06:15:21 +01:00
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
if (activeFeedIsCat()) {
|
|
|
|
cache_prefix = "C:";
|
|
|
|
} else {
|
|
|
|
cache_prefix = "F:";
|
|
|
|
}
|
2007-11-22 08:45:46 +01:00
|
|
|
|
|
|
|
var view_mode = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
view_mode = document.forms['main_toolbar_form'].view_mode;
|
|
|
|
view_mode = view_mode[view_mode.selectedIndex].value;
|
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
//
|
2007-11-22 08:45:46 +01:00
|
|
|
}
|
|
|
|
|
2009-08-21 13:24:18 +02:00
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
2007-11-22 06:15:21 +01:00
|
|
|
|
|
|
|
cache_invalidate(cache_prefix + getActiveFeedId());
|
2007-11-22 07:03:37 +01:00
|
|
|
|
|
|
|
cache_inject(cache_prefix + getActiveFeedId(),
|
2009-02-10 10:06:15 +01:00
|
|
|
$("headlines-frame").innerHTML,
|
2010-11-17 10:51:30 +01:00
|
|
|
getFeedUnread(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,
|
2010-11-17 10:51:30 +01:00
|
|
|
getFeedUnread(getActiveFeedId())-1);
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2007-11-26 18:32:37 +01:00
|
|
|
} else if (article_is_unread) {
|
|
|
|
cache_invalidate(cache_prefix + getActiveFeedId());
|
2007-08-24 09:56:13 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-11-22 08:36:26 +01:00
|
|
|
markHeadline(id);
|
|
|
|
|
2010-11-11 09:36:56 +01:00
|
|
|
if (article_is_unread)
|
|
|
|
_force_scheduled_update = true;
|
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("showArticleInHeadlines", e);
|
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function article_callback2(transport, id) {
|
2007-08-24 09:53:35 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("article_callback2 " + id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
if (!handle_rpc_reply(transport)) return;
|
2009-02-12 22:12:18 +01:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
if (transport.responseXML) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-01-31 21:03:40 +01:00
|
|
|
if (!transport_error_check(transport)) return;
|
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
|
|
|
if (upic) {
|
|
|
|
upic.src = 'images/blank_icon.gif';
|
|
|
|
}
|
|
|
|
|
2009-10-07 12:22:44 +02:00
|
|
|
if (id != last_requested_article) {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("requested article id is out of sequence, aborting");
|
2009-10-07 12:22:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
// active_post_id = id;
|
2009-10-07 12:22:44 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("looking for articles to cache...");
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
var articles = transport.responseXML.getElementsByTagName("article");
|
|
|
|
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var a_id = articles[i].getAttribute("id");
|
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("found id: " + a_id);
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
if (a_id == active_post_id) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("active article, rendering...");
|
2007-08-24 09:53:35 +02:00
|
|
|
render_article(articles[i].firstChild.nodeValue);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
cache_inject(a_id, articles[i].firstChild.nodeValue);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2008-05-22 07:45:11 +02:00
|
|
|
|
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
// showArticleInHeadlines(id);
|
2008-05-22 07:45:11 +02:00
|
|
|
|
|
|
|
var reply = transport.responseXML.firstChild.firstChild;
|
2007-08-24 09:53:35 +02:00
|
|
|
|
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
console.warn("article_callback: returned no XML object");
|
2009-02-10 10:06:15 +01:00
|
|
|
//var f = $("content-frame");
|
2008-07-25 07:11:22 +02:00
|
|
|
//f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2006-11-23 06:26:49 +01:00
|
|
|
|
|
|
|
var date = new Date();
|
|
|
|
last_article_view = date.getTime() / 1000;
|
|
|
|
|
2010-11-16 10:23:06 +01:00
|
|
|
request_counters();
|
2007-03-04 10:54:07 +01:00
|
|
|
|
|
|
|
notify("");
|
2007-08-24 09:53:35 +02:00
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("article_callback2", e, transport);
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function view(id) {
|
2006-05-23 08:55:26 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("loading article: " + id);
|
2009-12-29 16:03:16 +01:00
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var cached_article = cache_find(id);
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("cache check result: " + (cached_article != false));
|
2006-05-23 08:55:26 +02:00
|
|
|
|
|
|
|
enableHotkeys();
|
2009-10-27 14:24:37 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
var query = "?op=view&id=" + param_escape(id);
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
var neighbor_ids = getRelativePostIds(active_post_id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
/* only request uncached articles */
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
var cids_to_request = Array();
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
for (var i = 0; i < neighbor_ids.length; i++) {
|
|
|
|
if (!cache_check(neighbor_ids[i])) {
|
|
|
|
cids_to_request.push(neighbor_ids[i]);
|
2007-05-15 07:41:48 +02:00
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("additional ids: " + cids_to_request.toString());
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
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);
|
2010-11-14 13:55:51 +01:00
|
|
|
var article_is_unread = crow.hasClassName("Unread");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
active_post_id = id;
|
2008-05-22 07:40:57 +02:00
|
|
|
showArticleInHeadlines(id);
|
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
if (!cached_article) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
|
|
|
if (upic) {
|
2010-01-14 21:09:23 +01:00
|
|
|
upic.src = getInitParam("sign_progress");
|
2009-10-07 12:22:44 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
} else if (cached_article && article_is_unread) {
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&mode=prefetch";
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
render_article(cached_article);
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
} else if (cached_article) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&mode=prefetch_old";
|
|
|
|
render_article(cached_article);
|
2008-05-20 17:59:42 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
cache_expire();
|
2007-02-07 18:01:35 +01:00
|
|
|
|
2008-05-20 18:06:12 +02:00
|
|
|
last_requested_article = id;
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 09:53:35 +02:00
|
|
|
onComplete: function(transport) {
|
2009-12-29 20:38:22 +01:00
|
|
|
article_callback2(transport, id);
|
2007-08-24 09:53:35 +02:00
|
|
|
} });
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2008-05-21 09:50:58 +02:00
|
|
|
return false;
|
|
|
|
|
2006-05-23 08:55:26 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("view", e);
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2007-05-15 09:51:57 +02:00
|
|
|
function tMark(id) {
|
|
|
|
return toggleMark(id);
|
|
|
|
}
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
function tPub(id) {
|
|
|
|
return togglePub(id);
|
|
|
|
}
|
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
function toggleMark(id, client_only) {
|
2007-08-20 14:37:46 +02:00
|
|
|
try {
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&subop=mark";
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
var img = $("FMPIC-" + id);
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (!img) return;
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (img.src.match("mark_unset")) {
|
|
|
|
img.src = img.src.replace("mark_unset", "mark_set");
|
|
|
|
img.alt = __("Unstar article");
|
2007-08-20 14:37:46 +02:00
|
|
|
query = query + "&mark=1";
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2007-08-20 14:37:46 +02:00
|
|
|
} else {
|
2010-11-13 23:41:27 +01:00
|
|
|
img.src = img.src.replace("mark_set", "mark_unset");
|
|
|
|
img.alt = __("Star article");
|
2007-08-20 14:37:46 +02:00
|
|
|
query = query + "&mark=0";
|
2007-08-20 09:59:18 +02:00
|
|
|
}
|
2006-05-23 08:35:27 +02:00
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
if (!client_only) {
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-08-23 15:54:17 +02:00
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2007-08-20 14:37:46 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleMark", e);
|
|
|
|
}
|
2005-09-05 14:02:00 +02:00
|
|
|
}
|
|
|
|
|
2009-03-21 21:11:58 +01:00
|
|
|
function togglePub(id, client_only, no_effects, note) {
|
2007-08-10 06:03:56 +02:00
|
|
|
try {
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&subop=publ";
|
2007-08-10 06:03:56 +02:00
|
|
|
|
2009-03-21 21:11:58 +01:00
|
|
|
if (note != undefined) {
|
|
|
|
query = query + "¬e=" + param_escape(note);
|
|
|
|
} else {
|
|
|
|
query = query + "¬e=undefined";
|
|
|
|
}
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
var img = $("FPPIC-" + id);
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (!img) return;
|
2007-08-10 06:03:56 +02:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (img.src.match("pub_unset") || note != undefined) {
|
|
|
|
img.src = img.src.replace("pub_unset", "pub_set");
|
|
|
|
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 {
|
2010-11-13 23:41:27 +01:00
|
|
|
img.src = img.src.replace("pub_set", "pub_unset");
|
|
|
|
img.alt = __("Publish article");
|
2010-11-13 12:04:37 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
query = query + "&pub=0";
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
if (!client_only) {
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2010-01-13 10:48:49 +01:00
|
|
|
|
|
|
|
var note = transport.responseXML.getElementsByTagName("note")[0];
|
|
|
|
|
|
|
|
if (note) {
|
|
|
|
var note_id = note.getAttribute("id");
|
|
|
|
var note_size = note.getAttribute("size");
|
|
|
|
var note_content = note.firstChild.nodeValue;
|
|
|
|
|
|
|
|
var container = $('POSTNOTE-' + note_id);
|
|
|
|
|
|
|
|
cache_invalidate(note_id);
|
|
|
|
|
|
|
|
if (container) {
|
|
|
|
if (note_size == "0") {
|
|
|
|
Element.hide(container);
|
|
|
|
} else {
|
|
|
|
container.innerHTML = note_content;
|
|
|
|
Element.show(container);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-08-23 15:54:17 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("togglePub", e);
|
|
|
|
}
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
2005-09-05 14:41:59 +02:00
|
|
|
function moveToPost(mode) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var rows = getVisibleArticleIds();
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
var prev_id = false;
|
|
|
|
var next_id = false;
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if (!$('RROW-' + active_post_id)) {
|
2008-05-16 04:06:57 +02:00
|
|
|
active_post_id = false;
|
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (active_post_id == false) {
|
|
|
|
next_id = getFirstVisibleHeadlineId();
|
|
|
|
prev_id = getLastVisibleHeadlineId();
|
|
|
|
} else {
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
if (rows[i] == active_post_id) {
|
|
|
|
prev_id = rows[i-1];
|
|
|
|
next_id = rows[i+1];
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "next") {
|
|
|
|
if (next_id) {
|
|
|
|
if (isCdmMode()) {
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
cdmExpandArticle(next_id);
|
|
|
|
cdmScrollToArticleId(next_id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
} else {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(next_id);
|
|
|
|
view(next_id, getActiveFeedId());
|
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "prev") {
|
|
|
|
if (prev_id) {
|
|
|
|
if (isCdmMode()) {
|
2010-11-09 18:57:23 +01:00
|
|
|
cdmExpandArticle(prev_id);
|
2008-05-16 04:06:57 +02:00
|
|
|
cdmScrollToArticleId(prev_id);
|
|
|
|
} else {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(prev_id);
|
|
|
|
view(prev_id, getActiveFeedId());
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("moveToPost", e);
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
function toggleSelected(id, force_on) {
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("RCHK-" + id);
|
|
|
|
var row = $("RROW-" + id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (row) {
|
2010-11-16 12:43:43 +01:00
|
|
|
if (row.hasClassName('Selected') && !force_on) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.removeClassName('Selected');
|
|
|
|
if (cb) cb.checked = false;
|
2008-02-19 15:49:36 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName('Selected');
|
|
|
|
if (cb) cb.checked = true;
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
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) {
|
2007-10-18 05:00:18 +02:00
|
|
|
if (cmode == undefined || cmode == 2) {
|
2010-11-14 13:55:51 +01:00
|
|
|
if (row.hasClassName("Unread")) {
|
|
|
|
row.removeClassName("Unread");
|
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 {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2007-10-18 05:00:18 +02:00
|
|
|
}
|
2009-02-04 20:55:01 +01:00
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else if (cmode == 0) {
|
2010-11-14 13:55:51 +01:00
|
|
|
|
|
|
|
row.removeClassName("Unread");
|
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
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else if (cmode == 1) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2006-05-16 15:41:57 +02:00
|
|
|
}
|
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
if (cmode == undefined) cmode = 2;
|
2006-05-16 15:41:57 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
|
2006-05-16 15:41:57 +02:00
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
// notify_progress("Loading, please wait...");
|
2007-03-04 10:54:07 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2006-05-16 15:41:57 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-18 10:09:52 +01:00
|
|
|
function selectionRemoveLabel(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// var ok = confirm(__("Remove selected articles from label?"));
|
2009-01-18 10:09:52 +01:00
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// if (ok) {
|
2009-01-18 10:09:52 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=removeFromLabel&ids=" +
|
2009-01-18 10:09:52 +01:00
|
|
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
console.log(query);
|
|
|
|
|
2009-01-18 10:09:52 +01:00
|
|
|
// notify_progress("Loading, please wait...");
|
|
|
|
|
2009-01-18 11:25:06 +01:00
|
|
|
cache_invalidate("F:" + (-11 - id));
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-01-18 10:09:52 +01:00
|
|
|
onComplete: function(transport) {
|
2009-01-18 16:29:25 +01:00
|
|
|
show_labels_in_headlines(transport);
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2009-01-18 10:09:52 +01:00
|
|
|
} });
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// }
|
2009-01-18 10:09:52 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionAssignLabel", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-01-18 09:47:34 +01:00
|
|
|
function selectionAssignLabel(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// var ok = confirm(__("Assign selected articles to label?"));
|
2009-01-18 09:47:34 +01:00
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// if (ok) {
|
2009-01-18 09:47:34 +01:00
|
|
|
|
2009-01-18 11:25:06 +01:00
|
|
|
cache_invalidate("F:" + (-11 - id));
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=assignToLabel&ids=" +
|
2009-01-18 09:47:34 +01:00
|
|
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
|
|
|
|
2010-11-10 16:50:51 +01:00
|
|
|
console.log(query);
|
|
|
|
|
2009-01-18 09:47:34 +01:00
|
|
|
// notify_progress("Loading, please wait...");
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-01-18 09:47:34 +01:00
|
|
|
onComplete: function(transport) {
|
2009-01-18 16:07:31 +01:00
|
|
|
show_labels_in_headlines(transport);
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2009-01-18 09:47:34 +01:00
|
|
|
} });
|
|
|
|
|
2009-01-21 18:12:07 +01:00
|
|
|
// }
|
2009-01-18 09:47:34 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionAssignLabel", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionToggleUnread(set_state, callback_func, no_error) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2007-05-11 07:51:47 +02:00
|
|
|
if (rows.length == 0 && !no_error) {
|
2007-03-26 07:31:42 +02:00
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
for (i = 0; i < rows.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + rows[i]);
|
2005-12-01 13:52:18 +01:00
|
|
|
if (row) {
|
2007-08-19 07:13:45 +02:00
|
|
|
if (set_state == undefined) {
|
2010-11-14 13:55:51 +01:00
|
|
|
if (row.hasClassName("Unread")) {
|
|
|
|
row.removeClassName("Unread");
|
2007-08-19 07:13:45 +02:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2007-08-19 07:13:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (set_state == false) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.removeClassName("Unread");
|
2007-08-19 07:13:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (set_state == true) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2005-12-01 13:52:18 +01:00
|
|
|
}
|
|
|
|
}
|
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";
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=" + cmode + "&ids=" + param_escape(rows.toString());
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2007-03-04 10:54:07 +01:00
|
|
|
notify_progress("Loading, please wait...");
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
catchup_callback2(transport, callback_func);
|
|
|
|
} });
|
2005-11-27 15:56:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleUnread", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionToggleMarked() {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2005-12-13 06:52:32 +01:00
|
|
|
|
2007-03-26 07:31:42 +02:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
for (i = 0; i < rows.length; i++) {
|
2007-08-23 15:54:17 +02:00
|
|
|
toggleMark(rows[i], true, true);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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";
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2005-11-27 15:56:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleMarked", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionTogglePublished() {
|
2007-08-09 14:45:30 +02:00
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < rows.length; i++) {
|
2007-08-23 15:54:17 +02:00
|
|
|
togglePub(rows[i], true, true);
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=publishSelected&ids=" +
|
2007-08-09 14:45:30 +02:00
|
|
|
param_escape(rows.toString()) + "&cmode=2";
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionToggleMarked", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
function getSelectedArticleIds2() {
|
2005-12-13 06:52:32 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var rv = [];
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
$$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
|
2010-11-14 13:55:51 +01:00
|
|
|
function(child) {
|
|
|
|
rv.push(child.id.replace("RROW-", ""));
|
|
|
|
});
|
2005-12-13 06:52:32 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
return rv;
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
function getLoadedArticleIds() {
|
2010-11-14 13:55:51 +01:00
|
|
|
var rv = [];
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
var children = $$("#headlines-frame > div[id*=RROW-]");
|
2008-05-19 12:24:46 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
children.each(function(child) {
|
|
|
|
rv.push(child.id.replace("RROW-", ""));
|
|
|
|
});
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
return rv;
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
// mode = all,none,unread,invert
|
|
|
|
function selectArticles(mode) {
|
|
|
|
try {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
var children = $$("#headlines-frame > div[id*=RROW]");
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
children.each(function(child) {
|
|
|
|
var id = child.id.replace("RROW-", "");
|
|
|
|
var cb = $("RCHK-" + id);
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (mode == "all") {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
|
|
|
} else if (mode == "unread") {
|
|
|
|
if (child.hasClassName("Unread")) {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
child.removeClassName("Selected");
|
2010-11-12 11:52:53 +01:00
|
|
|
cb.checked = false;
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
2010-11-14 13:55:51 +01:00
|
|
|
} else if (mode == "invert") {
|
|
|
|
if (child.hasClassName("Selected")) {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
cb.checked = false;
|
|
|
|
} else {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
cb.checked = false;
|
|
|
|
}
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectArticles", e);
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 10:33:09 +01:00
|
|
|
function catchupPage() {
|
2006-08-02 10:47:34 +02:00
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2007-08-08 15:17:30 +02:00
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
var str = __("Mark all visible articles in %s as read?");
|
|
|
|
|
|
|
|
str = str.replace("%s", fn);
|
2007-08-08 15:17:30 +02:00
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('all');
|
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true)
|
|
|
|
selectArticles('none');
|
2006-02-24 10:33:09 +01:00
|
|
|
}
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
function deleteSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var str;
|
|
|
|
var op;
|
|
|
|
|
|
|
|
if (getActiveFeedId() != 0) {
|
|
|
|
str = __("Delete %d selected articles in %s?");
|
|
|
|
} else {
|
|
|
|
str = __("Delete %d selected articles?");
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop=delete&ids=" + param_escape(rows);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-12-28 15:23:01 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
viewCurrentFeed();
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
2009-12-28 22:09:04 +01:00
|
|
|
exception_error("deleteSelection", e);
|
2009-12-28 15:23:01 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function archiveSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var str;
|
|
|
|
var op;
|
|
|
|
|
|
|
|
if (getActiveFeedId() != 0) {
|
|
|
|
str = __("Archive %d selected articles in %s?");
|
|
|
|
op = "archive";
|
|
|
|
} else {
|
|
|
|
str = __("Move %d archived articles back?");
|
|
|
|
op = "unarchive";
|
|
|
|
}
|
|
|
|
|
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop="+op+"&ids=" + param_escape(rows);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2009-12-28 22:09:04 +01:00
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
cache_invalidate(rows[i]);
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-12-28 15:23:01 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
viewCurrentFeed();
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("archiveSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
function catchupSelection() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2007-08-19 07:13:45 +02:00
|
|
|
|
2007-08-26 08:25:48 +02:00
|
|
|
var str = __("Mark %d selected articles in %s as read?");
|
2007-08-19 07:13:45 +02:00
|
|
|
|
2007-08-26 08:25:48 +02:00
|
|
|
str = str.replace("%d", rows.length);
|
2007-08-19 07:13:45 +02:00
|
|
|
str = str.replace("%s", fn);
|
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true)
|
2007-08-19 07:13:45 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:38:13 +01:00
|
|
|
function editArticleTags(id, feed_id, cdm_enabled) {
|
2010-01-06 12:17:28 +01:00
|
|
|
displayDlg('editArticleTags', id,
|
|
|
|
function () {
|
2010-11-07 10:55:52 +01:00
|
|
|
$("tags_str").focus();
|
|
|
|
|
|
|
|
new Ajax.Autocompleter('tags_str', 'tags_choices',
|
2010-01-06 12:17:28 +01:00
|
|
|
"backend.php?op=rpc&subop=completeTags",
|
|
|
|
{ tokens: ',', paramName: "search" });
|
|
|
|
});
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function editTagsSave() {
|
|
|
|
|
2007-03-02 20:58:58 +01:00
|
|
|
notify_progress("Saving article tags...");
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2006-12-07 08:48:00 +01:00
|
|
|
var form = document.forms["tag_edit_form"];
|
|
|
|
|
|
|
|
var query = Form.serialize("tag_edit_form");
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop=setArticleTags&" + query;
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
console.log(query);
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-26 08:39:46 +02:00
|
|
|
onComplete: function(transport) {
|
2010-01-13 10:48:49 +01:00
|
|
|
try {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("tags saved...");
|
2010-01-13 10:48:49 +01:00
|
|
|
|
|
|
|
closeInfoBox();
|
|
|
|
notify("");
|
2010-11-16 10:23:06 +01:00
|
|
|
|
2010-01-13 10:48:49 +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) {
|
|
|
|
var tags = $("ATSTR-" + id);
|
|
|
|
if (tags) {
|
|
|
|
tags.innerHTML = tags_str.firstChild.nodeValue;
|
|
|
|
}
|
2010-01-18 11:55:28 +01:00
|
|
|
|
|
|
|
cache_invalidate(id);
|
2010-01-13 10:48:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("editTagsSave", e);
|
|
|
|
}
|
2007-08-26 08:39:46 +02:00
|
|
|
} });
|
2006-12-07 08:48:00 +01:00
|
|
|
}
|
2006-12-07 10:27:34 +01:00
|
|
|
|
|
|
|
function editTagsInsert() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var form = document.forms["tag_edit_form"];
|
|
|
|
|
|
|
|
var found_tags = form.found_tags;
|
|
|
|
var tags_str = form.tags_str;
|
|
|
|
|
|
|
|
var tag = found_tags[found_tags.selectedIndex].value;
|
|
|
|
|
|
|
|
if (tags_str.value.length > 0 &&
|
|
|
|
tags_str.value.lastIndexOf(", ") != tags_str.value.length - 2) {
|
|
|
|
|
|
|
|
tags_str.value = tags_str.value + ", ";
|
|
|
|
}
|
|
|
|
|
|
|
|
tags_str.value = tags_str.value + tag + ", ";
|
|
|
|
|
|
|
|
found_tags.selectedIndex = 0;
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("editTagsInsert", e);
|
2006-12-07 10:27:34 +01:00
|
|
|
}
|
|
|
|
}
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
function cdmScrollToArticleId(id) {
|
|
|
|
try {
|
2010-11-16 08:09:19 +01:00
|
|
|
var ctr = $("headlines-frame");
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + id);
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
if (!e || !ctr) return;
|
|
|
|
|
|
|
|
ctr.scrollTop = e.offsetTop;
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmScrollToArticleId", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-01-25 10:12:33 +01:00
|
|
|
function cdmWatchdog() {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
var ctr = $("headlines-frame");
|
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) {
|
2010-11-14 13:55:51 +01:00
|
|
|
if (e.className && e.hasClassName("Unread") && e.id &&
|
2007-01-25 10:12:33 +01:00
|
|
|
e.id.match("RROW-")) {
|
|
|
|
|
|
|
|
// article fits in viewport OR article is longer than viewport and
|
|
|
|
// its bottom is visible
|
|
|
|
|
|
|
|
if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
|
|
|
|
ctr.scrollTop + ctr.offsetHeight) {
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
// console.log(e.id + " is visible " + e.offsetTop + "." +
|
2007-01-25 10:12:33 +01:00
|
|
|
// (e.offsetTop + e.offsetHeight) + " vs " + ctr.scrollTop + "." +
|
|
|
|
// (ctr.scrollTop + ctr.offsetHeight));
|
|
|
|
|
|
|
|
ids.push(e.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
} else if (e.offsetHeight > ctr.offsetHeight &&
|
|
|
|
e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
|
|
|
|
e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
|
|
|
|
|
|
|
|
ids.push(e.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-26 06:36:19 +01:00
|
|
|
// method 2: article bottom is visible and is in upper 1/2 of the viewport
|
|
|
|
|
|
|
|
/* if (e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
|
|
|
|
e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight/2) {
|
|
|
|
|
|
|
|
ids.push(e.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
} */
|
|
|
|
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
e = e.nextSibling;
|
|
|
|
}
|
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("cdmWatchdog, ids= " + ids.toString());
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
if (ids.length > 0) {
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids[i]);
|
2007-01-25 10:12:33 +01:00
|
|
|
if (e) {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("Unread");
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0" + "&ids=" + param_escape(ids.toString());
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-24 06:04:55 +02:00
|
|
|
onComplete: function(transport) {
|
2010-11-10 19:56:28 +01:00
|
|
|
handle_rpc_reply(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-01-26 06:36:19 +01:00
|
|
|
_cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 4000);
|
2007-01-25 10:12:33 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmWatchdog", e);
|
2007-01-25 10:12:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
function cache_inject(id, article, param) {
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
try {
|
|
|
|
if (!cache_check_param(id, param)) {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_article: miss: " + id + " [p=" + param + "]");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
var date = new Date();
|
|
|
|
var ts = Math.round(date.getTime() / 1000);
|
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
var cache_obj = {};
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
cache_obj["id"] = id;
|
|
|
|
cache_obj["data"] = article;
|
|
|
|
cache_obj["param"] = param;
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (param) id = id + ":" + param;
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
cache_added["TS:" + id] = ts;
|
|
|
|
|
|
|
|
if (has_local_storage())
|
|
|
|
localStorage.setItem(id, JSON.stringify(cache_obj));
|
|
|
|
else
|
|
|
|
article_cache.push(cache_obj);
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_article: hit: " + id + " [p=" + param + "]");
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cache_inject", e);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_find(id) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
|
|
|
var cache_obj = localStorage.getItem(id);
|
2009-02-02 13:14:34 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (cache_obj) {
|
|
|
|
cache_obj = JSON.parse(cache_obj);
|
2009-02-04 12:20:25 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (cache_obj)
|
|
|
|
return cache_obj['data'];
|
|
|
|
}
|
2009-02-04 12:20:25 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-14 19:50:13 +01:00
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
return article_cache[i]["data"];
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
return false;
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
2007-11-21 10:05:04 +01:00
|
|
|
function cache_find_param(id, param) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (param) id = id + ":" + param;
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
var cache_obj = localStorage.getItem(id);
|
2009-02-04 12:20:25 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (cache_obj) {
|
|
|
|
cache_obj = JSON.parse(cache_obj);
|
2009-02-04 12:20:25 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (cache_obj)
|
|
|
|
return cache_obj['data'];
|
|
|
|
}
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-14 19:50:13 +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"];
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-14 19:50:13 +01:00
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
function cache_check(id) {
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
|
|
|
if (localStorage.getItem(id))
|
|
|
|
return true;
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-14 19:50:13 +01:00
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
2010-11-10 14:27:56 +01:00
|
|
|
return true;
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
|
|
|
|
2007-11-21 09:23:34 +01:00
|
|
|
function cache_check_param(id, param) {
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
2007-11-21 10:05:04 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (param) id = id + ":" + param;
|
2009-02-02 13:02:10 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (localStorage.getItem(id))
|
|
|
|
return true;
|
2009-02-04 12:20:25 +01:00
|
|
|
|
2009-02-02 13:02:10 +01:00
|
|
|
} else {
|
2010-11-14 19:50:13 +01:00
|
|
|
for (var i = 0; i < article_cache.length; i++) {
|
|
|
|
if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
|
2010-11-10 14:27:56 +01:00
|
|
|
return true;
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-11-21 09:23:34 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
function cache_expire() {
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
var date = new Date();
|
|
|
|
var timestamp = Math.round(date.getTime() / 1000);
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
for (var i = 0; i < localStorage.length; i++) {
|
2010-11-10 14:33:15 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
var id = localStorage.key(i);
|
2010-11-10 14:33:15 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (timestamp - cache_added["TS:" + id] > 180) {
|
|
|
|
localStorage.removeItem(id);
|
2010-11-07 10:54:43 +01:00
|
|
|
}
|
2010-11-14 19:50:13 +01:00
|
|
|
}
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
} else {
|
|
|
|
while (article_cache.length > 25) {
|
|
|
|
article_cache.shift();
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2007-05-15 07:21:19 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2007-05-15 13:41:39 +02:00
|
|
|
|
2010-01-19 16:22:35 +01:00
|
|
|
function cache_flush() {
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
2010-11-10 12:48:35 +01:00
|
|
|
localStorage.clear();
|
|
|
|
} else {
|
|
|
|
article_cache = new Array();
|
|
|
|
}
|
2008-02-23 06:44:13 +01:00
|
|
|
}
|
|
|
|
|
2007-05-15 13:41:39 +02:00
|
|
|
function cache_invalidate(id) {
|
2007-05-17 09:23:15 +02:00
|
|
|
try {
|
2010-11-14 19:50:13 +01:00
|
|
|
if (has_local_storage()) {
|
2007-05-17 09:23:15 +02:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
var found = false;
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
for (var i = 0; i < localStorage.length; i++) {
|
|
|
|
var key = localStorage.key(i);
|
2010-11-10 14:27:56 +01:00
|
|
|
|
|
|
|
// console.warn("cache_invalidate: " + key_id + " cmp " + id);
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
if (key == id || key.indexOf(id + ":") == 0) {
|
|
|
|
localStorage.removeItem(key);
|
|
|
|
found = true;
|
|
|
|
break;
|
2010-11-07 10:54:43 +01:00
|
|
|
}
|
2010-11-14 19:50:13 +01:00
|
|
|
}
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
return found;
|
2010-11-10 14:27:56 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
} else {
|
|
|
|
var i = 0
|
2010-11-07 10:54:43 +01:00
|
|
|
|
2010-11-14 19:50:13 +01:00
|
|
|
while (i < article_cache.length) {
|
|
|
|
if (article_cache[i]["id"] == id) {
|
|
|
|
//console.log("cache_invalidate: removed id " + id);
|
|
|
|
article_cache.splice(i, 1);
|
|
|
|
return true;
|
2009-02-02 13:02:10 +01:00
|
|
|
}
|
2010-11-14 19:50:13 +01:00
|
|
|
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
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("cache_invalidate: id not found: " + id);
|
2007-05-17 09:23:15 +02:00
|
|
|
return false;
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cache_invalidate", e);
|
2007-05-15 13:41:39 +02:00
|
|
|
}
|
|
|
|
}
|
2007-07-20 08:01:18 +02:00
|
|
|
|
|
|
|
function getActiveArticleId() {
|
|
|
|
return active_post_id;
|
|
|
|
}
|
2007-08-09 08:56:11 +02:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
function preloadBatchedArticles() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=getArticles&ids=" +
|
|
|
|
preload_id_batch.toString();
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
|
|
|
|
preload_id_batch = [];
|
|
|
|
|
|
|
|
var articles = transport.responseXML.getElementsByTagName("article");
|
|
|
|
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
|
|
|
var id = articles[i].getAttribute("id");
|
|
|
|
if (!cache_check(id)) {
|
|
|
|
cache_inject(id, articles[i].firstChild.nodeValue);
|
|
|
|
console.log("preloaded article: " + id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("preloadBatchedArticles", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
function preloadArticleUnderPointer(id) {
|
|
|
|
try {
|
2008-06-24 09:43:20 +02:00
|
|
|
if (getInitParam("bw_limit") == "1") return;
|
|
|
|
|
2008-05-18 10:52:42 +02:00
|
|
|
if (post_under_pointer == id && !cache_check(id)) {
|
2008-05-18 10:51:07 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("trying to preload article " + id);
|
2008-05-18 10:51:07 +02:00
|
|
|
|
|
|
|
var neighbor_ids = getRelativePostIds(id, 1);
|
|
|
|
|
|
|
|
/* only request uncached articles */
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
if (preload_id_batch.indexOf(id) == -1) {
|
|
|
|
for (var i = 0; i < neighbor_ids.length; i++) {
|
|
|
|
if (!cache_check(neighbor_ids[i])) {
|
|
|
|
preload_id_batch.push(neighbor_ids[i]);
|
|
|
|
}
|
2008-05-18 10:51:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
if (preload_id_batch.indexOf(id) == -1)
|
|
|
|
preload_id_batch.push(id);
|
2008-05-18 10:51:07 +02:00
|
|
|
|
2010-11-10 19:56:28 +01:00
|
|
|
//console.log("preload ids batch: " + preload_id_batch.toString());
|
2009-12-29 16:49:27 +01:00
|
|
|
|
2010-11-10 14:27:56 +01:00
|
|
|
window.clearTimeout(preload_timeout_id);
|
|
|
|
preload_batch_timeout_id = window.setTimeout('preloadBatchedArticles()', 1000);
|
2010-01-13 10:48:49 +01:00
|
|
|
|
2008-05-18 10:51:07 +02:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("preloadArticleUnderPointer", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function postMouseIn(id) {
|
|
|
|
try {
|
2008-05-18 10:51:07 +02:00
|
|
|
if (post_under_pointer != id) {
|
|
|
|
post_under_pointer = id;
|
|
|
|
if (!isCdmMode()) {
|
|
|
|
window.setTimeout("preloadArticleUnderPointer(" + id + ")", 250);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("postMouseIn", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function postMouseOut(id) {
|
|
|
|
try {
|
|
|
|
post_under_pointer = false;
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("postMouseOut", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-17 09:34:55 +01:00
|
|
|
function headlines_scroll_handler(e) {
|
2007-08-09 09:36:04 +02:00
|
|
|
try {
|
|
|
|
|
2010-01-04 10:12:31 +01:00
|
|
|
if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
|
|
|
|
if (!_infscroll_disable) {
|
|
|
|
viewNextFeedPage();
|
2007-08-24 07:31:57 +02:00
|
|
|
}
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("headlines_scroll_handler", e);
|
|
|
|
}
|
|
|
|
}
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
function catchupRelativeToArticle(below) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2009-02-02 09:49:00 +01:00
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
if (!getActiveArticleId()) {
|
|
|
|
alert(__("No article is selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var visible_ids = getVisibleArticleIds();
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
var ids_to_mark = new Array();
|
|
|
|
|
|
|
|
if (!below) {
|
|
|
|
for (var i = 0; i < visible_ids.length; i++) {
|
|
|
|
if (visible_ids[i] != getActiveArticleId()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + visible_ids[i]);
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
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
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ids_to_mark.length == 0) {
|
|
|
|
alert(__("No articles found to mark"));
|
|
|
|
} else {
|
|
|
|
var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
|
|
|
|
|
2010-10-08 21:27:51 +02:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
for (var i = 0; i < ids_to_mark.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids_to_mark[i]);
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("Unread");
|
2007-08-22 06:45:01 +02:00
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0" + "&ids=" + param_escape(ids_to_mark.toString());
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2007-08-30 03:01:23 +02:00
|
|
|
onComplete: function(transport) {
|
|
|
|
catchup_callback2(transport);
|
|
|
|
} });
|
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupRelativeToArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
function cdmExpandArticle(id) {
|
2007-10-18 04:55:44 +02:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
var elem = $("CICD-" + active_post_id);
|
2008-05-21 05:47:14 +02:00
|
|
|
|
2010-11-12 23:41:18 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
|
|
|
|
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
if (id == active_post_id && Element.visible(elem))
|
|
|
|
return true;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles("none");
|
2010-11-09 18:57:23 +01:00
|
|
|
|
|
|
|
var old_offset = $("RROW-" + id).offsetTop;
|
|
|
|
|
2010-11-11 10:19:28 +01:00
|
|
|
if (active_post_id && elem && !getInitParam("cdm_expanded")) {
|
2010-11-09 18:57:23 +01:00
|
|
|
Element.hide(elem);
|
|
|
|
Element.show("CEXC-" + active_post_id);
|
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
active_post_id = id;
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
elem = $("CICD-" + id);
|
|
|
|
|
|
|
|
if (!Element.visible(elem)) {
|
|
|
|
Element.show(elem);
|
|
|
|
Element.hide("CEXC-" + id);
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
if ($("CWRAP-" + id).innerHTML == "") {
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
$("FUPDPIC-" + id).src = "images/indicator_tiny.gif";
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
$("CWRAP-" + id).innerHTML = "<div class=\"insensitive\">" +
|
|
|
|
__("Loading, please wait...") + "</div>";
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=cdmGetArticle&id=" + param_escape(id);
|
|
|
|
|
|
|
|
//console.log(query);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
$("FUPDPIC-" + id).src = 'images/blank_icon.gif';
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var article = transport.responseXML.getElementsByTagName("article")[0];
|
|
|
|
var recv_id = article.getAttribute("id");
|
|
|
|
|
|
|
|
if (recv_id == id)
|
|
|
|
$("CWRAP-" + id).innerHTML = article.firstChild.nodeValue;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
$("CWRAP-" + id).innerHTML = __("Unable to load article.");
|
|
|
|
|
|
|
|
}
|
|
|
|
}});
|
|
|
|
|
|
|
|
}
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var new_offset = $("RROW-" + id).offsetTop;
|
|
|
|
|
2010-11-16 08:09:19 +01:00
|
|
|
$("headlines-frame").scrollTop += (new_offset-old_offset);
|
2010-11-09 18:57:23 +01:00
|
|
|
|
|
|
|
if ($("RROW-" + id).offsetTop != old_offset)
|
2010-11-16 08:09:19 +01:00
|
|
|
$("headlines-frame").scrollTop = new_offset;
|
2010-11-09 18:57:23 +01:00
|
|
|
|
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
toggleSelected(id);
|
2007-10-18 04:55:44 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
2010-09-13 13:40:35 +02:00
|
|
|
exception_error("cdmExpandArticle", e);
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
return false;
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2008-05-04 09:41:51 +02:00
|
|
|
function fixHeadlinesOrder(ids) {
|
|
|
|
try {
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids[i]);
|
2008-05-04 09:41:51 +02:00
|
|
|
|
|
|
|
if (e) {
|
|
|
|
if (i % 2 == 0) {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("even");
|
|
|
|
e.addClassName("odd");
|
2008-05-04 09:41:51 +02:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("odd");
|
|
|
|
e.addClassName("even");
|
2008-05-04 09:41:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("fixHeadlinesOrder", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function getArticleUnderPointer() {
|
|
|
|
return post_under_pointer;
|
2008-05-04 08:46:32 +02:00
|
|
|
}
|
2008-09-05 09:36:57 +02:00
|
|
|
|
2010-11-16 16:13:17 +01:00
|
|
|
function zoomToArticle(event, id) {
|
2008-09-05 09:36:57 +02:00
|
|
|
try {
|
2010-11-16 12:43:43 +01:00
|
|
|
var cached_article = cache_find(id);
|
|
|
|
|
2010-11-16 12:52:09 +01:00
|
|
|
if (dijit.byId("ATAB-" + id))
|
2010-11-16 16:13:17 +01:00
|
|
|
if (!event || !event.shiftKey)
|
|
|
|
return dijit.byId("content-tabs").selectChild(dijit.byId("ATAB-" + id));
|
2010-11-16 12:52:09 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
if (cached_article) {
|
2010-11-19 17:35:35 +01:00
|
|
|
//closeArticlePanel();
|
2010-11-17 08:16:17 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
var article_pane = new dijit.layout.ContentPane({
|
|
|
|
title: __("Loading...") , content: cached_article,
|
|
|
|
style: 'padding : 0px;',
|
2010-11-16 12:52:09 +01:00
|
|
|
id: 'ATAB-' + id,
|
2010-11-16 12:43:43 +01:00
|
|
|
closable: true });
|
|
|
|
|
|
|
|
dijit.byId("content-tabs").addChild(article_pane);
|
2010-11-16 16:13:17 +01:00
|
|
|
|
|
|
|
if (!event || !event.shiftKey)
|
|
|
|
dijit.byId("content-tabs").selectChild(article_pane);
|
2010-11-16 12:43:43 +01:00
|
|
|
|
|
|
|
if ($("PTITLE-" + id))
|
|
|
|
article_pane.attr('title', $("PTITLE-" + id).innerHTML);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=getArticles&ids=" + param_escape(id);
|
|
|
|
|
|
|
|
notify_progress("Loading, please wait...", true);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
notify('');
|
|
|
|
|
|
|
|
if (transport.responseXML) {
|
2010-11-19 17:35:35 +01:00
|
|
|
//closeArticlePanel();
|
2010-11-16 12:43:43 +01:00
|
|
|
|
|
|
|
var article = transport.responseXML.getElementsByTagName("article")[0];
|
|
|
|
var content = article.firstChild.nodeValue;
|
|
|
|
|
|
|
|
var article_pane = new dijit.layout.ContentPane({
|
|
|
|
title: "article-" + id , content: content,
|
|
|
|
style: 'padding : 0px;',
|
2010-11-16 12:52:09 +01:00
|
|
|
id: 'ATAB-' + id,
|
2010-11-16 12:43:43 +01:00
|
|
|
closable: true });
|
|
|
|
|
|
|
|
dijit.byId("content-tabs").addChild(article_pane);
|
2010-11-16 16:13:17 +01:00
|
|
|
|
|
|
|
if (!event || !event.shiftKey)
|
|
|
|
dijit.byId("content-tabs").selectChild(article_pane);
|
2010-11-16 12:43:43 +01:00
|
|
|
|
|
|
|
if ($("PTITLE-" + id))
|
|
|
|
article_pane.attr('title', $("PTITLE-" + id).innerHTML);
|
|
|
|
}
|
|
|
|
|
|
|
|
} });
|
|
|
|
}
|
2008-09-05 09:36:57 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("zoomToArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2008-09-09 09:08:47 +02:00
|
|
|
|
|
|
|
function scrollArticle(offset) {
|
|
|
|
try {
|
|
|
|
if (!isCdmMode()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var ci = $("content-insert");
|
2008-09-09 09:08:47 +02:00
|
|
|
if (ci) {
|
|
|
|
ci.scrollTop += offset;
|
|
|
|
}
|
|
|
|
} else {
|
2010-11-19 17:09:31 +01:00
|
|
|
var hi = $("headlines-frame");
|
2008-09-09 09:08:47 +02:00
|
|
|
if (hi) {
|
|
|
|
hi.scrollTop += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("scrollArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2009-01-18 16:07:31 +01:00
|
|
|
|
|
|
|
function show_labels_in_headlines(transport) {
|
|
|
|
try {
|
|
|
|
if (transport.responseXML) {
|
|
|
|
var info = transport.responseXML.getElementsByTagName("info-for-headlines")[0];
|
|
|
|
|
|
|
|
var elems = info.getElementsByTagName("entry");
|
|
|
|
|
|
|
|
for (var l = 0; l < elems.length; l++) {
|
|
|
|
var e_id = elems[l].getAttribute("id");
|
|
|
|
|
|
|
|
if (e_id) {
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var ctr = $("HLLCTR-" + e_id);
|
2009-01-18 16:07:31 +01:00
|
|
|
|
|
|
|
if (ctr) {
|
|
|
|
ctr.innerHTML = elems[l].firstChild.nodeValue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("show_labels_in_headlines", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
function toggleHeadlineActions() {
|
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("headlineActionsBody");
|
|
|
|
var p = $("headlineActionsDrop");
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
if (!Element.visible(e)) {
|
|
|
|
Element.show(e);
|
|
|
|
} else {
|
|
|
|
Element.hide(e);
|
|
|
|
}
|
|
|
|
|
2009-01-20 19:04:52 +01:00
|
|
|
e.scrollTop = 0;
|
2009-01-20 18:46:21 +01:00
|
|
|
e.style.left = (p.offsetLeft + 1) + "px";
|
2009-02-12 16:50:32 +01:00
|
|
|
e.style.top = (p.offsetTop + p.offsetHeight + 2) + "px";
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleHeadlineActions", e);
|
|
|
|
}
|
|
|
|
}
|
2009-03-21 21:11:58 +01:00
|
|
|
|
|
|
|
function publishWithNote(id, def_note) {
|
|
|
|
try {
|
|
|
|
if (!def_note) def_note = '';
|
|
|
|
|
|
|
|
var note = prompt(__("Please enter a note for this article:"), def_note);
|
|
|
|
|
|
|
|
if (note != undefined) {
|
|
|
|
togglePub(id, false, false, note);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("publishWithNote", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-05 22:47:02 +01:00
|
|
|
|
|
|
|
function emailArticle(id) {
|
|
|
|
try {
|
2010-11-06 09:13:07 +01:00
|
|
|
if (!id) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id = ids.toString();
|
|
|
|
}
|
|
|
|
|
2010-11-05 22:47:02 +01:00
|
|
|
displayDlg('emailArticle', id,
|
|
|
|
function () {
|
|
|
|
document.forms['article_email_form'].destination.focus();
|
|
|
|
|
|
|
|
new Ajax.Autocompleter('destination', 'destination_choices',
|
|
|
|
"backend.php?op=rpc&subop=completeEmails",
|
|
|
|
{ tokens: '', paramName: "search" });
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("emailArticle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-06 09:13:07 +01:00
|
|
|
function emailArticleDo() {
|
2010-11-05 22:47:02 +01:00
|
|
|
try {
|
|
|
|
var f = document.forms['article_email_form'];
|
|
|
|
|
|
|
|
if (f.destination.value == "") {
|
|
|
|
alert("Please fill in the destination email.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (f.subject.value == "") {
|
|
|
|
alert("Please fill in the subject.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var query = Form.serialize("article_email_form");
|
|
|
|
|
|
|
|
// console.log(query);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var error = transport.responseXML.getElementsByTagName('error')[0];
|
|
|
|
|
|
|
|
if (error) {
|
|
|
|
alert(__('Error sending email:') + ' ' + error.firstChild.nodeValue);
|
|
|
|
} else {
|
|
|
|
notify_info('Your message has been sent.');
|
|
|
|
closeInfoBox();
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("sendEmailDo", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
} });
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("emailArticleDo", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-09 18:57:23 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissArticle(id) {
|
2010-11-09 18:57:23 +01:00
|
|
|
try {
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
|
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
|
2010-11-13 13:38:02 +01:00
|
|
|
active_post_id = false;
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissArticle", e);
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissSelectedArticles() {
|
2010-11-10 09:38:55 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = getVisibleArticleIds();
|
|
|
|
var tmp = [];
|
|
|
|
var sel = [];
|
2010-11-10 09:38:55 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (elem.className && elem.hasClassName("Selected") &&
|
2010-11-13 13:38:02 +01:00
|
|
|
ids[i] != active_post_id) {
|
2010-11-12 11:52:53 +01:00
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
sel.push(ids[i]);
|
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (sel.length > 0)
|
2010-11-10 09:38:55 +01:00
|
|
|
selectionToggleUnread(false);
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-10 09:38:55 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissSelectedArticles", e);
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
function dismissReadArticles() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getVisibleArticleIds();
|
2010-11-12 11:52:53 +01:00
|
|
|
var tmp = [];
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (elem.className && !elem.hasClassName("Unread") &&
|
|
|
|
!elem.hasClassName("Selected")) {
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("dismissSelectedArticles", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVisibleArticleIds() {
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = [];
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
try {
|
2010-11-14 13:55:51 +01:00
|
|
|
|
|
|
|
getLoadedArticleIds().each(function(id) {
|
|
|
|
var elem = $("RROW-" + id);
|
2010-11-12 11:52:53 +01:00
|
|
|
if (elem && Element.visible(elem))
|
2010-11-14 13:55:51 +01:00
|
|
|
ids.push(id);
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
2010-11-12 11:52:53 +01:00
|
|
|
exception_error("getVisibleArticleIds", e);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
return ids;
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function cdmClicked(event, id) {
|
|
|
|
try {
|
|
|
|
var shift_key = event.shiftKey;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
if (!event.ctrlKey) {
|
2010-11-12 23:41:18 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
if (!getInitParam("cdm_expanded")) {
|
|
|
|
return cdmExpandArticle(id);
|
|
|
|
} else {
|
2010-11-12 23:41:18 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
selectArticles("none");
|
|
|
|
toggleSelected(id);
|
|
|
|
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (elem)
|
|
|
|
elem.removeClassName("Unread");
|
|
|
|
|
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
|
|
|
|
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
|
|
|
active_post_id = id;
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0&ids=" + param_escape(id);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_reply(transport);
|
|
|
|
} });
|
2010-11-12 23:41:18 +01:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
2010-11-16 12:43:43 +01:00
|
|
|
toggleSelected(id, true);
|
|
|
|
toggleUnread(id, 0, false);
|
2010-11-16 16:13:17 +01:00
|
|
|
zoomToArticle(event, id);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmClicked");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-17 10:51:30 +01:00
|
|
|
function postClicked(event, id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!event.ctrlKey) {
|
|
|
|
return true;
|
|
|
|
} else {
|
|
|
|
zoomToArticle(event, id);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("postClicked");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-19 17:35:35 +01:00
|
|
|
function hlOpenInNewTab(event, id) {
|
|
|
|
toggleUnread(id, 0, false);
|
|
|
|
zoomToArticle(event, id);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function hlClicked(event, id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!event.ctrlKey) {
|
|
|
|
view(id);
|
2010-11-11 12:31:41 +01:00
|
|
|
return true;
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
2010-11-16 14:38:11 +01:00
|
|
|
toggleSelected(id);
|
2010-11-16 12:43:43 +01:00
|
|
|
toggleUnread(id, 0, false);
|
2010-11-16 16:13:17 +01:00
|
|
|
zoomToArticle(event, id);
|
2010-11-11 12:31:41 +01:00
|
|
|
return false;
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hlClicked");
|
|
|
|
}
|
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
function getFirstVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[0];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function getLastVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[rows.length-1];
|
|
|
|
}
|
|
|
|
|
|
|
|
function openArticleInNewWindow(id) {
|
2010-11-19 19:05:28 +01:00
|
|
|
toggleUnread(id, 0, false);
|
|
|
|
window.open("backend.php?op=la&id=" + id);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function isCdmMode() {
|
2010-11-13 12:04:37 +01:00
|
|
|
return getInitParam("combined_display_mode");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function markHeadline(id) {
|
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (row) {
|
|
|
|
var check = $("RCHK-" + id);
|
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = true;
|
|
|
|
}
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Selected");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
function getRelativePostIds(id, limit) {
|
|
|
|
|
|
|
|
var tmp = [];
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!limit) limit = 3;
|
|
|
|
|
|
|
|
var ids = getVisibleArticleIds();
|
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
if (ids[i] == id) {
|
|
|
|
for (var k = 1; k <= limit; k++) {
|
|
|
|
if (i > k-1) tmp.push(ids[i-k]);
|
|
|
|
if (i < ids.length-k) tmp.push(ids[i+k]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getRelativePostIds", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
function correctHeadlinesOffset(id) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2010-11-16 08:09:19 +01:00
|
|
|
var container = $("headlines-frame");
|
2010-11-13 12:04:37 +01:00
|
|
|
var row = $("RROW-" + id);
|
|
|
|
|
|
|
|
var viewport = container.offsetHeight;
|
|
|
|
|
|
|
|
var rel_offset_top = row.offsetTop - container.scrollTop;
|
|
|
|
var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
|
|
|
|
|
|
|
|
//console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
|
|
|
|
//console.log("Vport: " + viewport);
|
|
|
|
|
|
|
|
if (rel_offset_top <= 0 || rel_offset_top > viewport) {
|
|
|
|
container.scrollTop = row.offsetTop;
|
|
|
|
} else if (rel_offset_bottom > viewport) {
|
|
|
|
|
|
|
|
/* doesn't properly work with Opera in some cases because
|
|
|
|
Opera fucks up element scrolling */
|
|
|
|
|
|
|
|
container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("correctHeadlinesOffset", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-15 19:49:00 +01:00
|
|
|
function headlineActionsChange(elem) {
|
|
|
|
try {
|
2010-11-16 21:15:53 +01:00
|
|
|
eval(elem.value);
|
2010-11-15 19:49:00 +01:00
|
|
|
elem.selectedIndex = 0;
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("headlineActionsChange", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-16 12:43:43 +01:00
|
|
|
|
2010-11-16 16:55:39 +01:00
|
|
|
function closeArticlePanel() {
|
2010-11-16 12:52:09 +01:00
|
|
|
|
2010-11-16 16:55:39 +01:00
|
|
|
var tabs = dijit.byId("content-tabs");
|
|
|
|
var child = tabs.selectedChildWidget;
|
|
|
|
|
|
|
|
if (child && tabs.getIndexOfChild(child) > 0) {
|
|
|
|
tabs.removeChild(child);
|
|
|
|
child.destroy();
|
|
|
|
} else {
|
|
|
|
if (dijit.byId("content-insert"))
|
|
|
|
dijit.byId("headlines-wrap-inner").removeChild(
|
|
|
|
dijit.byId("content-insert"));
|
|
|
|
}
|
2010-11-16 12:43:43 +01:00
|
|
|
}
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
function initHeadlinesMenu() {
|
|
|
|
try {
|
|
|
|
if (dijit.byId("headlinesMenu"))
|
|
|
|
dijit.byId("headlinesMenu").destroyRecursive();
|
|
|
|
|
|
|
|
var ids = [];
|
|
|
|
var nodes = $$("#headlines-frame > div[id*=RROW]");
|
|
|
|
|
|
|
|
nodes.each(function(node) {
|
|
|
|
ids.push(node.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
var menu = new dijit.Menu({
|
|
|
|
id: "headlinesMenu",
|
|
|
|
targetNodeIds: ids,
|
|
|
|
});
|
|
|
|
|
|
|
|
var tmph = dojo.connect(menu, '_openMyself', function (event) {
|
|
|
|
var callerNode = event.target, match = null, tries = 0;
|
|
|
|
|
|
|
|
while (match == null && callerNode && tries <= 3) {
|
|
|
|
match = callerNode.id.match("^[A-Z]+[-]([0-9]+)$");
|
|
|
|
callerNode = callerNode.parentNode;
|
|
|
|
++tries;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match) this.callerRowId = parseInt(match[1]);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("View article"),
|
|
|
|
onClick: function(event) {
|
|
|
|
view(this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("View in a new tab"),
|
|
|
|
onClick: function(event) {
|
|
|
|
hlOpenInNewTab(event, this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Open original article"),
|
|
|
|
onClick: function(event) {
|
|
|
|
openArticleInNewWindow(this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.startup();
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("initHeadlinesMenu", e);
|
|
|
|
}
|
|
|
|
}
|