2007-05-15 07:03:35 +02:00
|
|
|
var article_cache = new Array();
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
var _active_article_id = 0;
|
|
|
|
|
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;
|
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
var catchup_id_batch = [];
|
|
|
|
var catchup_timeout_id = false;
|
2011-08-31 13:25:42 +02:00
|
|
|
|
|
|
|
var cids_requested = [];
|
2012-10-31 19:55:35 +01:00
|
|
|
var loaded_article_ids = [];
|
2013-04-04 07:37:43 +02:00
|
|
|
var _last_headlines_update = 0;
|
2016-03-22 10:43:18 +01:00
|
|
|
var _headlines_scroll_offset = 0;
|
2015-07-12 16:55:35 +02:00
|
|
|
var current_first_id = 0;
|
2011-08-04 08:16:27 +02:00
|
|
|
|
2015-08-11 09:06:30 +02:00
|
|
|
var _catchup_request_sent = false;
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
var has_storage = 'sessionStorage' in window && window['sessionStorage'] !== null;
|
|
|
|
|
2011-11-07 12:46:28 +01:00
|
|
|
function headlines_callback2(transport, offset, background, infscroll_req) {
|
2007-11-21 09:23:34 +01:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
handle_rpc_json(transport);
|
2009-02-12 22:12:18 +01:00
|
|
|
|
2011-11-07 12:46:28 +01:00
|
|
|
console.log("headlines_callback2 [offset=" + offset + "] B:" + background + " I:" + infscroll_req);
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var is_cat = false;
|
|
|
|
var feed_id = false;
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
var reply = false;
|
2010-11-13 16:48:56 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
try {
|
2011-03-18 10:55:45 +01:00
|
|
|
reply = JSON.parse(transport.responseText);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
if (reply) {
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
is_cat = reply['headlines']['is_cat'];
|
|
|
|
feed_id = reply['headlines']['id'];
|
2010-11-15 11:12:02 +01:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (background) {
|
2011-11-04 08:33:40 +01:00
|
|
|
var content = reply['headlines']['content'];
|
|
|
|
|
2013-04-25 07:43:36 +02:00
|
|
|
content = content + "<div id='headlines-spacer'></div>";
|
2011-08-31 13:25:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2015-07-13 21:04:21 +02:00
|
|
|
if (feed_id != -7 && (feed_id != getActiveFeedId() || is_cat != activeFeedIsCat()))
|
2013-04-04 18:14:39 +02:00
|
|
|
return;
|
2011-03-18 10:55:45 +01:00
|
|
|
|
2013-04-01 08:09:22 +02:00
|
|
|
/* dijit.getEnclosingWidget(
|
2012-10-25 11:24:50 +02:00
|
|
|
document.forms["main_toolbar_form"].update).attr('disabled',
|
2013-04-01 08:09:22 +02:00
|
|
|
is_cat || feed_id <= 0); */
|
2012-10-25 11:24:50 +02:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
try {
|
2013-02-28 10:06:54 +01:00
|
|
|
if (infscroll_req == false) {
|
2011-03-18 10:55:45 +01:00
|
|
|
$("headlines-frame").scrollTop = 0;
|
2013-06-07 08:04:43 +02:00
|
|
|
|
2015-01-31 03:58:44 +01:00
|
|
|
$("floatingTitle").style.visibility = "hidden";
|
2013-06-07 08:04:43 +02:00
|
|
|
$("floatingTitle").setAttribute("rowid", 0);
|
|
|
|
$("floatingTitle").innerHTML = "";
|
2011-03-18 10:55:45 +01:00
|
|
|
}
|
|
|
|
} catch (e) { };
|
2007-11-21 09:23:34 +01:00
|
|
|
|
2013-05-14 13:28:13 +02:00
|
|
|
$("headlines-frame").removeClassName("cdm");
|
|
|
|
$("headlines-frame").removeClassName("normal");
|
|
|
|
|
|
|
|
$("headlines-frame").addClassName(isCdmMode() ? "cdm" : "normal");
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
var headlines_count = reply['headlines-info']['count'];
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2013-04-02 13:32:47 +02:00
|
|
|
if (parseInt(headlines_count) < 30) {
|
2008-02-19 16:01:09 +01:00
|
|
|
_infscroll_disable = 1;
|
|
|
|
} else {
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
|
|
|
|
2015-07-12 16:55:35 +02:00
|
|
|
current_first_id = reply['headlines']['first_id'];
|
2011-03-18 10:55:45 +01:00
|
|
|
var counters = reply['counters'];
|
|
|
|
var articles = reply['articles'];
|
2011-12-10 18:26:59 +01:00
|
|
|
//var runtime_info = reply['runtime-info'];
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-02-28 10:06:54 +01:00
|
|
|
if (infscroll_req == false) {
|
2012-10-31 19:55:35 +01:00
|
|
|
loaded_article_ids = [];
|
|
|
|
|
2014-01-27 19:03:42 +01:00
|
|
|
dojo.html.set($("headlines-toolbar"),
|
|
|
|
reply['headlines']['toolbar'],
|
|
|
|
{parseContent: true});
|
2007-11-21 10:15:14 +01:00
|
|
|
|
2015-10-07 17:14:21 +02:00
|
|
|
/*dojo.html.set($("headlines-frame"),
|
2015-07-13 21:01:29 +02:00
|
|
|
reply['headlines']['content'],
|
|
|
|
{parseContent: true});
|
2015-07-13 00:19:52 +02:00
|
|
|
|
2015-07-13 21:01:29 +02:00
|
|
|
$$("#headlines-frame div[id*='RROW']").each(function(row) {
|
|
|
|
loaded_article_ids.push(row.id);
|
2015-10-07 17:14:21 +02:00
|
|
|
});*/
|
|
|
|
|
|
|
|
$("headlines-frame").innerHTML = '';
|
|
|
|
|
|
|
|
var tmp = new Element("div");
|
|
|
|
tmp.innerHTML = reply['headlines']['content'];
|
|
|
|
dojo.parser.parse(tmp);
|
|
|
|
|
|
|
|
while (tmp.hasChildNodes()) {
|
|
|
|
var row = tmp.removeChild(tmp.firstChild);
|
|
|
|
|
|
|
|
if (loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("cdmFeedTitle")) {
|
|
|
|
dijit.byId("headlines-frame").domNode.appendChild(row);
|
|
|
|
|
|
|
|
loaded_article_ids.push(row.id);
|
|
|
|
}
|
|
|
|
}
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2013-04-25 07:43:36 +02:00
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
|
|
|
|
dijit.byId('headlines-frame').domNode.appendChild(hsp);
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
initHeadlinesMenu();
|
2007-11-21 10:59:22 +01:00
|
|
|
|
2014-07-25 11:54:10 +02:00
|
|
|
if (_infscroll_disable)
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
|
2012-10-30 07:24:30 +01:00
|
|
|
if (_search_query) {
|
|
|
|
$("feed_title").innerHTML += "<span id='cancel_search'>" +
|
|
|
|
" (<a href='#' onclick='cancelSearch()'>" + __("Cancel search") + "</a>)" +
|
|
|
|
"</span>";
|
|
|
|
}
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
} else {
|
2011-10-13 08:45:10 +02:00
|
|
|
|
|
|
|
if (headlines_count > 0 && feed_id == getActiveFeedId() && is_cat == activeFeedIsCat()) {
|
2012-08-23 07:17:30 +02:00
|
|
|
console.log("adding some more headlines: " + headlines_count);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
var c = dijit.byId("headlines-frame");
|
|
|
|
var ids = getSelectedArticleIds2();
|
2010-11-26 07:42:45 +01:00
|
|
|
|
2011-08-03 16:36:08 +02:00
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
if (hsp)
|
|
|
|
c.domNode.removeChild(hsp);
|
|
|
|
|
2015-07-13 17:38:39 +02:00
|
|
|
var tmp = new Element("div");
|
2015-07-13 21:01:29 +02:00
|
|
|
tmp.innerHTML = reply['headlines']['content'];
|
2015-07-13 17:38:39 +02:00
|
|
|
dojo.parser.parse(tmp);
|
|
|
|
|
|
|
|
while (tmp.hasChildNodes()) {
|
2015-07-13 21:01:29 +02:00
|
|
|
var row = tmp.removeChild(tmp.firstChild);
|
|
|
|
|
|
|
|
if (loaded_article_ids.indexOf(row.id) == -1 || row.hasClassName("cdmFeedTitle")) {
|
|
|
|
dijit.byId("headlines-frame").domNode.appendChild(row);
|
2015-10-07 17:14:21 +02:00
|
|
|
|
2015-07-13 21:01:29 +02:00
|
|
|
loaded_article_ids.push(row.id);
|
|
|
|
}
|
2015-07-13 17:38:39 +02:00
|
|
|
}
|
2015-07-13 00:19:52 +02:00
|
|
|
|
2011-08-03 16:48:28 +02:00
|
|
|
if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
|
2015-07-13 00:28:02 +02:00
|
|
|
c.domNode.appendChild(hsp);
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2015-07-13 21:01:29 +02:00
|
|
|
if (headlines_count < 30) _infscroll_disable = true;
|
2012-10-10 14:30:26 +02:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
console.log("restore selected ids: " + ids);
|
2007-09-05 18:10:35 +02:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
markHeadline(ids[i]);
|
|
|
|
}
|
2007-09-05 18:10:35 +02:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
initHeadlinesMenu();
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2015-07-12 12:37:24 +02:00
|
|
|
if (_infscroll_disable) {
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
}
|
|
|
|
|
2007-08-24 07:31:57 +02:00
|
|
|
} else {
|
2011-03-18 10:55:45 +01:00
|
|
|
console.log("no new headlines received");
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2015-07-12 16:55:35 +02:00
|
|
|
var first_id_changed = reply['headlines']['first_id_changed'];
|
|
|
|
console.log("first id changed:" + first_id_changed);
|
2015-07-12 11:01:34 +02:00
|
|
|
|
2011-08-03 16:36:08 +02:00
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
|
2015-07-12 11:01:34 +02:00
|
|
|
if (hsp) {
|
2015-07-12 16:55:35 +02:00
|
|
|
if (first_id_changed) {
|
2015-07-12 11:01:34 +02:00
|
|
|
hsp.innerHTML = "<a href='#' onclick='viewCurrentFeed()'>" +
|
|
|
|
__("New articles found, reload feed to continue.") + "</a>";
|
|
|
|
} else {
|
|
|
|
hsp.innerHTML = "<a href='#' onclick='openNextUnreadFeed()'>" +
|
|
|
|
__("Click to open next unread feed.") + "</a>";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
}
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2007-08-24 07:45:42 +02:00
|
|
|
if (articles) {
|
|
|
|
for (var i = 0; i < articles.length; i++) {
|
2011-03-18 10:55:45 +01:00
|
|
|
var a_id = articles[i]['id'];
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_set("article:" + a_id, articles[i]['content']);
|
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
|
2013-02-04 07:55:29 +01:00
|
|
|
request_counters(true);
|
2010-11-10 19:56:28 +01:00
|
|
|
|
2014-03-14 11:05:32 +01:00
|
|
|
} else {
|
2011-10-20 10:34:22 +02:00
|
|
|
console.error("Invalid object received: " + transport.responseText);
|
2011-03-18 10:46:22 +01:00
|
|
|
dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
|
2011-10-20 10:34:22 +02:00
|
|
|
__('Could not update headlines (invalid object received - see error console for details)') +
|
|
|
|
"</div>");
|
2007-05-15 07:59:22 +02:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2007-08-28 07:05:45 +02:00
|
|
|
_infscroll_request_sent = 0;
|
2013-04-04 07:49:37 +02:00
|
|
|
_last_headlines_update = new Date().getTime();
|
2007-08-28 07:05:45 +02:00
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
unpackVisibleHeadlines();
|
2013-03-21 07:34:36 +01:00
|
|
|
|
2013-04-06 08:33:30 +02:00
|
|
|
// if we have some more space in the buffer, why not try to fill it
|
|
|
|
|
2013-04-06 11:01:34 +02:00
|
|
|
if (!_infscroll_disable && $("headlines-spacer") &&
|
|
|
|
$("headlines-spacer").offsetTop < $("headlines-frame").offsetHeight) {
|
2013-04-06 08:33:30 +02:00
|
|
|
|
|
|
|
window.setTimeout(function() {
|
|
|
|
loadMoreHeadlines();
|
|
|
|
}, 250);
|
|
|
|
}
|
|
|
|
|
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 {
|
2016-01-10 23:11:26 +01:00
|
|
|
cleanup_memory("content-insert");
|
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
dijit.byId("headlines-wrap-inner").addChild(
|
|
|
|
dijit.byId("content-insert"));
|
|
|
|
|
2010-11-19 19:14:36 +01:00
|
|
|
var c = dijit.byId("content-insert");
|
2008-07-25 07:11:22 +02:00
|
|
|
|
2008-07-30 05:27:25 +02:00
|
|
|
try {
|
2010-11-19 19:14:36 +01:00
|
|
|
c.domNode.scrollTop = 0;
|
2008-07-30 05:27:25 +02:00
|
|
|
} catch (e) { };
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-19 19:14:36 +01:00
|
|
|
c.attr('content', article);
|
2015-07-31 12:42:05 +02:00
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, c.domNode);
|
2010-11-16 17:15:04 +01:00
|
|
|
|
2011-01-31 11:10:54 +01:00
|
|
|
correctHeadlinesOffset(getActiveArticleId());
|
|
|
|
|
|
|
|
try {
|
|
|
|
c.focus();
|
|
|
|
} catch (e) { };
|
2007-05-15 07:03:35 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("render_article", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
function showArticleInHeadlines(id, noexpand) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
try {
|
2016-03-22 11:41:55 +01:00
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (!row) return;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
if (!noexpand)
|
2016-03-22 11:41:55 +01:00
|
|
|
row.removeClassName("Unread");
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2016-03-22 11:41:55 +01:00
|
|
|
row.addClassName("active");
|
2007-11-22 08:45:46 +01:00
|
|
|
|
2016-03-22 11:41:55 +01:00
|
|
|
selectArticles('none');
|
2007-11-22 08:45:46 +01: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
|
|
|
|
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
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
handle_rpc_json(transport);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2011-10-20 10:34:22 +02:00
|
|
|
var reply = false;
|
|
|
|
|
|
|
|
try {
|
|
|
|
reply = JSON.parse(transport.responseText);
|
|
|
|
} catch (e) {
|
|
|
|
console.error(e);
|
|
|
|
}
|
2009-01-31 21:03:40 +01:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (reply) {
|
2011-08-31 13:25:42 +02:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
reply.each(function(article) {
|
2013-02-28 10:18:58 +01:00
|
|
|
if (getActiveArticleId() == article['id']) {
|
2011-03-18 10:46:22 +01:00
|
|
|
render_article(article['content']);
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2011-08-31 13:25:42 +02:00
|
|
|
cids_requested.remove(article['id']);
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_set("article:" + article['id'], article['content']);
|
2011-03-18 10:46:22 +01:00
|
|
|
});
|
2007-08-24 09:53:35 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
// if (id != last_requested_article) {
|
|
|
|
// console.log("requested article id is out of sequence, aborting");
|
|
|
|
// return;
|
|
|
|
// }
|
|
|
|
|
2014-03-14 11:05:32 +01:00
|
|
|
} else {
|
2011-10-20 10:34:22 +02:00
|
|
|
console.error("Invalid object received: " + transport.responseText);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
|
|
|
render_article("<div class='whiteBox'>" +
|
2011-10-20 10:34:22 +02:00
|
|
|
__('Could not display article (invalid object received - see error console for details)') + "</div>");
|
2007-05-15 07:03:35 +02:00
|
|
|
}
|
2006-11-23 06:26:49 +01:00
|
|
|
|
2013-02-27 13:57:26 +01:00
|
|
|
var unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length
|
|
|
|
request_counters(unread_in_buffer == 0);
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
function view(id, activefeed, noexpand) {
|
2006-05-23 08:55:26 +02:00
|
|
|
try {
|
2013-03-29 20:04:27 +01:00
|
|
|
var oldrow = $("RROW-" + getActiveArticleId());
|
|
|
|
if (oldrow) oldrow.removeClassName("active");
|
|
|
|
|
2013-02-06 09:27:26 +01:00
|
|
|
var crow = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (!crow) return;
|
2013-04-06 03:47:40 +02:00
|
|
|
if (noexpand) {
|
|
|
|
setActiveArticleId(id);
|
|
|
|
showArticleInHeadlines(id, noexpand);
|
|
|
|
return;
|
|
|
|
}
|
2013-02-06 09:27:26 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("loading article: " + id);
|
2009-12-29 16:03:16 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
var cached_article = cache_get("article:" + id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("cache check result: " + (cached_article != false));
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-12-12 21:20:53 +01:00
|
|
|
var query = "?op=article&method=view&id=" + param_escape(id);
|
2006-09-28 14:00:03 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
var neighbor_ids = getRelativePostIds(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
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
var cids_to_request = [];
|
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++) {
|
2011-08-31 13:25:42 +02:00
|
|
|
if (cids_requested.indexOf(neighbor_ids[i]) == -1)
|
|
|
|
if (!cache_get("article:" + neighbor_ids[i])) {
|
|
|
|
cids_to_request.push(neighbor_ids[i]);
|
|
|
|
cids_requested.push(neighbor_ids[i]);
|
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:41:48 +02:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
console.log("additional ids: " + cids_to_request.toString());
|
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&cids=" + cids_to_request.toString();
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var article_is_unread = crow.hasClassName("Unread");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
setActiveArticleId(id);
|
2008-05-22 07:40:57 +02:00
|
|
|
showArticleInHeadlines(id);
|
|
|
|
|
2012-12-25 11:42:20 +01:00
|
|
|
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
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
// if we don't need to request any relative ids, we might as well skip
|
|
|
|
// the server roundtrip altogether
|
2011-09-21 07:32:39 +02:00
|
|
|
if (cids_to_request.length == 0) {
|
2011-08-31 13:25:42 +02:00
|
|
|
return;
|
2011-09-21 07:32:39 +02:00
|
|
|
}
|
2011-08-31 12:03:52 +02:00
|
|
|
}
|
2007-02-07 18:01:35 +01:00
|
|
|
|
2008-05-20 18:06:12 +02:00
|
|
|
last_requested_article = id;
|
|
|
|
|
2011-08-03 10:32:30 +02:00
|
|
|
console.log(query);
|
|
|
|
|
2012-04-04 13:34:06 +02:00
|
|
|
if (article_is_unread) {
|
2012-04-05 09:58:50 +02:00
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
2012-04-04 13:34:06 +02:00
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
function toggleMark(id, client_only) {
|
2007-08-20 14:37:46 +02:00
|
|
|
try {
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&method=mark";
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (!row) return;
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2013-06-05 20:19:33 +02:00
|
|
|
var imgs = [];
|
|
|
|
|
|
|
|
var row_imgs = row.getElementsByClassName("markedPic");
|
|
|
|
|
|
|
|
for (var i = 0; i < row_imgs.length; i++)
|
|
|
|
imgs.push(row_imgs[i]);
|
|
|
|
|
|
|
|
var ft = $("floatingTitle");
|
|
|
|
|
|
|
|
if (ft && ft.getAttribute("rowid") == "RROW-" + id) {
|
|
|
|
var fte = ft.getElementsByClassName("markedPic");
|
|
|
|
|
|
|
|
for (var i = 0; i < fte.length; i++)
|
|
|
|
imgs.push(fte[i]);
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
for (i = 0; i < imgs.length; i++) {
|
|
|
|
var img = imgs[i];
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
if (!row.hasClassName("marked")) {
|
|
|
|
img.src = img.src.replace("mark_unset", "mark_set");
|
|
|
|
img.alt = __("Unstar article");
|
|
|
|
query = query + "&mark=1";
|
|
|
|
} else {
|
|
|
|
img.src = img.src.replace("mark_set", "mark_unset");
|
|
|
|
img.alt = __("Star article");
|
|
|
|
query = query + "&mark=0";
|
|
|
|
}
|
2007-08-20 09:59:18 +02:00
|
|
|
}
|
2006-05-23 08:35:27 +02:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
row.toggleClassName("marked");
|
|
|
|
|
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,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(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 {
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&method=publ";
|
2011-03-18 10:46:22 +01: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
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (!row) return;
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2013-06-05 20:19:33 +02:00
|
|
|
var imgs = [];
|
|
|
|
|
|
|
|
var row_imgs = row.getElementsByClassName("pubPic");
|
|
|
|
|
|
|
|
for (var i = 0; i < row_imgs.length; i++)
|
|
|
|
imgs.push(row_imgs[i]);
|
|
|
|
|
|
|
|
var ft = $("floatingTitle");
|
|
|
|
|
|
|
|
if (ft && ft.getAttribute("rowid") == "RROW-" + id) {
|
|
|
|
var fte = ft.getElementsByClassName("pubPic");
|
|
|
|
|
|
|
|
for (var i = 0; i < fte.length; i++)
|
|
|
|
imgs.push(fte[i]);
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
for (i = 0; i < imgs.length; i++) {
|
|
|
|
var img = imgs[i];
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
if (!row.hasClassName("published") || note != undefined) {
|
|
|
|
img.src = img.src.replace("pub_unset", "pub_set");
|
|
|
|
img.alt = __("Unpublish article");
|
|
|
|
query = query + "&pub=1";
|
|
|
|
} else {
|
|
|
|
img.src = img.src.replace("pub_set", "pub_unset");
|
|
|
|
img.alt = __("Publish article");
|
|
|
|
query = query + "&pub=0";
|
|
|
|
}
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2013-04-09 14:13:32 +02:00
|
|
|
if (note != undefined)
|
|
|
|
row.addClassName("published");
|
|
|
|
else
|
|
|
|
row.toggleClassName("published");
|
|
|
|
|
2007-08-23 15:54:17 +02:00
|
|
|
if (!client_only) {
|
2010-11-29 18:25:51 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2010-11-29 18:25:51 +01:00
|
|
|
} });
|
|
|
|
}
|
|
|
|
|
2007-08-10 06:03:56 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("togglePub", e);
|
|
|
|
}
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
function moveToPost(mode, noscroll, noexpand) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
2016-03-22 08:11:11 +01:00
|
|
|
var rows = getLoadedArticleIds();
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
var prev_id = false;
|
|
|
|
var next_id = false;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
if (!$('RROW-' + getActiveArticleId())) {
|
|
|
|
setActiveArticleId(0);
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
if (!getActiveArticleId()) {
|
2012-03-12 10:53:10 +01:00
|
|
|
next_id = rows[0];
|
|
|
|
prev_id = rows[rows.length-1]
|
2011-03-18 10:46:22 +01:00
|
|
|
} else {
|
2008-05-16 04:06:57 +02:00
|
|
|
for (var i = 0; i < rows.length; i++) {
|
2013-02-28 10:18:58 +01:00
|
|
|
if (rows[i] == getActiveArticleId()) {
|
2012-03-12 10:53:10 +01:00
|
|
|
|
|
|
|
// Account for adjacent identical article ids.
|
|
|
|
if (i > 0) prev_id = rows[i-1];
|
|
|
|
|
|
|
|
for (var j = i+1; j < rows.length; j++) {
|
2013-02-28 10:18:58 +01:00
|
|
|
if (rows[j] != getActiveArticleId()) {
|
2012-03-12 10:53:10 +01:00
|
|
|
next_id = rows[j];
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2015-08-11 11:00:08 +02:00
|
|
|
console.log("cur: " + getActiveArticleId() + " next: " + next_id);
|
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "next") {
|
2015-08-11 11:25:11 +02:00
|
|
|
if (next_id || getActiveArticleId()) {
|
2008-05-16 04:06:57 +02:00
|
|
|
if (isCdmMode()) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
var article = $("RROW-" + getActiveArticleId());
|
2013-02-27 19:27:49 +01:00
|
|
|
var ctr = $("headlines-frame");
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2013-02-27 19:48:43 +01:00
|
|
|
if (!noscroll && article && article.offsetTop + article.offsetHeight >
|
2013-02-27 19:27:49 +01:00
|
|
|
ctr.scrollTop + ctr.offsetHeight) {
|
|
|
|
|
2013-03-27 13:38:58 +01:00
|
|
|
scrollArticle(ctr.offsetHeight/4);
|
2013-02-27 19:27:49 +01:00
|
|
|
|
|
|
|
} else if (next_id) {
|
2013-04-06 03:47:40 +02:00
|
|
|
cdmExpandArticle(next_id, noexpand);
|
2013-03-21 06:36:13 +01:00
|
|
|
cdmScrollToArticleId(next_id, true);
|
2013-02-27 19:27:49 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} else if (next_id) {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(next_id);
|
2013-04-06 03:47:40 +02:00
|
|
|
view(next_id, getActiveFeedId(), noexpand);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "prev") {
|
2013-02-28 10:18:58 +01:00
|
|
|
if (prev_id || getActiveArticleId()) {
|
2008-05-16 04:06:57 +02:00
|
|
|
if (isCdmMode()) {
|
2013-02-27 19:27:49 +01:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
var article = $("RROW-" + getActiveArticleId());
|
2013-02-27 19:27:49 +01:00
|
|
|
var prev_article = $("RROW-" + prev_id);
|
|
|
|
var ctr = $("headlines-frame");
|
|
|
|
|
2013-03-20 10:23:24 +01:00
|
|
|
if (!getInitParam("cdm_expanded")) {
|
2013-03-21 06:38:25 +01:00
|
|
|
|
2013-05-27 20:11:20 +02:00
|
|
|
if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
|
2013-03-27 13:38:58 +01:00
|
|
|
scrollArticle(-ctr.offsetHeight/4);
|
2013-03-21 06:38:25 +01:00
|
|
|
} else {
|
2013-04-06 03:47:40 +02:00
|
|
|
cdmExpandArticle(prev_id, noexpand);
|
2013-03-21 06:38:25 +01:00
|
|
|
cdmScrollToArticleId(prev_id, true);
|
|
|
|
}
|
2013-03-20 10:23:24 +01:00
|
|
|
} else {
|
|
|
|
|
|
|
|
if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
|
|
|
|
scrollArticle(-ctr.offsetHeight/3);
|
|
|
|
} else if (!noscroll && prev_article &&
|
|
|
|
prev_article.offsetTop < ctr.scrollTop) {
|
2013-04-06 03:47:40 +02:00
|
|
|
cdmExpandArticle(prev_id, noexpand);
|
2013-03-27 13:38:58 +01:00
|
|
|
scrollArticle(-ctr.offsetHeight/4);
|
2013-03-20 10:23:24 +01:00
|
|
|
} else if (prev_id) {
|
2013-04-06 03:47:40 +02:00
|
|
|
cdmExpandArticle(prev_id, noexpand);
|
2013-03-20 10:23:24 +01:00
|
|
|
cdmScrollToArticleId(prev_id, noscroll);
|
|
|
|
}
|
2013-02-27 19:27:49 +01:00
|
|
|
}
|
2013-03-20 10:23:24 +01:00
|
|
|
|
2013-02-27 19:27:49 +01:00
|
|
|
} else if (prev_id) {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(prev_id);
|
2013-04-06 03:47:40 +02:00
|
|
|
view(prev_id, getActiveFeedId(), noexpand);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
}
|
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 row = $("RROW-" + id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (row) {
|
2013-04-06 22:52:39 +02:00
|
|
|
var cb = dijit.getEnclosingWidget(
|
|
|
|
row.getElementsByClassName("rchk")[0]);
|
|
|
|
|
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');
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", false);
|
2008-02-19 15:49:36 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName('Selected');
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", true);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
2013-04-15 11:16:14 +02:00
|
|
|
|
|
|
|
updateSelectedPrompt();
|
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
|
|
|
}
|
|
|
|
|
2013-04-15 11:16:14 +02:00
|
|
|
function updateSelectedPrompt() {
|
|
|
|
try {
|
|
|
|
var count = getSelectedArticleIds2().size();
|
|
|
|
var elem = $("selected_prompt");
|
|
|
|
|
|
|
|
if (elem) {
|
|
|
|
elem.innerHTML = ngettext("%d article selected",
|
|
|
|
"%d articles selected", count).replace("%d", count);
|
|
|
|
|
|
|
|
if (count > 0)
|
|
|
|
Element.show(elem);
|
|
|
|
else
|
|
|
|
Element.hide(elem);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("updateSelectedPrompt", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
function toggleUnread(id, cmode, effect) {
|
2006-05-16 15:41:57 +02:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + id);
|
2006-05-16 15:41:57 +02:00
|
|
|
if (row) {
|
2015-08-11 11:00:08 +02:00
|
|
|
var tmpClassName = row.className;
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=catchupSelected" +
|
2009-12-29 16:49:27 +01:00
|
|
|
"&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
|
|
|
|
2015-08-11 11:00:08 +02:00
|
|
|
if (tmpClassName != row.className) {
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function (transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2006-05-16 15:41:57 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleUnread", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
function selectionRemoveLabel(id, ids) {
|
2009-01-18 10:09:52 +01:00
|
|
|
try {
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
if (!ids) ids = getSelectedArticleIds2();
|
2009-01-18 10:09:52 +01:00
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-02 12:56:08 +02:00
|
|
|
var query = "?op=article&method=removeFromLabel&ids=" +
|
2011-08-31 12:03:52 +02:00
|
|
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
2009-01-18 10:09:52 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
console.log(query);
|
2009-01-18 10:09:52 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
show_labels_in_headlines(transport);
|
|
|
|
} });
|
2009-01-18 10:09:52 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionAssignLabel", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
function selectionAssignLabel(id, ids) {
|
2009-01-18 09:47:34 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
if (!ids) ids = getSelectedArticleIds2();
|
2009-01-18 09:47:34 +01:00
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-04-02 12:56:08 +02:00
|
|
|
var query = "?op=article&method=assignToLabel&ids=" +
|
2011-08-31 12:03:52 +02:00
|
|
|
param_escape(ids.toString()) + "&lid=" + param_escape(id);
|
2009-01-18 09:47:34 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
console.log(query);
|
2009-01-18 09:47:34 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
show_labels_in_headlines(transport);
|
|
|
|
} });
|
2009-01-18 09:47:34 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectionAssignLabel", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
function selectionToggleUnread(set_state, callback, no_error, ids) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
2013-03-30 10:42:33 +01:00
|
|
|
var rows = ids ? ids : 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;
|
|
|
|
}
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
for (var 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
|
|
|
}
|
|
|
|
|
2013-07-16 07:59:14 +02:00
|
|
|
updateFloatingTitle(true);
|
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=catchupSelected" +
|
2011-03-18 10:46:22 +01:00
|
|
|
"&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,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
2010-11-25 11:39:37 +01:00
|
|
|
handle_rpc_json(transport);
|
|
|
|
if (callback) callback(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("selectionToggleUnread", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
// sel_state ignored
|
|
|
|
function selectionToggleMarked(sel_state, callback, no_error, ids) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
var rows = ids ? ids : getSelectedArticleIds2();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
if (rows.length == 0 && !no_error) {
|
2007-03-26 07:31:42 +02:00
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
for (var 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) {
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=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,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2013-03-30 10:42:33 +01:00
|
|
|
if (callback) callback(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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
// sel_state ignored
|
|
|
|
function selectionTogglePublished(sel_state, callback, no_error, ids) {
|
2007-08-09 14:45:30 +02:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
var rows = ids ? ids : getSelectedArticleIds2();
|
2007-08-09 14:45:30 +02:00
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
if (rows.length == 0 && !no_error) {
|
2007-08-09 14:45:30 +02:00
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
for (var 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) {
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=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,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(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
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-10-08 12:32:17 +02:00
|
|
|
// mode = all,none,unread,invert,marked,published
|
2013-10-17 11:38:48 +02:00
|
|
|
function selectArticles(mode, query) {
|
2010-11-12 11:52:53 +01:00
|
|
|
try {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2013-10-17 11:38:48 +02:00
|
|
|
if (!query) query = "#headlines-frame > div[id*=RROW]";
|
|
|
|
|
|
|
|
var children = $$(query);
|
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-", "");
|
2013-04-06 22:52:39 +02:00
|
|
|
|
|
|
|
var cb = dijit.getEnclosingWidget(
|
|
|
|
child.getElementsByClassName("rchk")[0]);
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (mode == "all") {
|
|
|
|
child.addClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", true);
|
2010-11-14 13:55:51 +01:00
|
|
|
} else if (mode == "unread") {
|
|
|
|
if (child.hasClassName("Unread")) {
|
|
|
|
child.addClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", true);
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
child.removeClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", false);
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
2012-10-08 12:32:17 +02:00
|
|
|
} else if (mode == "marked") {
|
2013-04-09 14:13:32 +02:00
|
|
|
if (child.hasClassName("marked")) {
|
2012-10-08 12:32:17 +02:00
|
|
|
child.addClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", true);
|
2012-10-08 12:32:17 +02:00
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", false);
|
2012-10-08 12:32:17 +02:00
|
|
|
}
|
|
|
|
} else if (mode == "published") {
|
2013-04-09 14:13:32 +02:00
|
|
|
if (child.hasClassName("published")) {
|
2012-10-08 12:32:17 +02:00
|
|
|
child.addClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", true);
|
2012-10-08 12:32:17 +02:00
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", false);
|
2012-10-08 12:32:17 +02:00
|
|
|
}
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
} else if (mode == "invert") {
|
|
|
|
if (child.hasClassName("Selected")) {
|
|
|
|
child.removeClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", false);
|
2010-11-14 13:55:51 +01:00
|
|
|
} else {
|
|
|
|
child.addClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", true);
|
2010-11-14 13:55:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
2013-02-28 12:48:09 +01:00
|
|
|
if (cb) cb.attr("checked", false);
|
2010-11-14 13:55:51 +01:00
|
|
|
}
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2013-04-15 11:16:14 +02:00
|
|
|
updateSelectedPrompt();
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectArticles", e);
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
function deleteSelection() {
|
|
|
|
|
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
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;
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var str;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (getActiveFeedId() != 0) {
|
2013-03-24 13:32:03 +01:00
|
|
|
str = ngettext("Delete %d selected article in %s?", "Delete %d selected articles in %s?" , rows.length);
|
2009-12-28 15:23:01 +01:00
|
|
|
} else {
|
2013-03-24 13:32:03 +01:00
|
|
|
str = ngettext("Delete %d selected article?", "Delete %d selected articles?", rows.length);
|
2009-12-28 15:23:01 +01:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
query = "?op=rpc&method=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) {
|
2010-11-25 11:39:37 +01:00
|
|
|
handle_rpc_json(transport);
|
2009-12-28 15:23:01 +01:00
|
|
|
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;
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var str;
|
|
|
|
var op;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (getActiveFeedId() != 0) {
|
2013-03-24 13:32:03 +01:00
|
|
|
str = ngettext("Archive %d selected article in %s?", "Archive %d selected articles in %s?", rows.length);
|
2009-12-28 15:23:01 +01:00
|
|
|
op = "archive";
|
|
|
|
} else {
|
2013-03-24 13:32:03 +01:00
|
|
|
str = ngettext("Move %d archived article back?", "Move %d archived articles back?", rows.length);
|
2013-03-30 18:59:52 +01:00
|
|
|
|
|
|
|
str += " " + __("Please note that unstarred articles might get purged on next feed update.");
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
op = "unarchive";
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
str = str.replace("%d", rows.length);
|
|
|
|
str = str.replace("%s", fn);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
query = "?op=rpc&method="+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++) {
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_delete("article:" + rows[i]);
|
2009-12-28 22:09:04 +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) {
|
2010-11-25 11:39:37 +01:00
|
|
|
handle_rpc_json(transport);
|
2009-12-28 15:23:01 +01:00
|
|
|
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;
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-03-24 13:32:03 +01:00
|
|
|
var str = ngettext("Mark %d selected article in %s as read?", "Mark %d selected articles in %s as read?", rows.length);
|
2011-03-18 10:46:22 +01: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);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-12-10 18:26:59 +01:00
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true);
|
2007-08-19 07:13:45 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
function editArticleTags(id) {
|
2013-04-01 09:14:27 +02:00
|
|
|
var query = "backend.php?op=article&method=editArticleTags¶m=" + param_escape(id);
|
2006-08-01 09:54:46 +02:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
if (dijit.byId("editTagsDlg"))
|
|
|
|
dijit.byId("editTagsDlg").destroyRecursive();
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
dialog = new dijit.Dialog({
|
|
|
|
id: "editTagsDlg",
|
|
|
|
title: __("Edit article Tags"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function() {
|
|
|
|
if (this.validate()) {
|
|
|
|
var query = dojo.objectToQuery(this.attr('value'));
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
notify_progress("Saving article tags...", true);
|
2007-05-19 15:47:51 +02:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
2013-04-01 09:14:27 +02:00
|
|
|
try {
|
|
|
|
notify('');
|
|
|
|
dialog.hide();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-04-01 09:14:27 +02:00
|
|
|
var data = JSON.parse(transport.responseText);
|
2010-11-29 12:21:28 +01:00
|
|
|
|
2013-04-01 09:14:27 +02:00
|
|
|
if (data) {
|
|
|
|
var id = data.id;
|
2010-11-29 12:21:28 +01:00
|
|
|
|
2013-04-01 09:14:27 +02:00
|
|
|
console.log(id);
|
2010-11-29 12:21:28 +01:00
|
|
|
|
2013-04-01 09:14:27 +02:00
|
|
|
var tags = $("ATSTR-" + id);
|
|
|
|
var tooltip = dijit.byId("ATSTRTIP-" + id);
|
2010-11-29 12:21:28 +01:00
|
|
|
|
2013-04-01 09:14:27 +02:00
|
|
|
if (tags) tags.innerHTML = data.content;
|
|
|
|
if (tooltip) tooltip.attr('label', data.content_full);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("editArticleTags/inner", e);
|
2010-01-13 10:48:49 +01:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
}});
|
2010-01-13 10:48:49 +01:00
|
|
|
}
|
2010-11-23 11:26:02 +01:00
|
|
|
},
|
2015-07-13 00:28:02 +02:00
|
|
|
href: query
|
2010-11-23 11:26:02 +01:00
|
|
|
});
|
2006-12-07 10:27:34 +01:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
var tmph = dojo.connect(dialog, 'onLoad', function() {
|
|
|
|
dojo.disconnect(tmph);
|
2006-12-07 10:27:34 +01:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
new Ajax.Autocompleter('tags_str', 'tags_choices',
|
2013-04-02 12:53:36 +02:00
|
|
|
"backend.php?op=article&method=completeTags",
|
2010-11-23 11:26:02 +01:00
|
|
|
{ tokens: ',', paramName: "search" });
|
|
|
|
});
|
2006-12-07 10:27:34 +01:00
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
dialog.show();
|
2006-12-07 10:27:34 +01:00
|
|
|
|
|
|
|
}
|
2007-01-25 10:12:33 +01:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
function cdmScrollToArticleId(id, force) {
|
2008-02-19 15:49:36 +01:00
|
|
|
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;
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
if (force || e.offsetTop+e.offsetHeight > (ctr.scrollTop+ctr.offsetHeight) ||
|
2013-02-27 15:44:45 +01:00
|
|
|
e.offsetTop < ctr.scrollTop) {
|
2013-03-29 16:31:10 +01:00
|
|
|
|
|
|
|
// expanded cdm has a 4px margin now
|
|
|
|
ctr.scrollTop = parseInt(e.offsetTop) - 4;
|
2013-02-27 15:44:45 +01:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmScrollToArticleId", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
function setActiveArticleId(id) {
|
2015-08-11 11:00:08 +02:00
|
|
|
console.log("setActiveArticleId:" + id);
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
_active_article_id = id;
|
2013-04-24 17:49:37 +02:00
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_SET_ACTIVE, _active_article_id);
|
2013-02-28 10:18:58 +01:00
|
|
|
}
|
|
|
|
|
2007-07-20 08:01:18 +02:00
|
|
|
function getActiveArticleId() {
|
2013-02-28 10:18:58 +01:00
|
|
|
return _active_article_id;
|
2007-07-20 08:01:18 +02:00
|
|
|
}
|
2007-08-09 08:56:11 +02:00
|
|
|
|
2013-03-25 13:08:20 +01:00
|
|
|
function postMouseIn(e, id) {
|
2011-08-31 12:03:52 +02:00
|
|
|
post_under_pointer = id;
|
2008-05-17 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function postMouseOut(id) {
|
2011-08-31 12:03:52 +02:00
|
|
|
post_under_pointer = false;
|
2008-05-17 17:58:15 +02:00
|
|
|
}
|
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
function unpackVisibleHeadlines() {
|
2007-08-09 09:36:04 +02:00
|
|
|
try {
|
2013-10-21 14:55:36 +02:00
|
|
|
if (!isCdmMode() || !getInitParam("cdm_expanded")) return;
|
2013-03-25 11:15:22 +01:00
|
|
|
|
2013-03-21 07:34:36 +01:00
|
|
|
$$("#headlines-frame > div[id*=RROW]").each(
|
|
|
|
function(child) {
|
|
|
|
if (child.offsetTop <= $("headlines-frame").scrollTop +
|
|
|
|
$("headlines-frame").offsetHeight) {
|
|
|
|
|
|
|
|
var cencw = $("CENCW-" + child.id.replace("RROW-", ""));
|
|
|
|
|
|
|
|
if (cencw) {
|
|
|
|
cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
|
|
|
|
cencw.setAttribute('id', '');
|
2015-07-31 12:42:05 +02:00
|
|
|
|
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, child);
|
|
|
|
|
2013-03-21 07:34:36 +01:00
|
|
|
Element.show(cencw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("unpackVisibleHeadlines", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function headlines_scroll_handler(e) {
|
|
|
|
try {
|
2016-03-22 10:43:18 +01:00
|
|
|
|
|
|
|
// rate-limit in case of smooth scrolling and similar abominations
|
2016-03-22 10:51:15 +01:00
|
|
|
if (Math.max(e.scrollTop, _headlines_scroll_offset) - Math.min(e.scrollTop, _headlines_scroll_offset) < 25) {
|
2016-03-22 10:43:18 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
_headlines_scroll_offset = e.scrollTop;
|
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
unpackVisibleHeadlines();
|
|
|
|
|
2013-05-16 07:53:34 +02:00
|
|
|
// set topmost child in the buffer as active
|
2013-09-09 12:38:28 +02:00
|
|
|
if (isCdmMode() && getInitParam("cdm_auto_catchup") == 1 &&
|
2013-07-09 10:34:57 +02:00
|
|
|
getSelectedArticleIds2().length <= 1 &&
|
2013-09-09 12:38:28 +02:00
|
|
|
getInitParam("cdm_expanded")) {
|
2016-03-22 10:43:18 +01:00
|
|
|
|
2013-05-16 07:53:34 +02:00
|
|
|
var rows = $$("#headlines-frame > div[id*=RROW]");
|
|
|
|
|
|
|
|
for (var i = 0; i < rows.length; i++) {
|
|
|
|
var child = rows[i];
|
|
|
|
|
2013-07-17 10:16:54 +02:00
|
|
|
if ($("headlines-frame").scrollTop <= child.offsetTop &&
|
2013-06-25 05:08:44 +02:00
|
|
|
child.offsetTop - $("headlines-frame").scrollTop < 100 &&
|
|
|
|
child.id.replace("RROW-", "") != _active_article_id) {
|
2013-05-16 08:50:36 +02:00
|
|
|
|
2013-05-16 07:53:34 +02:00
|
|
|
if (_active_article_id) {
|
|
|
|
var row = $("RROW-" + _active_article_id);
|
|
|
|
if (row) row.removeClassName("active");
|
|
|
|
}
|
|
|
|
|
|
|
|
_active_article_id = child.id.replace("RROW-", "");
|
|
|
|
showArticleInHeadlines(_active_article_id, true);
|
2013-05-16 08:00:29 +02:00
|
|
|
updateSelectedPrompt();
|
2013-05-16 07:53:34 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-03 16:36:08 +02:00
|
|
|
if (!_infscroll_disable) {
|
2015-08-11 11:00:08 +02:00
|
|
|
if (hsp && hsp.offsetTop - 250 <= e.scrollTop + e.offsetHeight) {
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2015-07-29 15:57:24 +02:00
|
|
|
hsp.innerHTML = "<span class='loading'><img src='images/indicator_tiny.gif'> " +
|
|
|
|
__("Loading, please wait...") + "</span>";
|
2011-08-04 13:20:23 +02:00
|
|
|
|
|
|
|
loadMoreHeadlines();
|
2011-11-25 06:51:47 +01:00
|
|
|
return;
|
2011-08-04 13:20:23 +02:00
|
|
|
|
2007-08-24 07:31:57 +02:00
|
|
|
}
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
|
2013-07-11 10:28:24 +02:00
|
|
|
if (isCdmMode()) {
|
2013-06-05 20:19:33 +02:00
|
|
|
updateFloatingTitle();
|
|
|
|
}
|
|
|
|
|
2015-08-11 11:25:11 +02:00
|
|
|
catchupCurrentBatchIfNeeded();
|
|
|
|
|
2011-03-06 07:55:58 +01:00
|
|
|
if (getInitParam("cdm_auto_catchup") == 1) {
|
2011-03-06 07:42:21 +01:00
|
|
|
|
2013-04-04 07:37:43 +02:00
|
|
|
// let's get DOM some time to settle down
|
2013-04-04 07:49:37 +02:00
|
|
|
var ts = new Date().getTime();
|
|
|
|
if (ts - _last_headlines_update < 100) return;
|
2013-04-04 07:37:43 +02:00
|
|
|
|
2011-03-06 07:42:21 +01:00
|
|
|
$$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
|
|
|
|
function(child) {
|
2013-03-21 07:34:36 +01:00
|
|
|
if (child.hasClassName("Unread") && $("headlines-frame").scrollTop >
|
2011-08-03 14:54:08 +02:00
|
|
|
(child.offsetTop + child.offsetHeight/2)) {
|
2011-03-06 07:42:21 +01:00
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
var id = child.id.replace("RROW-", "");
|
|
|
|
|
|
|
|
if (catchup_id_batch.indexOf(id) == -1)
|
|
|
|
catchup_id_batch.push(id);
|
2011-11-25 06:51:47 +01:00
|
|
|
|
|
|
|
//console.log("auto_catchup_batch: " + catchup_id_batch.toString());
|
2011-03-06 07:42:21 +01:00
|
|
|
}
|
2013-05-16 07:53:34 +02:00
|
|
|
|
2011-03-06 07:42:21 +01:00
|
|
|
});
|
|
|
|
|
2014-07-25 10:29:30 +02:00
|
|
|
if (_infscroll_disable) {
|
2014-07-25 10:14:06 +02:00
|
|
|
var child = $$("#headlines-frame div[id*=RROW]").last();
|
|
|
|
|
|
|
|
if (child && $("headlines-frame").scrollTop >
|
2014-07-25 13:40:38 +02:00
|
|
|
(child.offsetTop + child.offsetHeight - 50)) {
|
2014-07-25 10:14:06 +02:00
|
|
|
|
|
|
|
console.log("we seem to be at an end");
|
|
|
|
|
|
|
|
if (getInitParam("on_catchup_show_next_feed") == "1") {
|
2014-07-25 11:54:10 +02:00
|
|
|
openNextUnreadFeed();
|
2014-07-25 10:14:06 +02:00
|
|
|
}
|
|
|
|
}
|
2011-08-04 08:16:27 +02:00
|
|
|
}
|
|
|
|
}
|
2011-03-06 07:42:21 +01:00
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
} catch (e) {
|
2011-08-31 13:25:42 +02:00
|
|
|
console.warn("headlines_scroll_handler: " + e);
|
2011-08-04 08:16:27 +02:00
|
|
|
}
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2014-07-25 11:54:10 +02:00
|
|
|
function openNextUnreadFeed() {
|
|
|
|
try {
|
|
|
|
var is_cat = activeFeedIsCat();
|
|
|
|
var nuf = getNextUnreadFeed(getActiveFeedId(), is_cat);
|
2015-08-12 13:09:46 +02:00
|
|
|
if (nuf) viewfeed({feed: nuf, is_cat: is_cat});
|
2014-07-25 11:54:10 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("openNextUnreadFeed", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
function catchupBatchedArticles() {
|
|
|
|
try {
|
2015-08-11 09:06:30 +02:00
|
|
|
if (catchup_id_batch.length > 0 && !_infscroll_request_sent && !_catchup_request_sent) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2015-08-11 11:25:11 +02:00
|
|
|
console.log("catchupBatchedArticles: working");
|
|
|
|
|
2012-08-23 07:17:30 +02:00
|
|
|
// make a copy of the array
|
|
|
|
var batch = catchup_id_batch.slice();
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=catchupSelected" +
|
2012-08-23 07:17:30 +02:00
|
|
|
"&cmode=0&ids=" + param_escape(batch.toString());
|
|
|
|
|
|
|
|
console.log(query);
|
2011-08-04 08:16:27 +02:00
|
|
|
|
2015-08-11 09:06:30 +02:00
|
|
|
_catchup_request_sent = true;
|
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
|
2015-08-11 09:06:30 +02:00
|
|
|
_catchup_request_sent = false;
|
|
|
|
|
2013-04-04 07:49:37 +02:00
|
|
|
reply = JSON.parse(transport.responseText);
|
|
|
|
var batch = reply.ids;
|
|
|
|
|
2012-08-23 07:17:30 +02:00
|
|
|
batch.each(function(id) {
|
2013-04-04 07:49:37 +02:00
|
|
|
console.log(id);
|
2011-08-04 08:16:27 +02:00
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
if (elem) elem.removeClassName("Unread");
|
2012-08-23 07:17:30 +02:00
|
|
|
catchup_id_batch.remove(id);
|
2011-08-04 08:16:27 +02:00
|
|
|
});
|
|
|
|
|
2013-07-16 08:05:48 +02:00
|
|
|
updateFloatingTitle(true);
|
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
} });
|
2011-03-06 07:42:21 +01:00
|
|
|
}
|
2011-08-04 08:16:27 +02:00
|
|
|
|
2007-08-09 09:36:04 +02:00
|
|
|
} catch (e) {
|
2011-08-04 08:16:27 +02:00
|
|
|
exception_error("catchupBatchedArticles", e);
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
}
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2011-12-10 15:36:38 +01:00
|
|
|
function catchupRelativeToArticle(below, id) {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
try {
|
|
|
|
|
2011-12-10 15:36:38 +01:00
|
|
|
if (!id) id = getActiveArticleId();
|
2009-02-02 09:49:00 +01:00
|
|
|
|
2011-12-10 15:36:38 +01:00
|
|
|
if (!id) {
|
2007-08-22 06:45:01 +02:00
|
|
|
alert(__("No article is selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-03-22 08:11:11 +01:00
|
|
|
var visible_ids = getLoadedArticleIds();
|
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++) {
|
2011-12-10 15:36:38 +01:00
|
|
|
if (visible_ids[i] != id) {
|
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--) {
|
2011-12-10 15:36:38 +01:00
|
|
|
if (visible_ids[i] != id) {
|
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 {
|
2013-03-24 13:32:03 +01:00
|
|
|
var msg = ngettext("Mark %d article as read?", "Mark %d articles as read?", ids_to_mark.length).replace("%d", ids_to_mark.length);
|
2007-08-22 06:45:01 +02:00
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=catchupSelected" +
|
2011-03-18 10:46:22 +01:00
|
|
|
"&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,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2007-08-30 03:01:23 +02:00
|
|
|
} });
|
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupRelativeToArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2013-04-25 12:04:49 +02:00
|
|
|
function cdmCollapseArticle(event, id, unmark) {
|
2013-03-20 07:21:14 +01:00
|
|
|
try {
|
2013-04-25 12:04:49 +02:00
|
|
|
if (unmark == undefined) unmark = true;
|
|
|
|
|
2013-03-20 07:21:14 +01:00
|
|
|
var row = $("RROW-" + id);
|
|
|
|
var elem = $("CICD-" + id);
|
|
|
|
|
|
|
|
if (elem && row) {
|
|
|
|
var collapse = $$("div#RROW-" + id +
|
|
|
|
" span[class='collapseBtn']")[0];
|
|
|
|
|
|
|
|
Element.hide(elem);
|
|
|
|
Element.show("CEXC-" + id);
|
|
|
|
Element.hide(collapse);
|
|
|
|
|
2013-04-25 12:04:49 +02:00
|
|
|
if (unmark) {
|
|
|
|
row.removeClassName("active");
|
|
|
|
|
|
|
|
markHeadline(id, false);
|
2013-03-20 07:21:14 +01:00
|
|
|
|
2013-04-25 12:04:49 +02:00
|
|
|
if (id == getActiveArticleId()) {
|
|
|
|
setActiveArticleId(0);
|
|
|
|
}
|
2013-05-03 01:15:41 +02:00
|
|
|
|
|
|
|
updateSelectedPrompt();
|
2013-03-20 07:21:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (event) Event.stop(event);
|
2013-04-25 08:09:40 +02:00
|
|
|
|
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_COLLAPSED, id);
|
2013-07-11 10:28:24 +02:00
|
|
|
|
|
|
|
if (row.offsetTop < $("headlines-frame").scrollTop)
|
|
|
|
scrollToRowId(row.id);
|
|
|
|
|
2015-01-31 03:58:44 +01:00
|
|
|
$("floatingTitle").style.visibility = "hidden";
|
2013-07-11 10:28:24 +02:00
|
|
|
$("floatingTitle").setAttribute("rowid", false);
|
2013-03-20 07:21:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmCollapseArticle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
function cdmExpandArticle(id, noexpand) {
|
2007-10-18 04:55:44 +02:00
|
|
|
try {
|
2013-03-20 07:59:12 +01:00
|
|
|
console.log("cdmExpandArticle " + id);
|
|
|
|
|
2013-03-25 08:56:48 +01:00
|
|
|
if (!$("RROW-" + id)) return false;
|
|
|
|
|
2013-03-29 16:31:10 +01:00
|
|
|
var oldrow = $("RROW-" + getActiveArticleId());
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
var elem = $("CICD-" + getActiveArticleId());
|
2008-05-21 05:47:14 +02:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
if (id == getActiveArticleId() && Element.visible(elem))
|
2010-11-09 18:57:23 +01:00
|
|
|
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;
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
if (getActiveArticleId() && elem && !getInitParam("cdm_expanded")) {
|
2013-03-20 07:21:14 +01:00
|
|
|
var collapse = $$("div#RROW-" + getActiveArticleId() +
|
|
|
|
" span[class='collapseBtn']")[0];
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
Element.hide(elem);
|
2013-02-28 10:18:58 +01:00
|
|
|
Element.show("CEXC-" + getActiveArticleId());
|
2013-03-20 07:21:14 +01:00
|
|
|
Element.hide(collapse);
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2013-03-29 16:31:10 +01:00
|
|
|
if (oldrow) oldrow.removeClassName("active");
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
setActiveArticleId(id);
|
2013-03-20 10:23:24 +01:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
elem = $("CICD-" + id);
|
|
|
|
|
2013-03-20 07:21:14 +01:00
|
|
|
var collapse = $$("div#RROW-" + id +
|
|
|
|
" span[class='collapseBtn']")[0];
|
|
|
|
|
2013-03-20 10:17:48 +01:00
|
|
|
var cencw = $("CENCW-" + id);
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
if (!Element.visible(elem) && !noexpand) {
|
2013-03-20 10:17:48 +01:00
|
|
|
if (cencw) {
|
|
|
|
cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
|
|
|
|
cencw.setAttribute('id', '');
|
2013-03-21 07:34:36 +01:00
|
|
|
Element.show(cencw);
|
2013-03-20 10:17:48 +01:00
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
Element.show(elem);
|
|
|
|
Element.hide("CEXC-" + id);
|
2013-03-20 07:21:14 +01:00
|
|
|
Element.show(collapse);
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
|
2013-03-21 06:21:14 +01:00
|
|
|
var new_offset = $("RROW-" + id).offsetTop;
|
2013-03-20 07:43:55 +01:00
|
|
|
|
2013-03-21 06:32:04 +01:00
|
|
|
if (old_offset > new_offset)
|
|
|
|
$("headlines-frame").scrollTop -= (old_offset-new_offset);
|
2013-03-20 07:43:55 +01:00
|
|
|
|
2015-08-11 11:25:11 +02:00
|
|
|
if (!noexpand) {
|
|
|
|
if (catchup_id_batch.indexOf(id) == -1)
|
|
|
|
catchup_id_batch.push(id);
|
|
|
|
|
|
|
|
catchupCurrentBatchIfNeeded();
|
|
|
|
}
|
2015-08-11 09:06:30 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
toggleSelected(id);
|
2013-03-29 16:31:10 +01:00
|
|
|
$("RROW-" + id).addClassName("active");
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2013-04-25 08:09:40 +02:00
|
|
|
PluginHost.run(PluginHost.HOOK_ARTICLE_EXPANDED, 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-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
|
|
|
|
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 {
|
2010-11-29 12:11:54 +01:00
|
|
|
var data = JSON.parse(transport.responseText);
|
2009-01-18 16:07:31 +01:00
|
|
|
|
2010-11-29 12:11:54 +01:00
|
|
|
if (data) {
|
|
|
|
data['info-for-headlines'].each(function(elem) {
|
2013-07-11 14:49:25 +02:00
|
|
|
$$(".HLLCTR-" + elem.id).each(function(ctr) {
|
|
|
|
ctr.innerHTML = elem.labels;
|
|
|
|
});
|
2010-11-29 12:11:54 +01:00
|
|
|
});
|
2009-01-18 16:07:31 +01:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("show_labels_in_headlines", e);
|
|
|
|
}
|
|
|
|
}
|
2009-01-20 18:46:21 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function cdmClicked(event, id) {
|
|
|
|
try {
|
2011-12-10 18:26:59 +01:00
|
|
|
//var shift_key = event.shiftKey;
|
2010-11-11 11:37:03 +01:00
|
|
|
|
2016-02-07 19:48:24 +01:00
|
|
|
if (!event.ctrlKey && !event.metaKey) {
|
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
|
|
|
|
2013-03-29 15:53:16 +01:00
|
|
|
var elem = $("RROW-" + getActiveArticleId());
|
|
|
|
|
|
|
|
if (elem) elem.removeClassName("active");
|
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
selectArticles("none");
|
|
|
|
toggleSelected(id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
var elem = $("RROW-" + id);
|
2012-04-05 09:58:50 +02:00
|
|
|
var article_is_unread = elem.hasClassName("Unread");
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-03-29 15:53:16 +01:00
|
|
|
elem.removeClassName("Unread");
|
|
|
|
elem.addClassName("active");
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
setActiveArticleId(id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2012-04-05 09:58:50 +02:00
|
|
|
if (article_is_unread) {
|
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
2013-07-16 07:59:14 +02:00
|
|
|
updateFloatingTitle(true);
|
2012-04-05 09:58:50 +02:00
|
|
|
}
|
|
|
|
|
2011-12-12 19:46:25 +01:00
|
|
|
var query = "?op=rpc&method=catchupSelected" +
|
2010-11-16 12:43:43 +01:00
|
|
|
"&cmode=0&ids=" + param_escape(id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2010-11-16 12:43:43 +01:00
|
|
|
} });
|
2010-12-21 18:11:38 +01:00
|
|
|
|
2013-02-28 17:15:17 +01:00
|
|
|
return !event.shiftKey;
|
2010-11-12 23:41:18 +01:00
|
|
|
}
|
|
|
|
|
2014-05-08 08:41:21 +02:00
|
|
|
} else if (event.target.parents(".cdmHeader").length > 0) {
|
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
toggleSelected(id, true);
|
2012-04-05 09:58:50 +02:00
|
|
|
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
var article_is_unread = elem.hasClassName("Unread");
|
|
|
|
|
|
|
|
if (article_is_unread) {
|
|
|
|
decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
}
|
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
toggleUnread(id, 0, false);
|
2013-02-06 08:09:45 +01:00
|
|
|
|
|
|
|
openArticleInNewWindow(id);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
2013-02-27 13:57:26 +01:00
|
|
|
var unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length
|
|
|
|
request_counters(unread_in_buffer == 0);
|
2013-02-01 10:09:43 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmClicked");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
function hlClicked(event, id) {
|
|
|
|
try {
|
2011-03-30 14:39:27 +02:00
|
|
|
if (event.which == 2) {
|
|
|
|
view(id);
|
|
|
|
return true;
|
2016-02-07 19:48:24 +01:00
|
|
|
} else if (event.ctrlKey || event.metaKey) {
|
2013-02-06 08:09:45 +01:00
|
|
|
toggleSelected(id, true);
|
|
|
|
toggleUnread(id, 0, false);
|
2010-11-21 19:47:38 +01:00
|
|
|
openArticleInNewWindow(id);
|
2011-03-30 14:39:27 +02:00
|
|
|
return false;
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
2013-02-06 08:09:45 +01:00
|
|
|
view(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 openArticleInNewWindow(id) {
|
2010-11-19 19:05:28 +01:00
|
|
|
toggleUnread(id, 0, false);
|
2011-12-13 07:58:30 +01:00
|
|
|
window.open("backend.php?op=article&method=redirect&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
|
|
|
}
|
|
|
|
|
2013-03-20 07:21:14 +01:00
|
|
|
function markHeadline(id, marked) {
|
|
|
|
if (marked == undefined) marked = true;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (row) {
|
2013-04-06 22:52:39 +02:00
|
|
|
var check = dijit.getEnclosingWidget(
|
|
|
|
row.getElementsByClassName("rchk")[0]);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
if (check) {
|
2013-03-20 07:21:14 +01:00
|
|
|
check.attr("checked", marked);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
2013-03-20 07:59:12 +01:00
|
|
|
if (marked)
|
|
|
|
row.addClassName("Selected");
|
|
|
|
else
|
|
|
|
row.removeClassName("Selected");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
function getRelativePostIds(id, limit) {
|
|
|
|
|
|
|
|
var tmp = [];
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (!limit) limit = 6; //3
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2016-03-22 08:11:11 +01:00
|
|
|
var ids = getLoadedArticleIds();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
if (ids[i] == id) {
|
|
|
|
for (var k = 1; k <= limit; k++) {
|
2011-08-31 13:25:42 +02:00
|
|
|
//if (i > k-1) tmp.push(ids[i-k]);
|
2010-11-13 12:04:37 +01:00
|
|
|
if (i < ids.length-k) tmp.push(ids[i+k]);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("getRelativePostIds", e);
|
|
|
|
}
|
|
|
|
|
|
|
|
return tmp;
|
|
|
|
}
|
|
|
|
|
|
|
|
function correctHeadlinesOffset(id) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
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);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2012-09-04 10:10:42 +02:00
|
|
|
if (!container || !row) return;
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
var viewport = container.offsetHeight;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
var rel_offset_top = row.offsetTop - container.scrollTop;
|
|
|
|
var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
//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 */
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
|
|
|
|
}
|
2010-11-13 12:04:37 +01:00
|
|
|
|
|
|
|
} 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-20 22:08:42 +01:00
|
|
|
elem.attr('value', 'false');
|
2010-11-15 19:49:00 +01:00
|
|
|
} 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
|
|
|
|
2013-02-06 08:09:45 +01:00
|
|
|
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
|
|
|
|
2013-07-11 14:49:25 +02:00
|
|
|
function initFloatingMenu() {
|
2010-11-19 19:05:28 +01:00
|
|
|
try {
|
2016-03-22 11:38:20 +01:00
|
|
|
if (!dijit.byId("floatingMenu")) {
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2013-07-11 14:49:25 +02:00
|
|
|
var menu = new dijit.Menu({
|
|
|
|
id: "floatingMenu",
|
|
|
|
targetNodeIds: ["floatingTitle"]
|
|
|
|
});
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2016-03-22 11:38:20 +01:00
|
|
|
var tmph = dojo.connect(menu, '_openMyself', function (event) {
|
|
|
|
var callerNode = event.target, match = null, tries = 0;
|
|
|
|
|
|
|
|
while (match == null && callerNode && tries <= 3) {
|
|
|
|
match = callerNode.getAttribute("rowid").match("^[A-Z]+[-]([0-9]+)$");
|
|
|
|
callerNode = callerNode.parentNode;
|
|
|
|
++tries;
|
|
|
|
}
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2016-03-22 11:38:20 +01:00
|
|
|
if (match) this.callerRowId = parseInt(match[1]);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
headlinesMenuCommon(menu);
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2013-07-11 14:49:25 +02:00
|
|
|
menu.startup();
|
2016-03-22 11:38:20 +01:00
|
|
|
}
|
|
|
|
|
2013-07-11 14:49:25 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("initFloatingMenu", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2016-03-22 11:38:20 +01:00
|
|
|
function headlinesMenuCommon(menu) {
|
2013-07-11 14:49:25 +02:00
|
|
|
try {
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Open original article"),
|
|
|
|
onClick: function(event) {
|
2016-03-22 11:38:20 +01:00
|
|
|
openArticleInNewWindow(this.getParent().callerRowId);
|
2010-11-19 19:05:28 +01:00
|
|
|
}}));
|
|
|
|
|
2013-03-21 20:29:06 +01:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Display article URL"),
|
|
|
|
onClick: function(event) {
|
2016-03-22 11:38:20 +01:00
|
|
|
displayArticleUrl(this.getParent().callerRowId);
|
2013-03-21 20:29:06 +01:00
|
|
|
}}));
|
|
|
|
|
2011-12-10 15:36:38 +01:00
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
|
|
|
|
2013-03-30 10:42:33 +01:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle unread"),
|
|
|
|
onClick: function(event) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
// cast to string
|
2016-03-22 11:38:20 +01:00
|
|
|
var id = (this.getParent().callerRowId) + "";
|
2013-03-30 10:42:33 +01:00
|
|
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
|
|
|
|
|
|
|
selectionToggleUnread(undefined, false, true, ids);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
2013-05-29 14:14:32 +02:00
|
|
|
label: __("Toggle starred"),
|
2013-03-30 10:42:33 +01:00
|
|
|
onClick: function(event) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
// cast to string
|
2016-03-22 11:38:20 +01:00
|
|
|
var id = (this.getParent().callerRowId) + "";
|
2013-03-30 10:42:33 +01:00
|
|
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
|
|
|
|
|
|
|
selectionToggleMarked(undefined, false, true, ids);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle published"),
|
|
|
|
onClick: function(event) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
// cast to string
|
2016-03-22 11:38:20 +01:00
|
|
|
var id = (this.getParent().callerRowId) + "";
|
2013-03-30 10:42:33 +01:00
|
|
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
|
|
|
|
|
|
|
selectionTogglePublished(undefined, false, true, ids);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
|
|
|
|
2011-12-10 15:36:38 +01:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark above as read"),
|
|
|
|
onClick: function(event) {
|
2016-03-22 11:38:20 +01:00
|
|
|
catchupRelativeToArticle(0, this.getParent().callerRowId);
|
2011-12-10 15:36:38 +01:00
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark below as read"),
|
|
|
|
onClick: function(event) {
|
2016-03-22 11:38:20 +01:00
|
|
|
catchupRelativeToArticle(1, this.getParent().callerRowId);
|
2011-12-10 15:36:38 +01:00
|
|
|
}}));
|
|
|
|
|
2011-03-07 13:24:49 +01:00
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
var labels = dijit.byId("feedTree").model.getItemsInCategory(-2);
|
|
|
|
|
|
|
|
if (labels) {
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuSeparator());
|
|
|
|
|
2011-03-07 13:24:49 +01:00
|
|
|
var labelAddMenu = new dijit.Menu({ownerMenu: menu});
|
|
|
|
var labelDelMenu = new dijit.Menu({ownerMenu: menu});
|
2010-11-19 20:18:26 +01:00
|
|
|
|
|
|
|
labels.each(function(label) {
|
|
|
|
var id = label.id[0];
|
|
|
|
var bare_id = id.substr(id.indexOf(":")+1);
|
|
|
|
var name = label.name[0];
|
|
|
|
|
2013-03-27 06:40:07 +01:00
|
|
|
bare_id = feed_to_label_id(bare_id);
|
2010-11-19 20:18:26 +01:00
|
|
|
|
2011-03-07 13:24:49 +01:00
|
|
|
labelAddMenu.addChild(new dijit.MenuItem({
|
2010-11-19 20:18:26 +01:00
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
|
|
|
onClick: function(event) {
|
2012-08-23 21:59:46 +02:00
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
// cast to string
|
2016-03-22 11:38:20 +01:00
|
|
|
var id = (this.getParent().ownerMenu.callerRowId) + "";
|
2012-08-23 21:59:46 +02:00
|
|
|
|
|
|
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
|
|
|
|
|
|
|
selectionAssignLabel(this.labelId, ids);
|
2010-11-19 20:18:26 +01:00
|
|
|
}}));
|
2011-03-07 13:24:49 +01:00
|
|
|
|
|
|
|
labelDelMenu.addChild(new dijit.MenuItem({
|
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
|
|
|
onClick: function(event) {
|
2012-08-23 21:59:46 +02:00
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
// cast to string
|
2016-03-22 11:38:20 +01:00
|
|
|
var id = (this.getParent().ownerMenu.callerRowId) + "";
|
2012-08-23 21:59:46 +02:00
|
|
|
|
|
|
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
|
|
|
|
|
|
|
selectionRemoveLabel(this.labelId, ids);
|
2011-03-07 13:24:49 +01:00
|
|
|
}}));
|
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
});
|
|
|
|
|
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
2011-03-07 13:24:49 +01:00
|
|
|
label: __("Assign label"),
|
2015-07-13 00:28:02 +02:00
|
|
|
popup: labelAddMenu
|
2011-03-07 13:24:49 +01:00
|
|
|
}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
|
|
|
label: __("Remove label"),
|
2015-07-13 00:28:02 +02:00
|
|
|
popup: labelDelMenu
|
2010-11-19 20:18:26 +01:00
|
|
|
}));
|
2011-03-07 13:24:49 +01:00
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
}
|
|
|
|
|
2013-07-11 14:49:25 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("headlinesMenuCommon", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function initHeadlinesMenu() {
|
|
|
|
try {
|
|
|
|
if (dijit.byId("headlinesMenu"))
|
|
|
|
dijit.byId("headlinesMenu").destroyRecursive();
|
|
|
|
|
|
|
|
var ids = [];
|
|
|
|
|
|
|
|
if (!isCdmMode()) {
|
|
|
|
nodes = $$("#headlines-frame > div[id*=RROW]");
|
|
|
|
} else {
|
|
|
|
nodes = $$("#headlines-frame span[id*=RTITLE]");
|
|
|
|
}
|
|
|
|
|
|
|
|
nodes.each(function(node) {
|
|
|
|
ids.push(node.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
var menu = new dijit.Menu({
|
|
|
|
id: "headlinesMenu",
|
2015-07-13 00:28:02 +02:00
|
|
|
targetNodeIds: ids
|
2013-07-11 14:49:25 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
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]);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2016-03-22 11:38:20 +01:00
|
|
|
headlinesMenuCommon(menu);
|
2013-07-11 14:49:25 +02:00
|
|
|
|
2010-11-19 19:05:28 +01:00
|
|
|
menu.startup();
|
|
|
|
|
2013-10-17 11:38:48 +02:00
|
|
|
/* vgroup feed title menu */
|
|
|
|
|
|
|
|
var nodes = $$("#headlines-frame > div[class='cdmFeedTitle']");
|
|
|
|
var ids = [];
|
|
|
|
|
|
|
|
nodes.each(function(node) {
|
|
|
|
ids.push(node.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (ids.length > 0) {
|
|
|
|
if (dijit.byId("headlinesFeedTitleMenu"))
|
|
|
|
dijit.byId("headlinesFeedTitleMenu").destroyRecursive();
|
|
|
|
|
|
|
|
var menu = new dijit.Menu({
|
|
|
|
id: "headlinesFeedTitleMenu",
|
2015-07-13 00:28:02 +02:00
|
|
|
targetNodeIds: ids
|
2013-10-17 11:38:48 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
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: __("Select articles in group"),
|
|
|
|
onClick: function(event) {
|
|
|
|
selectArticles("all",
|
|
|
|
"#headlines-frame > div[id*=RROW]"+
|
|
|
|
"[orig-feed-id='"+menu.callerRowId+"']");
|
|
|
|
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark group as read"),
|
|
|
|
onClick: function(event) {
|
2013-10-20 16:45:24 +02:00
|
|
|
selectArticles("none");
|
2013-10-17 11:38:48 +02:00
|
|
|
selectArticles("all",
|
|
|
|
"#headlines-frame > div[id*=RROW]"+
|
|
|
|
"[orig-feed-id='"+menu.callerRowId+"']");
|
|
|
|
|
|
|
|
catchupSelection();
|
|
|
|
}}));
|
|
|
|
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark feed as read"),
|
|
|
|
onClick: function(event) {
|
|
|
|
catchupFeedInGroup(menu.callerRowId);
|
|
|
|
}}));
|
|
|
|
|
2015-09-07 11:49:49 +02:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Edit feed"),
|
|
|
|
onClick: function(event) {
|
|
|
|
editFeed(menu.callerRowId);
|
|
|
|
}}));
|
|
|
|
|
2013-10-17 11:38:48 +02:00
|
|
|
menu.startup();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-19 19:05:28 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("initHeadlinesMenu", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-25 10:05:48 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
function cache_set(id, obj) {
|
2011-08-31 13:25:42 +02:00
|
|
|
//console.log("cache_set: " + id);
|
2011-08-31 12:03:52 +02:00
|
|
|
if (has_storage)
|
|
|
|
try {
|
|
|
|
sessionStorage[id] = obj;
|
|
|
|
} catch (e) {
|
2011-09-13 03:39:32 +02:00
|
|
|
sessionStorage.clear();
|
2011-08-31 12:03:52 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_get(id) {
|
|
|
|
if (has_storage)
|
|
|
|
return sessionStorage[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_clear() {
|
|
|
|
if (has_storage)
|
|
|
|
sessionStorage.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_delete(id) {
|
|
|
|
if (has_storage)
|
|
|
|
sessionStorage.removeItem(id);
|
|
|
|
}
|
|
|
|
|
2012-10-30 07:24:30 +01:00
|
|
|
function cancelSearch() {
|
|
|
|
try {
|
|
|
|
_search_query = "";
|
|
|
|
viewCurrentFeed();
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cancelSearch", e);
|
|
|
|
}
|
|
|
|
}
|
2012-10-31 11:39:26 +01:00
|
|
|
|
2012-10-31 12:17:49 +01:00
|
|
|
function setSelectionScore() {
|
|
|
|
try {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length > 0) {
|
|
|
|
console.log(ids);
|
|
|
|
|
|
|
|
var score = prompt(__("Please enter new score for selected articles:"), score);
|
|
|
|
|
|
|
|
if (score != undefined) {
|
2013-04-02 12:41:41 +02:00
|
|
|
var query = "op=article&method=setScore&id=" + param_escape(ids.toString()) +
|
2012-10-31 12:17:49 +01:00
|
|
|
"&score=" + param_escape(score);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
if (reply) {
|
|
|
|
console.log(ids);
|
|
|
|
|
|
|
|
ids.each(function(id) {
|
|
|
|
var row = $("RROW-" + id);
|
|
|
|
|
|
|
|
if (row) {
|
|
|
|
var pic = row.getElementsByClassName("hlScorePic")[0];
|
|
|
|
|
|
|
|
if (pic) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/,
|
|
|
|
reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", score);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("setSelectionScore", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-17 21:04:32 +02:00
|
|
|
function updateScore(id) {
|
|
|
|
try {
|
|
|
|
var pic = $$("#RROW-" + id + " .hlScorePic")[0];
|
|
|
|
|
|
|
|
if (pic) {
|
|
|
|
|
|
|
|
var query = "op=article&method=getScore&id=" + param_escape(id);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
console.log(transport.responseText);
|
|
|
|
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (reply) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", reply["score"]);
|
|
|
|
pic.setAttribute("title", reply["score"]);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("updateScore", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-10-31 11:39:26 +01:00
|
|
|
function changeScore(id, pic) {
|
|
|
|
try {
|
|
|
|
var score = pic.getAttribute("score");
|
|
|
|
|
|
|
|
var new_score = prompt(__("Please enter new score for this article:"), score);
|
|
|
|
|
|
|
|
if (new_score != undefined) {
|
|
|
|
|
2013-04-02 12:41:41 +02:00
|
|
|
var query = "op=article&method=setScore&id=" + param_escape(id) +
|
2012-10-31 11:39:26 +01:00
|
|
|
"&score=" + param_escape(new_score);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (reply) {
|
|
|
|
pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
|
|
|
|
pic.setAttribute("score", new_score);
|
2015-06-17 21:04:32 +02:00
|
|
|
pic.setAttribute("title", new_score);
|
2012-10-31 11:39:26 +01:00
|
|
|
}
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("changeScore", e);
|
|
|
|
}
|
|
|
|
}
|
2013-03-21 20:29:06 +01:00
|
|
|
|
|
|
|
function displayArticleUrl(id) {
|
|
|
|
try {
|
2013-03-22 06:49:45 +01:00
|
|
|
var query = "op=rpc&method=getlinktitlebyid&id=" + param_escape(id);
|
2013-03-21 20:29:06 +01:00
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (reply && reply.link) {
|
|
|
|
prompt(__("Article URL:"), reply.link);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("changeScore", e);
|
|
|
|
}
|
|
|
|
}
|
2013-03-27 06:40:07 +01:00
|
|
|
|
2013-07-10 20:11:24 +02:00
|
|
|
function scrollToRowId(id) {
|
|
|
|
try {
|
|
|
|
var row = $(id);
|
|
|
|
|
|
|
|
if (row)
|
2015-01-31 03:58:44 +01:00
|
|
|
$("headlines-frame").scrollTop = row.offsetTop - 4;
|
2013-07-10 20:11:24 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("scrollToRowId", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-07-16 07:59:14 +02:00
|
|
|
function updateFloatingTitle(unread_only) {
|
2013-06-05 20:19:33 +02:00
|
|
|
try {
|
2013-07-16 07:59:14 +02:00
|
|
|
if (!isCdmMode()) return;
|
|
|
|
|
2013-06-05 20:19:33 +02:00
|
|
|
var hf = $("headlines-frame");
|
|
|
|
|
2013-07-10 20:16:10 +02:00
|
|
|
var elems = $$("#headlines-frame > div[id*=RROW]");
|
2013-06-05 20:19:33 +02:00
|
|
|
|
2013-07-10 20:11:24 +02:00
|
|
|
for (var i = 0; i < elems.length; i++) {
|
2013-06-28 06:30:35 +02:00
|
|
|
|
2013-07-10 20:11:24 +02:00
|
|
|
var child = elems[i];
|
2013-06-24 23:35:07 +02:00
|
|
|
|
2013-07-10 20:11:24 +02:00
|
|
|
if (child && child.offsetTop + child.offsetHeight > hf.scrollTop) {
|
|
|
|
|
|
|
|
var header = child.getElementsByClassName("cdmHeader")[0];
|
|
|
|
|
2013-07-16 07:59:14 +02:00
|
|
|
if (unread_only || child.id != $("floatingTitle").getAttribute("rowid")) {
|
|
|
|
if (child.id != $("floatingTitle").getAttribute("rowid")) {
|
|
|
|
$("floatingTitle").setAttribute("rowid", child.id);
|
|
|
|
$("floatingTitle").innerHTML = header.innerHTML;
|
|
|
|
$("floatingTitle").firstChild.innerHTML = "<img class='anchor markedPic' src='images/page_white_go.png' onclick=\"scrollToRowId('"+child.id+"')\">" + $("floatingTitle").firstChild.innerHTML;
|
2013-07-10 20:11:24 +02:00
|
|
|
|
2013-07-16 07:59:14 +02:00
|
|
|
initFloatingMenu();
|
2013-07-11 14:49:25 +02:00
|
|
|
|
2013-07-16 07:59:14 +02:00
|
|
|
var cb = $$("#floatingTitle .dijitCheckBox")[0];
|
|
|
|
|
|
|
|
if (cb)
|
|
|
|
cb.parentNode.removeChild(cb);
|
|
|
|
}
|
2013-07-15 07:15:07 +02:00
|
|
|
|
2013-07-16 07:59:14 +02:00
|
|
|
if (child.hasClassName("Unread"))
|
|
|
|
$("floatingTitle").addClassName("Unread");
|
|
|
|
else
|
|
|
|
$("floatingTitle").removeClassName("Unread");
|
2013-07-15 07:15:07 +02:00
|
|
|
|
2013-07-10 20:11:24 +02:00
|
|
|
PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, child);
|
|
|
|
}
|
|
|
|
|
2015-01-31 03:58:44 +01:00
|
|
|
$("floatingTitle").style.marginRight = hf.offsetWidth - child.offsetWidth + "px";
|
|
|
|
if (header.offsetTop + header.offsetHeight < hf.scrollTop + $("floatingTitle").offsetHeight - 5 &&
|
|
|
|
child.offsetTop + child.offsetHeight >= hf.scrollTop + $("floatingTitle").offsetHeight - 5)
|
|
|
|
$("floatingTitle").style.visibility = "visible";
|
2013-07-10 20:11:24 +02:00
|
|
|
else
|
2015-01-31 03:58:44 +01:00
|
|
|
$("floatingTitle").style.visibility = "hidden";
|
2013-07-10 20:11:24 +02:00
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
2013-06-05 20:19:33 +02:00
|
|
|
}
|
2013-06-24 23:35:07 +02:00
|
|
|
|
2013-06-05 20:19:33 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("updateFloatingTitle", e);
|
|
|
|
}
|
|
|
|
}
|
2015-06-18 15:00:03 +02:00
|
|
|
|
2015-08-11 11:25:11 +02:00
|
|
|
function catchupCurrentBatchIfNeeded() {
|
|
|
|
if (catchup_id_batch.length > 0) {
|
|
|
|
window.clearTimeout(catchup_timeout_id);
|
|
|
|
catchup_timeout_id = window.setTimeout('catchupBatchedArticles()', 1000);
|
|
|
|
|
|
|
|
if (catchup_id_batch.length >= 10) {
|
|
|
|
catchupBatchedArticles();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-18 15:00:03 +02:00
|
|
|
function cdmFooterClick(event) {
|
|
|
|
event.stopPropagation();
|
|
|
|
}
|