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;
|
2011-08-04 08:16:27 +02:00
|
|
|
|
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
|
|
|
|
2010-11-19 14:08:02 +01:00
|
|
|
loading_set_progress(25);
|
2008-05-19 09:37:44 +02: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'];
|
|
|
|
|
|
|
|
if (getInitParam("cdm_auto_catchup") == 1) {
|
|
|
|
content = content + "<div id='headlines-spacer'></div>";
|
|
|
|
}
|
2011-08-31 13:25:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2013-04-04 18:14:39 +02:00
|
|
|
if (feed_id != getActiveFeedId() || is_cat != activeFeedIsCat())
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
} catch (e) { };
|
2007-11-21 09:23:34 +01:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
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 = [];
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
dijit.byId("headlines-frame").attr('content',
|
|
|
|
reply['headlines']['content']);
|
2010-11-19 19:05:28 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
dijit.byId("headlines-toolbar").attr('content',
|
|
|
|
reply['headlines']['toolbar']);
|
2007-11-21 10:15:14 +01:00
|
|
|
|
2012-07-11 07:20:55 +02:00
|
|
|
$$("#headlines-frame > div[id*=RROW]").each(function(row) {
|
2012-10-31 19:55:35 +01:00
|
|
|
if (loaded_article_ids.indexOf(row.id) != -1) {
|
2012-07-11 07:20:55 +02:00
|
|
|
row.parentNode.removeChild(row);
|
2012-10-31 19:55:35 +01:00
|
|
|
} else {
|
|
|
|
loaded_article_ids.push(row.id);
|
2012-07-11 07:20:55 +02:00
|
|
|
}
|
|
|
|
});
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2011-11-04 08:33:40 +01:00
|
|
|
if (getInitParam("cdm_auto_catchup") == 1) {
|
|
|
|
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
|
|
|
|
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();
|
2012-10-31 20:00:40 +01:00
|
|
|
var new_elems = [];
|
2010-11-26 07:42:45 +01:00
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$("headlines-tmp").innerHTML = reply['headlines']['content'];
|
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);
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
$$("#headlines-tmp > div").each(function(row) {
|
2012-10-27 22:41:51 +02:00
|
|
|
if (row.className == 'cdmFeedTitle') {
|
2011-09-25 18:03:16 +02:00
|
|
|
row.style.display = 'none';
|
|
|
|
c.domNode.appendChild(row);
|
2012-10-31 20:00:40 +01:00
|
|
|
new_elems.push(row);
|
2012-10-31 19:55:35 +01:00
|
|
|
} else if (loaded_article_ids.indexOf(row.id) == -1) {
|
2012-10-27 22:41:51 +02:00
|
|
|
row.style.display = 'none';
|
|
|
|
c.domNode.appendChild(row);
|
2012-10-31 20:00:40 +01:00
|
|
|
new_elems.push(row);
|
2012-10-31 19:55:35 +01:00
|
|
|
loaded_article_ids.push(row.id);
|
2011-10-20 21:45:55 +02:00
|
|
|
} else {
|
|
|
|
row.parentNode.removeChild(row);
|
2011-09-25 18:03:16 +02:00
|
|
|
}
|
2011-03-18 10:55:45 +01:00
|
|
|
});
|
2007-09-05 18:10:35 +02:00
|
|
|
|
2011-08-03 16:48:28 +02:00
|
|
|
if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2011-08-04 13:20:23 +02:00
|
|
|
fixHeadlinesOrder(getLoadedArticleIds());
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2011-11-04 08:33:40 +01:00
|
|
|
if (getInitParam("cdm_auto_catchup") == 1) {
|
|
|
|
c.domNode.appendChild(hsp);
|
|
|
|
}
|
2011-08-03 16:36:08 +02:00
|
|
|
|
2012-10-31 20:00:40 +01:00
|
|
|
console.log("added " + new_elems.size() + " headlines");
|
2012-08-23 07:17:30 +02:00
|
|
|
|
2012-10-31 20:00:40 +01:00
|
|
|
if (new_elems.size() == 0)
|
2012-10-10 14:30:26 +02:00
|
|
|
_infscroll_disable = true;
|
|
|
|
|
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
|
|
|
|
2012-10-31 20:00:40 +01:00
|
|
|
new_elems.each(function(child) {
|
2013-04-06 22:52:39 +02:00
|
|
|
dojo.parser.parse(child);
|
2013-02-28 12:48:09 +01:00
|
|
|
|
2013-04-06 22:52:39 +02:00
|
|
|
if (!Element.visible(child))
|
|
|
|
new Effect.Appear(child, { duration : 0.5 });
|
2011-08-04 09:56:43 +02:00
|
|
|
});
|
|
|
|
|
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
|
|
|
|
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
if (hsp) hsp.innerHTML = "";
|
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
|
|
|
|
2012-12-26 15:24:14 +01:00
|
|
|
} else if (transport.responseText) {
|
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>");
|
2012-12-26 15:24:14 +01:00
|
|
|
} else {
|
2013-01-14 11:16:55 +01:00
|
|
|
//notify_error("Error communicating with server.");
|
2013-02-06 17:14:06 +01:00
|
|
|
Element.show(dijit.byId("net-alert").domNode);
|
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 {
|
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);
|
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 {
|
2010-11-13 12:04:37 +01:00
|
|
|
selectArticles("none");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var crow = $("RROW-" + id);
|
2007-10-10 14:09:09 +02:00
|
|
|
|
|
|
|
if (!crow) return;
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var article_is_unread = crow.hasClassName("Unread");
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
if (!noexpand)
|
|
|
|
crow.removeClassName("Unread");
|
2013-03-29 20:04:27 +01:00
|
|
|
crow.addClassName("active");
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('none');
|
|
|
|
|
2007-11-22 08:45:46 +01:00
|
|
|
var view_mode = false;
|
|
|
|
|
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
view_mode = document.forms['main_toolbar_form'].view_mode;
|
2007-11-22 08:45:46 +01:00
|
|
|
view_mode = view_mode[view_mode.selectedIndex].value;
|
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
//
|
2007-11-22 08:45:46 +01:00
|
|
|
}
|
|
|
|
|
2007-11-22 08:36:26 +01:00
|
|
|
markHeadline(id);
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
if (article_is_unread && !noexpand)
|
2010-11-11 09:36:56 +01:00
|
|
|
_force_scheduled_update = true;
|
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("showArticleInHeadlines", e);
|
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function article_callback2(transport, id) {
|
2007-08-24 09:53:35 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("article_callback2 " + id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
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;
|
|
|
|
// }
|
|
|
|
|
2013-01-14 11:16:55 +01:00
|
|
|
} else if (transport.responseText) {
|
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>");
|
2013-01-14 11:16:55 +01:00
|
|
|
} else {
|
2013-02-06 17:14:06 +01:00
|
|
|
Element.show(dijit.byId("net-alert").domNode);
|
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
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
//headlines_scroll_handler($("headlines-frame"));
|
2012-09-10 19:00:35 +02:00
|
|
|
|
|
|
|
/* try {
|
2011-09-21 07:25:21 +02:00
|
|
|
if (!_infscroll_disable &&
|
|
|
|
$$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
|
|
|
|
|
|
|
|
loadMoreHeadlines();
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
2012-09-10 19:00:35 +02:00
|
|
|
} */
|
2011-09-21 07:25:21 +02:00
|
|
|
|
2007-03-04 10:54:07 +01:00
|
|
|
notify("");
|
2007-08-24 09:53:35 +02:00
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("article_callback2", e, transport);
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
|
2012-09-10 19:00:35 +02:00
|
|
|
/* try {
|
2011-09-21 07:32:39 +02:00
|
|
|
if (!_infscroll_disable &&
|
|
|
|
$$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
|
|
|
|
|
|
|
|
loadMoreHeadlines();
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
2012-09-10 19:00:35 +02:00
|
|
|
} */
|
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
//headlines_scroll_handler($("headlines-frame"));
|
2011-09-21 07:32:39 +02:00
|
|
|
|
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-04-09 14:13:32 +02:00
|
|
|
var imgs = row.getElementsByClassName("markedPic");
|
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-04-09 14:13:32 +02:00
|
|
|
var imgs = row.getElementsByClassName("pubPic");
|
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 {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var rows = getVisibleArticleIds();
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
var prev_id = false;
|
|
|
|
var next_id = false;
|
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
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "next") {
|
2013-02-28 10:18:58 +01: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
|
|
|
|
|
|
|
if (!noscroll && 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
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("toggleSelected", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
|
|
|
|
2008-02-19 16:08:57 +01:00
|
|
|
function toggleUnread_afh(effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
|
|
|
var elem = effect.element;
|
2008-02-19 16:08:57 +01:00
|
|
|
elem.style.backgroundColor = "";
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("toggleUnread_afh", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
}
|
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) {
|
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
|
|
|
|
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
|
|
|
} });
|
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
|
|
|
}
|
|
|
|
|
|
|
|
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
|
2010-11-12 11:52:53 +01:00
|
|
|
function selectArticles(mode) {
|
|
|
|
try {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
var children = $$("#headlines-frame > div[id*=RROW]");
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
children.each(function(child) {
|
|
|
|
var id = child.id.replace("RROW-", "");
|
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
|
|
|
|
|
|
|
} 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
|
|
|
},
|
|
|
|
href: query,
|
|
|
|
});
|
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) {
|
|
|
|
_active_article_id = id;
|
|
|
|
}
|
|
|
|
|
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-03-25 11:15:22 +01:00
|
|
|
if (!isCdmMode()) return;
|
|
|
|
|
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', '');
|
|
|
|
Element.show(cencw);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
2013-03-25 11:01:33 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("unpackVisibleHeadlines", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function headlines_scroll_handler(e) {
|
|
|
|
try {
|
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
unpackVisibleHeadlines();
|
|
|
|
|
2011-08-03 16:36:08 +02:00
|
|
|
if (!_infscroll_disable) {
|
2012-09-11 07:22:46 +02:00
|
|
|
if ((hsp && e.scrollTop + e.offsetHeight >= hsp.offsetTop - hsp.offsetHeight) ||
|
2012-09-10 19:00:35 +02:00
|
|
|
(e.scrollHeight != 0 &&
|
|
|
|
((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) {
|
2007-08-09 09:36:04 +02:00
|
|
|
|
2011-11-04 08:33:40 +01:00
|
|
|
if (hsp)
|
|
|
|
hsp.innerHTML = "<img src='images/indicator_tiny.gif'> " +
|
|
|
|
__("Loading, please wait...");
|
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
|
|
|
}
|
2011-08-03 16:36:08 +02:00
|
|
|
} else {
|
|
|
|
if (hsp) hsp.innerHTML = "";
|
2007-08-09 09:36:04 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2011-11-25 06:51:47 +01:00
|
|
|
if (catchup_id_batch.length > 0) {
|
2011-08-04 08:16:27 +02:00
|
|
|
window.clearTimeout(catchup_timeout_id);
|
2011-11-25 06:51:47 +01:00
|
|
|
|
|
|
|
if (!_infscroll_request_sent) {
|
|
|
|
catchup_timeout_id = window.setTimeout('catchupBatchedArticles()',
|
2013-03-26 11:41:03 +01:00
|
|
|
500);
|
2011-11-25 06:51:47 +01: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
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
function catchupBatchedArticles() {
|
|
|
|
try {
|
2011-08-04 14:53:32 +02:00
|
|
|
if (catchup_id_batch.length > 0 && !_infscroll_request_sent) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
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
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
|
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
|
|
|
});
|
|
|
|
|
|
|
|
} });
|
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;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var visible_ids = getVisibleArticleIds();
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
var ids_to_mark = new Array();
|
|
|
|
|
|
|
|
if (!below) {
|
|
|
|
for (var i = 0; i < visible_ids.length; i++) {
|
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-03-20 07:21:14 +01:00
|
|
|
function cdmCollapseArticle(event, id) {
|
|
|
|
try {
|
|
|
|
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-03-29 11:20:10 +01:00
|
|
|
row.removeClassName("active");
|
2013-03-20 07:21:14 +01:00
|
|
|
|
|
|
|
markHeadline(id, false);
|
|
|
|
|
|
|
|
if (id == getActiveArticleId()) {
|
|
|
|
setActiveArticleId(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (event) Event.stop(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmCollapseArticle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
function cdmUnexpandArticle(event, id) {
|
|
|
|
try {
|
|
|
|
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);
|
|
|
|
|
|
|
|
if (event) Event.stop(event);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmUnexpandArticle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
2013-04-06 03:47:40 +02:00
|
|
|
if (!noexpand)
|
|
|
|
toggleUnread(id, 0, true);
|
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
|
|
|
|
|
|
|
} catch (e) {
|
2010-09-13 13:40:35 +02:00
|
|
|
exception_error("cdmExpandArticle", e);
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
return false;
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2008-05-04 09:41:51 +02:00
|
|
|
function fixHeadlinesOrder(ids) {
|
|
|
|
try {
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids[i]);
|
2008-05-04 09:41:51 +02:00
|
|
|
|
|
|
|
if (e) {
|
|
|
|
if (i % 2 == 0) {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("even");
|
|
|
|
e.addClassName("odd");
|
2008-05-04 09:41:51 +02:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("odd");
|
|
|
|
e.addClassName("even");
|
2008-05-04 09:41:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("fixHeadlinesOrder", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function getArticleUnderPointer() {
|
|
|
|
return post_under_pointer;
|
2008-05-04 08:46:32 +02:00
|
|
|
}
|
2008-09-05 09:36:57 +02:00
|
|
|
|
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) {
|
|
|
|
var ctr = $("HLLCTR-" + elem.id);
|
2009-01-18 16:07:31 +01:00
|
|
|
|
2010-11-29 12:11:54 +01:00
|
|
|
if (ctr) ctr.innerHTML = elem.labels;
|
|
|
|
});
|
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 dismissArticle(id) {
|
2010-11-09 18:57:23 +01:00
|
|
|
try {
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
|
2013-03-31 19:58:05 +02:00
|
|
|
if (!elem) return;
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
|
2013-02-28 10:18:58 +01:00
|
|
|
if (id == getActiveArticleId()) {
|
|
|
|
setActiveArticleId(0);
|
|
|
|
}
|
2010-11-13 13:38:02 +01:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissArticle", e);
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissSelectedArticles() {
|
2010-11-10 09:38:55 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = getVisibleArticleIds();
|
|
|
|
var tmp = [];
|
|
|
|
var sel = [];
|
2010-11-10 09:38:55 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (elem.className && elem.hasClassName("Selected") &&
|
2013-02-28 10:18:58 +01:00
|
|
|
ids[i] != getActiveArticleId()) {
|
2010-11-12 11:52:53 +01:00
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
sel.push(ids[i]);
|
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (sel.length > 0)
|
2010-11-10 09:38:55 +01:00
|
|
|
selectionToggleUnread(false);
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-10 09:38:55 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissSelectedArticles", e);
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
function dismissReadArticles() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getVisibleArticleIds();
|
2010-11-12 11:52:53 +01:00
|
|
|
var tmp = [];
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (elem.className && !elem.hasClassName("Unread") &&
|
2010-11-14 13:55:51 +01:00
|
|
|
!elem.hasClassName("Selected")) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("dismissSelectedArticles", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getVisibleArticleIds() {
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = [];
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
getLoadedArticleIds().each(function(id) {
|
|
|
|
var elem = $("RROW-" + id);
|
2010-11-12 11:52:53 +01:00
|
|
|
if (elem && Element.visible(elem))
|
2010-11-14 13:55:51 +01:00
|
|
|
ids.push(id);
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} catch (e) {
|
2010-11-12 11:52:53 +01:00
|
|
|
exception_error("getVisibleArticleIds", e);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
return ids;
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function cdmClicked(event, id) {
|
|
|
|
try {
|
2011-12-10 18:26:59 +01:00
|
|
|
//var shift_key = event.shiftKey;
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
if (!event.ctrlKey) {
|
2010-11-12 23:41:18 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
if (!getInitParam("cdm_expanded")) {
|
|
|
|
return cdmExpandArticle(id);
|
|
|
|
} else {
|
2010-11-12 23:41:18 +01:00
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
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;
|
2013-02-06 08:09:45 +01:00
|
|
|
} else if (event.ctrlKey) {
|
|
|
|
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 getFirstVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[0];
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function getLastVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[rows.length-1];
|
|
|
|
}
|
|
|
|
|
|
|
|
function openArticleInNewWindow(id) {
|
2010-11-19 19:05:28 +01:00
|
|
|
toggleUnread(id, 0, false);
|
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
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
var ids = getVisibleArticleIds();
|
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
|
|
|
|
|
|
|
function initHeadlinesMenu() {
|
|
|
|
try {
|
|
|
|
if (dijit.byId("headlinesMenu"))
|
|
|
|
dijit.byId("headlinesMenu").destroyRecursive();
|
|
|
|
|
|
|
|
var ids = [];
|
2010-11-19 23:38:26 +01:00
|
|
|
|
|
|
|
if (!isCdmMode()) {
|
|
|
|
nodes = $$("#headlines-frame > div[id*=RROW]");
|
|
|
|
} else {
|
2013-04-06 23:09:46 +02:00
|
|
|
nodes = $$("#headlines-frame span[id*=RTITLE]");
|
2010-11-19 23:38:26 +01:00
|
|
|
}
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
nodes.each(function(node) {
|
|
|
|
ids.push(node.id);
|
|
|
|
});
|
|
|
|
|
|
|
|
var menu = new dijit.Menu({
|
|
|
|
id: "headlinesMenu",
|
|
|
|
targetNodeIds: ids,
|
|
|
|
});
|
|
|
|
|
|
|
|
var tmph = dojo.connect(menu, '_openMyself', function (event) {
|
|
|
|
var callerNode = event.target, match = null, tries = 0;
|
|
|
|
|
|
|
|
while (match == null && callerNode && tries <= 3) {
|
|
|
|
match = callerNode.id.match("^[A-Z]+[-]([0-9]+)$");
|
|
|
|
callerNode = callerNode.parentNode;
|
|
|
|
++tries;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (match) this.callerRowId = parseInt(match[1]);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
2011-03-07 13:24:49 +01:00
|
|
|
/* if (!isCdmMode())
|
2010-11-20 00:06:54 +01:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("View article"),
|
|
|
|
onClick: function(event) {
|
|
|
|
view(this.getParent().callerRowId);
|
2011-03-07 13:24:49 +01:00
|
|
|
}})); */
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Open original article"),
|
|
|
|
onClick: function(event) {
|
|
|
|
openArticleInNewWindow(this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
2013-03-21 20:29:06 +01:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Display article URL"),
|
|
|
|
onClick: function(event) {
|
|
|
|
displayArticleUrl(this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
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
|
|
|
|
var id = this.getParent().callerRowId + "";
|
|
|
|
ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
|
|
|
|
|
|
|
|
selectionToggleUnread(undefined, false, true, ids);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Toggle marked"),
|
|
|
|
onClick: function(event) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
// cast to string
|
|
|
|
var id = this.getParent().callerRowId + "";
|
|
|
|
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
|
|
|
|
var id = this.getParent().callerRowId + "";
|
|
|
|
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) {
|
|
|
|
catchupRelativeToArticle(0, this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("Mark below as read"),
|
|
|
|
onClick: function(event) {
|
|
|
|
catchupRelativeToArticle(1, this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
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
|
|
|
|
var id = this.getParent().ownerMenu.callerRowId + "";
|
|
|
|
|
|
|
|
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
|
|
|
|
var id = this.getParent().ownerMenu.callerRowId + "";
|
|
|
|
|
|
|
|
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"),
|
|
|
|
popup: labelAddMenu,
|
|
|
|
}));
|
|
|
|
|
|
|
|
menu.addChild(new dijit.PopupMenuItem({
|
|
|
|
label: __("Remove label"),
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2010-11-19 19:05:28 +01:00
|
|
|
menu.startup();
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("initHeadlinesMenu", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-25 10:05:48 +01:00
|
|
|
|
2010-11-30 10:40:23 +01:00
|
|
|
|
|
|
|
function player(elem) {
|
|
|
|
var aid = elem.getAttribute("audio-id");
|
|
|
|
var status = elem.getAttribute("status");
|
|
|
|
|
|
|
|
var audio = $(aid);
|
|
|
|
|
|
|
|
if (audio) {
|
|
|
|
if (status == 0) {
|
|
|
|
audio.play();
|
|
|
|
status = 1;
|
|
|
|
elem.innerHTML = __("Playing...");
|
|
|
|
elem.title = __("Click to pause");
|
|
|
|
elem.addClassName("playing");
|
|
|
|
} else {
|
|
|
|
audio.pause();
|
|
|
|
status = 0;
|
|
|
|
elem.innerHTML = __("Play");
|
|
|
|
elem.title = __("Click to play");
|
|
|
|
elem.removeClassName("playing");
|
|
|
|
}
|
|
|
|
|
|
|
|
elem.setAttribute("status", status);
|
|
|
|
} else {
|
|
|
|
alert("Your browser doesn't seem to support HTML5 audio.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
} });
|
|
|
|
}
|
|
|
|
} 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-03-28 07:56:29 +01:00
|
|
|
function openSelectedAttachment(elem) {
|
|
|
|
try {
|
|
|
|
var url = elem[elem.selectedIndex].value;
|
|
|
|
|
|
|
|
if (url) {
|
|
|
|
window.open(url);
|
|
|
|
elem.selectedIndex = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("openSelectedAttachment", e);
|
|
|
|
}
|
|
|
|
}
|