2005-09-05 14:41:59 +02:00
|
|
|
var active_post_id = false;
|
2006-12-07 08:48:00 +01:00
|
|
|
|
2007-05-15 07:03:35 +02:00
|
|
|
var article_cache = new Array();
|
|
|
|
|
2008-05-17 06:42:20 +02:00
|
|
|
var vgroup_last_feed = false;
|
2008-05-17 17:58:15 +02:00
|
|
|
var post_under_pointer = false;
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2008-05-20 18:06:12 +02:00
|
|
|
var last_requested_article = false;
|
|
|
|
|
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 feed_precache_timeout_id = false;
|
2011-08-31 17:22:47 +02:00
|
|
|
var precache_idle_timeout_id = false;
|
2011-08-31 13:25:42 +02:00
|
|
|
|
|
|
|
var cids_requested = [];
|
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-03-18 10:55:45 +01:00
|
|
|
var reply;
|
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>";
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_headlines(feed_id, is_cat, reply['headlines']['toolbar'], content);
|
2011-08-31 13:25:42 +02:00
|
|
|
return;
|
|
|
|
}
|
2008-05-17 06:42:20 +02:00
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
setActiveFeedId(feed_id, is_cat);
|
2011-03-18 10:55:45 +01:00
|
|
|
|
|
|
|
try {
|
2011-11-07 12:46:28 +01:00
|
|
|
if (offset == 0 && 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
|
|
|
|
2010-11-14 00:12:24 +01:00
|
|
|
if (parseInt(headlines_count) < getInitParam("default_article_limit")) {
|
2008-02-19 16:01:09 +01:00
|
|
|
_infscroll_disable = 1;
|
|
|
|
} else {
|
|
|
|
_infscroll_disable = 0;
|
|
|
|
}
|
|
|
|
|
2011-03-18 10:55:45 +01:00
|
|
|
var counters = reply['counters'];
|
|
|
|
var articles = reply['articles'];
|
|
|
|
var runtime_info = reply['runtime-info'];
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-11-07 12:46:28 +01:00
|
|
|
if (offset == 0 && infscroll_req == false) {
|
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
|
|
|
|
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
|
|
|
|
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()) {
|
2011-03-18 10:55:45 +01:00
|
|
|
console.log("adding some more headlines...");
|
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-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) {
|
2011-09-25 18:03:16 +02:00
|
|
|
if ($$("#headlines-frame DIV[id="+row.id+"]").length == 0) {
|
|
|
|
row.style.display = 'none';
|
|
|
|
c.domNode.appendChild(row);
|
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
|
|
|
|
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
|
|
|
|
2011-08-04 09:56:43 +02:00
|
|
|
$$("#headlines-frame > div[id*=RROW]").each(
|
|
|
|
function(child) {
|
|
|
|
if (!Element.visible(child))
|
|
|
|
new Effect.Appear(child, { duration : 0.5 });
|
|
|
|
});
|
|
|
|
|
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
|
|
|
|
2011-08-31 13:25:42 +02:00
|
|
|
if (headlines_count > 0)
|
|
|
|
cache_headlines(feed_id, is_cat, reply['headlines']['toolbar'], $("headlines-frame").innerHTML);
|
2011-08-31 12:03:52 +02: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
|
|
|
|
2011-08-31 15:56:41 +02:00
|
|
|
// do not precache stuff after fresh feed
|
|
|
|
if (feed_id != -3)
|
|
|
|
precache_headlines();
|
|
|
|
|
2010-11-11 07:56:03 +01:00
|
|
|
if (counters)
|
|
|
|
parse_counters(counters);
|
|
|
|
else
|
|
|
|
request_counters();
|
2010-11-10 19:56:28 +01:00
|
|
|
|
2007-05-15 07:59:22 +02: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;
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
function showArticleInHeadlines(id) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
try {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
selectArticles("none");
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var crow = $("RROW-" + id);
|
2007-10-10 14:09:09 +02:00
|
|
|
|
|
|
|
if (!crow) return;
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
var article_is_unread = crow.hasClassName("Unread");
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
crow.removeClassName("Unread");
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('none');
|
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
2007-11-22 06:15:21 +01:00
|
|
|
|
2007-11-22 08: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
|
|
|
}
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
2009-08-21 13:24:18 +02:00
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
2007-11-22 08:35:50 +01:00
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
2007-11-22 06:15:21 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
|
2007-11-22 08:35:50 +01:00
|
|
|
|
2007-11-22 08:45:46 +01:00
|
|
|
} else if (article_is_unread && view_mode == "all_articles") {
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
|
2007-08-24 09:56:13 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-11-22 08:36:26 +01:00
|
|
|
markHeadline(id);
|
|
|
|
|
2010-11-11 09:36:56 +01:00
|
|
|
if (article_is_unread)
|
|
|
|
_force_scheduled_update = true;
|
|
|
|
|
2007-08-24 09:56:13 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("showArticleInHeadlines", e);
|
|
|
|
}
|
2007-08-24 09:53:35 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function article_callback2(transport, id) {
|
2007-08-24 09:53:35 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("article_callback2 " + id);
|
2007-05-15 07:03:35 +02:00
|
|
|
|
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
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (upic) upic.src = 'images/blank_icon.gif';
|
2009-10-07 21:22:33 +02:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
reply.each(function(article) {
|
|
|
|
if (active_post_id == article['id']) {
|
|
|
|
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;
|
|
|
|
// }
|
|
|
|
|
2007-08-24 09:53:35 +02: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
|
|
|
|
2010-11-16 10:23:06 +01:00
|
|
|
request_counters();
|
2007-03-04 10:54:07 +01:00
|
|
|
|
2011-09-21 07:25:21 +02:00
|
|
|
try {
|
|
|
|
if (!_infscroll_disable &&
|
|
|
|
$$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
|
|
|
|
|
|
|
|
loadMoreHeadlines();
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
|
|
|
}
|
|
|
|
|
2007-03-04 10:54:07 +01:00
|
|
|
notify("");
|
2007-08-24 09:53:35 +02:00
|
|
|
} catch (e) {
|
2009-01-23 18:19:17 +01:00
|
|
|
exception_error("article_callback2", e, transport);
|
2006-09-28 14:00:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
function view(id) {
|
2006-05-23 08:55:26 +02:00
|
|
|
try {
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log("loading article: " + id);
|
2009-12-29 16:03:16 +01:00
|
|
|
|
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
|
|
|
|
2009-10-27 14:24:37 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2009-12-29 20:38:22 +01:00
|
|
|
var query = "?op=view&id=" + param_escape(id);
|
2006-09-28 14:00:03 +02:00
|
|
|
|
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
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var crow = $("RROW-" + id);
|
2010-11-14 13:55:51 +01:00
|
|
|
var article_is_unread = crow.hasClassName("Unread");
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2010-11-12 16:15:08 +01:00
|
|
|
active_post_id = id;
|
2008-05-22 07:40:57 +02:00
|
|
|
showArticleInHeadlines(id);
|
|
|
|
|
2011-08-31 15:56:41 +02:00
|
|
|
precache_headlines();
|
2011-08-31 13:25:42 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
if (!cached_article) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2009-10-07 21:22:33 +02:00
|
|
|
var upic = $('FUPDPIC-' + id);
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (upic) {
|
2010-01-14 21:09:23 +01:00
|
|
|
upic.src = getInitParam("sign_progress");
|
2009-10-07 12:22:44 +02:00
|
|
|
}
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
} else if (cached_article && article_is_unread) {
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&mode=prefetch";
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
render_article(cached_article);
|
2007-05-15 08:19:48 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
} else if (cached_article) {
|
2007-05-15 07:03:35 +02:00
|
|
|
|
2007-08-24 09:53:35 +02:00
|
|
|
query = query + "&mode=prefetch_old";
|
|
|
|
render_article(cached_article);
|
2008-05-20 17:59:42 +02:00
|
|
|
|
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) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
if (!_infscroll_disable &&
|
|
|
|
$$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
|
|
|
|
|
|
|
|
loadMoreHeadlines();
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
console.warn(e);
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2007-05-15 09:51:57 +02:00
|
|
|
function tMark(id) {
|
|
|
|
return toggleMark(id);
|
|
|
|
}
|
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
function tPub(id) {
|
|
|
|
return togglePub(id);
|
|
|
|
}
|
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
function toggleMark(id, client_only) {
|
2007-08-20 14:37:46 +02:00
|
|
|
try {
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&subop=mark";
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
var img = $("FMPIC-" + id);
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (!img) return;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (img.src.match("mark_unset")) {
|
|
|
|
img.src = img.src.replace("mark_unset", "mark_set");
|
|
|
|
img.alt = __("Unstar article");
|
2007-08-20 14:37:46 +02:00
|
|
|
query = query + "&mark=1";
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2007-08-20 14:37:46 +02:00
|
|
|
} else {
|
2010-11-13 23:41:27 +01:00
|
|
|
img.src = img.src.replace("mark_set", "mark_unset");
|
|
|
|
img.alt = __("Star article");
|
2007-08-20 14:37:46 +02:00
|
|
|
query = query + "&mark=0";
|
2007-08-20 09:59:18 +02:00
|
|
|
}
|
2006-05-23 08:35:27 +02:00
|
|
|
|
2011-08-31 15:56:41 +02:00
|
|
|
cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
|
|
|
|
|
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 {
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&id=" + id + "&subop=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
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
var img = $("FPPIC-" + id);
|
2009-01-26 06:20:56 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (!img) return;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
if (img.src.match("pub_unset") || note != undefined) {
|
|
|
|
img.src = img.src.replace("pub_unset", "pub_set");
|
|
|
|
img.alt = __("Unpublish article");
|
2007-08-10 06:03:56 +02:00
|
|
|
query = query + "&pub=1";
|
2008-05-20 07:47:57 +02:00
|
|
|
|
2007-08-09 14:45:30 +02:00
|
|
|
} else {
|
2010-11-13 23:41:27 +01:00
|
|
|
img.src = img.src.replace("pub_set", "pub_unset");
|
|
|
|
img.alt = __("Publish article");
|
2010-11-13 12:04:37 +01:00
|
|
|
|
2010-11-13 23:41:27 +01:00
|
|
|
query = query + "&pub=0";
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
2007-08-20 14:37:46 +02:00
|
|
|
|
2011-08-31 15:56:41 +02:00
|
|
|
cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-09-05 14:41:59 +02:00
|
|
|
function moveToPost(mode) {
|
2005-09-05 14:02:00 +02:00
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var rows = getVisibleArticleIds();
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
var prev_id = false;
|
|
|
|
var next_id = false;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
if (!$('RROW-' + active_post_id)) {
|
2008-05-16 04:06:57 +02:00
|
|
|
active_post_id = false;
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (active_post_id == false) {
|
|
|
|
next_id = getFirstVisibleHeadlineId();
|
|
|
|
prev_id = getLastVisibleHeadlineId();
|
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++) {
|
|
|
|
if (rows[i] == active_post_id) {
|
|
|
|
prev_id = rows[i-1];
|
2011-03-18 10:46:22 +01:00
|
|
|
next_id = rows[i+1];
|
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") {
|
|
|
|
if (next_id) {
|
|
|
|
if (isCdmMode()) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
cdmExpandArticle(next_id);
|
|
|
|
cdmScrollToArticleId(next_id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
|
|
|
} else {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(next_id);
|
|
|
|
view(next_id, getActiveFeedId());
|
|
|
|
}
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2008-05-16 04:06:57 +02:00
|
|
|
if (mode == "prev") {
|
|
|
|
if (prev_id) {
|
|
|
|
if (isCdmMode()) {
|
2010-11-09 18:57:23 +01:00
|
|
|
cdmExpandArticle(prev_id);
|
2008-05-16 04:06:57 +02:00
|
|
|
cdmScrollToArticleId(prev_id);
|
|
|
|
} else {
|
2008-02-19 15:49:36 +01:00
|
|
|
correctHeadlinesOffset(prev_id);
|
|
|
|
view(prev_id, getActiveFeedId());
|
|
|
|
}
|
2008-05-16 04:06:57 +02:00
|
|
|
}
|
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 {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-02-10 10:06:15 +01:00
|
|
|
var cb = $("RCHK-" + id);
|
|
|
|
var row = $("RROW-" + id);
|
2008-05-16 04:06:57 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (row) {
|
2010-11-16 12:43:43 +01:00
|
|
|
if (row.hasClassName('Selected') && !force_on) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.removeClassName('Selected');
|
|
|
|
if (cb) cb.checked = false;
|
2008-02-19 15:49:36 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName('Selected');
|
|
|
|
if (cb) cb.checked = true;
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("toggleSelected", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
2005-09-05 14:41:59 +02:00
|
|
|
}
|
|
|
|
|
2008-02-19 16:08:57 +01:00
|
|
|
function toggleUnread_afh(effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
try {
|
|
|
|
|
|
|
|
var elem = effect.element;
|
2008-02-19 16:08:57 +01:00
|
|
|
elem.style.backgroundColor = "";
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("toggleUnread_afh", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
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
|
|
|
|
2008-02-19 16:08:57 +01:00
|
|
|
if (effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
|
|
|
|
afterFinish: toggleUnread_afh,
|
|
|
|
queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
|
2011-03-18 10:46:22 +01:00
|
|
|
}
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2007-10-18 05:00:18 +02:00
|
|
|
}
|
2009-02-04 20:55:01 +01:00
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else if (cmode == 0) {
|
2010-11-14 13:55:51 +01:00
|
|
|
|
|
|
|
row.removeClassName("Unread");
|
2008-02-19 15:49:36 +01:00
|
|
|
|
2008-02-19 16:13:40 +01:00
|
|
|
if (effect) {
|
2008-02-19 15:49:36 +01:00
|
|
|
new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
|
2008-02-19 16:13:40 +01:00
|
|
|
afterFinish: toggleUnread_afh,
|
2008-02-19 15:49:36 +01:00
|
|
|
queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
|
2011-03-18 10:46:22 +01:00
|
|
|
}
|
2009-02-04 20:55:01 +01:00
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
} else if (cmode == 1) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2006-05-16 15:41:57 +02:00
|
|
|
}
|
|
|
|
|
2007-10-18 05:00:18 +02:00
|
|
|
if (cmode == undefined) cmode = 2;
|
2006-05-16 15:41:57 +02:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
|
2006-05-16 15:41:57 +02:00
|
|
|
|
2007-08-24 06:04:55 +02:00
|
|
|
// notify_progress("Loading, please wait...");
|
2007-03-04 10:54:07 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
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 {
|
|
|
|
|
2010-11-19 20:18:26 +01:00
|
|
|
if (!ids) var ids = getSelectedArticleIds2();
|
2009-01-18 10:09:52 +01:00
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
var query = "?op=rpc&subop=removeFromLabel&ids=" +
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
var query = "?op=rpc&subop=assignToLabel&ids=" +
|
|
|
|
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);
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-25 11:39:37 +01:00
|
|
|
function selectionToggleUnread(set_state, callback, no_error) {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2005-11-27 15:56:10 +01:00
|
|
|
|
2007-05-11 07:51:47 +02:00
|
|
|
if (rows.length == 0 && !no_error) {
|
2007-03-26 07:31:42 +02:00
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
for (i = 0; i < rows.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var row = $("RROW-" + rows[i]);
|
2005-12-01 13:52:18 +01:00
|
|
|
if (row) {
|
2007-08-19 07:13:45 +02:00
|
|
|
if (set_state == undefined) {
|
2010-11-14 13:55:51 +01:00
|
|
|
if (row.hasClassName("Unread")) {
|
|
|
|
row.removeClassName("Unread");
|
2007-08-19 07:13:45 +02:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2007-08-19 07:13:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (set_state == false) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.removeClassName("Unread");
|
2007-08-19 07:13:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (set_state == true) {
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Unread");
|
2005-12-01 13:52:18 +01:00
|
|
|
}
|
|
|
|
}
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2006-08-02 10:47:34 +02:00
|
|
|
var cmode = "";
|
|
|
|
|
|
|
|
if (set_state == undefined) {
|
|
|
|
cmode = "2";
|
|
|
|
} else if (set_state == true) {
|
|
|
|
cmode = "1";
|
|
|
|
} else if (set_state == false) {
|
|
|
|
cmode = "0";
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionToggleMarked() {
|
2005-11-27 15:56:10 +01:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2007-03-26 07:31:42 +02:00
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-27 15:56:10 +01:00
|
|
|
for (i = 0; i < rows.length; i++) {
|
2007-08-23 15:54:17 +02:00
|
|
|
toggleMark(rows[i], true, true);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=markSelected&ids=" +
|
2005-11-27 15:56:10 +01:00
|
|
|
param_escape(rows.toString()) + "&cmode=2";
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
2007-08-24 06:04:55 +02:00
|
|
|
} });
|
2005-11-27 15:56:10 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
2005-12-14 08:29:38 +01:00
|
|
|
exception_error("selectionToggleMarked", e);
|
2005-11-27 15:56:10 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-07 10:11:05 +01:00
|
|
|
function selectionTogglePublished() {
|
2007-08-09 14:45:30 +02:00
|
|
|
try {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-08 07:56:08 +01:00
|
|
|
var rows = getSelectedArticleIds2();
|
2007-08-09 14:45:30 +02:00
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < rows.length; i++) {
|
2007-08-23 15:54:17 +02:00
|
|
|
togglePub(rows[i], true, true);
|
2007-08-09 14:45:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 0) {
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=publishSelected&ids=" +
|
2007-08-09 14:45:30 +02:00
|
|
|
param_escape(rows.toString()) + "&cmode=2";
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
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
|
|
|
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
// mode = all,none,unread,invert
|
|
|
|
function selectArticles(mode) {
|
|
|
|
try {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-19 17:09:31 +01:00
|
|
|
var children = $$("#headlines-frame > div[id*=RROW]");
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
children.each(function(child) {
|
|
|
|
var id = child.id.replace("RROW-", "");
|
|
|
|
var cb = $("RCHK-" + id);
|
2006-01-09 14:55:39 +01:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (mode == "all") {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
|
|
|
} else if (mode == "unread") {
|
|
|
|
if (child.hasClassName("Unread")) {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
2010-11-12 11:52:53 +01:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
child.removeClassName("Selected");
|
2010-11-12 11:52:53 +01:00
|
|
|
cb.checked = false;
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
2010-11-14 13:55:51 +01:00
|
|
|
} else if (mode == "invert") {
|
|
|
|
if (child.hasClassName("Selected")) {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
cb.checked = false;
|
|
|
|
} else {
|
|
|
|
child.addClassName("Selected");
|
|
|
|
cb.checked = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
child.removeClassName("Selected");
|
|
|
|
cb.checked = false;
|
|
|
|
}
|
|
|
|
});
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("selectArticles", e);
|
2005-12-13 06:52:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-02-24 10:33:09 +01:00
|
|
|
function catchupPage() {
|
2006-08-02 10:47:34 +02:00
|
|
|
|
2009-01-17 11:14:45 +01:00
|
|
|
var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2007-08-19 07:13:45 +02:00
|
|
|
var str = __("Mark all visible articles in %s as read?");
|
|
|
|
|
|
|
|
str = str.replace("%s", fn);
|
2007-08-08 15:17:30 +02:00
|
|
|
|
|
|
|
if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles('all');
|
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true)
|
|
|
|
selectArticles('none');
|
2006-02-24 10:33:09 +01:00
|
|
|
}
|
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
function deleteSelection() {
|
|
|
|
|
|
|
|
try {
|
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;
|
|
|
|
var op;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2009-12-28 15:23:01 +01:00
|
|
|
if (getActiveFeedId() != 0) {
|
|
|
|
str = __("Delete %d selected articles in %s?");
|
|
|
|
} else {
|
|
|
|
str = __("Delete %d selected articles?");
|
|
|
|
}
|
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;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop=delete&ids=" + param_escape(rows);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2009-12-28 15:23:01 +01:00
|
|
|
onComplete: function(transport) {
|
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) {
|
|
|
|
str = __("Archive %d selected articles in %s?");
|
|
|
|
op = "archive";
|
|
|
|
} else {
|
|
|
|
str = __("Move %d archived articles back?");
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
query = "?op=rpc&subop="+op+"&ids=" + param_escape(rows);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2010-09-05 11:41:19 +02:00
|
|
|
console.log(query);
|
2009-12-28 15:23:01 +01:00
|
|
|
|
2009-12-28 22:09:04 +01:00
|
|
|
for (var i = 0; i < rows.length; i++) {
|
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
|
|
|
|
2007-08-26 08:25:48 +02:00
|
|
|
var str = __("Mark %d selected articles in %s as read?");
|
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
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
selectionToggleUnread(false, 'viewCurrentFeed()', true)
|
2007-08-19 07:13:45 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("catchupSelection", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-23 11:26:02 +01:00
|
|
|
function editArticleTags(id) {
|
|
|
|
var query = "backend.php?op=dlg&id=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) {
|
|
|
|
notify('');
|
|
|
|
dialog.hide();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-29 12:21:28 +01:00
|
|
|
var data = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (data) {
|
2011-09-01 14:46:50 +02:00
|
|
|
var tags_str = article.tags;
|
2010-11-29 12:21:28 +01:00
|
|
|
var id = tags_str.id;
|
|
|
|
|
|
|
|
var tags = $("ATSTR-" + id);
|
2011-04-19 12:54:27 +02:00
|
|
|
var tooltip = dijit.byId("ATSTRTIP-" + id);
|
2010-11-29 12:21:28 +01:00
|
|
|
|
2011-04-19 12:54:27 +02:00
|
|
|
if (tags) tags.innerHTML = tags_str.content;
|
|
|
|
if (tooltip) tooltip.attr('label', tags_str.content_full);
|
2010-11-29 12:21:28 +01:00
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_delete("article:" + id);
|
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',
|
|
|
|
"backend.php?op=rpc&subop=completeTags",
|
|
|
|
{ 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
|
|
|
|
2008-02-19 15:49:36 +01:00
|
|
|
function cdmScrollToArticleId(id) {
|
|
|
|
try {
|
2010-11-16 08:09:19 +01:00
|
|
|
var ctr = $("headlines-frame");
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + id);
|
2008-02-19 15:49:36 +01:00
|
|
|
|
|
|
|
if (!e || !ctr) return;
|
|
|
|
|
|
|
|
ctr.scrollTop = e.offsetTop;
|
|
|
|
|
|
|
|
} catch (e) {
|
2008-05-17 18:25:41 +02:00
|
|
|
exception_error("cdmScrollToArticleId", e);
|
2008-02-19 15:49:36 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-07-20 08:01:18 +02:00
|
|
|
function getActiveArticleId() {
|
|
|
|
return active_post_id;
|
|
|
|
}
|
2007-08-09 08:56:11 +02:00
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function postMouseIn(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
|
|
|
}
|
|
|
|
|
2010-11-17 09:34:55 +01:00
|
|
|
function headlines_scroll_handler(e) {
|
2007-08-09 09:36:04 +02:00
|
|
|
try {
|
2011-08-03 16:36:08 +02:00
|
|
|
var hsp = $("headlines-spacer");
|
|
|
|
|
|
|
|
if (!_infscroll_disable) {
|
|
|
|
if (hsp && (e.scrollTop + e.offsetHeight > hsp.offsetTop) ||
|
|
|
|
e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
|
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
|
|
|
|
|
|
|
$$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
|
|
|
|
function(child) {
|
2011-03-18 10:46:22 +01:00
|
|
|
if ($("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()',
|
|
|
|
2000);
|
|
|
|
}
|
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
|
|
|
|
2011-08-04 08:16:27 +02:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&cmode=0&ids=" + param_escape(catchup_id_batch.toString());
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
handle_rpc_json(transport);
|
|
|
|
|
|
|
|
catchup_id_batch.each(function(id) {
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
if (elem) elem.removeClassName("Unread");
|
|
|
|
});
|
|
|
|
|
|
|
|
catchup_id_batch = [];
|
|
|
|
} });
|
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
|
|
|
|
|
|
|
function catchupRelativeToArticle(below) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
2009-02-02 09:49:00 +01:00
|
|
|
|
2007-08-22 06:45:01 +02:00
|
|
|
if (!getActiveArticleId()) {
|
|
|
|
alert(__("No article is selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var visible_ids = getVisibleArticleIds();
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
var ids_to_mark = new Array();
|
|
|
|
|
|
|
|
if (!below) {
|
|
|
|
for (var i = 0; i < visible_ids.length; i++) {
|
|
|
|
if (visible_ids[i] != getActiveArticleId()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + visible_ids[i]);
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
for (var i = visible_ids.length-1; i >= 0; i--) {
|
|
|
|
if (visible_ids[i] != getActiveArticleId()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + visible_ids[i]);
|
2007-08-22 06:45:01 +02:00
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
if (e && e.hasClassName("Unread")) {
|
2007-08-22 06:45:01 +02:00
|
|
|
ids_to_mark.push(visible_ids[i]);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ids_to_mark.length == 0) {
|
|
|
|
alert(__("No articles found to mark"));
|
|
|
|
} else {
|
|
|
|
var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
|
|
|
|
|
2010-10-08 21:27:51 +02:00
|
|
|
if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
|
2007-08-22 06:45:01 +02:00
|
|
|
|
|
|
|
for (var i = 0; i < ids_to_mark.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids_to_mark[i]);
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("Unread");
|
2007-08-22 06:45:01 +02:00
|
|
|
}
|
|
|
|
|
2009-12-29 16:49:27 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
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
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
function cdmExpandArticle(id) {
|
2007-10-18 04:55:44 +02:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
var elem = $("CICD-" + active_post_id);
|
2008-05-21 05:47:14 +02:00
|
|
|
|
2010-11-12 23:41:18 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
2010-11-12 23:41:18 +01:00
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
|
|
|
|
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
if (id == active_post_id && Element.visible(elem))
|
|
|
|
return true;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
selectArticles("none");
|
2010-11-09 18:57:23 +01:00
|
|
|
|
|
|
|
var old_offset = $("RROW-" + id).offsetTop;
|
|
|
|
|
2010-11-11 10:19:28 +01:00
|
|
|
if (active_post_id && elem && !getInitParam("cdm_expanded")) {
|
2010-11-09 18:57:23 +01:00
|
|
|
Element.hide(elem);
|
|
|
|
Element.show("CEXC-" + active_post_id);
|
|
|
|
}
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
active_post_id = id;
|
2007-10-18 04:55:44 +02:00
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
elem = $("CICD-" + id);
|
|
|
|
|
|
|
|
if (!Element.visible(elem)) {
|
|
|
|
Element.show(elem);
|
|
|
|
Element.hide("CEXC-" + id);
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
if ($("CWRAP-" + id).innerHTML == "") {
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
$("FUPDPIC-" + id).src = "images/indicator_tiny.gif";
|
2010-11-13 00:09:30 +01:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
$("CWRAP-" + id).innerHTML = "<div class=\"insensitive\">" +
|
2010-11-13 00:17:04 +01:00
|
|
|
__("Loading, please wait...") + "</div>";
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
var query = "?op=rpc&subop=cdmGetArticle&id=" + param_escape(id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-08-31 20:33:15 +02:00
|
|
|
var neighbor_ids = getRelativePostIds(id);
|
|
|
|
|
|
|
|
/* only request uncached articles */
|
|
|
|
var cids_to_request = [];
|
|
|
|
|
|
|
|
for (var i = 0; i < neighbor_ids.length; i++) {
|
|
|
|
if (cids_requested.indexOf(neighbor_ids[i]) == -1)
|
|
|
|
if ($("CWRAP-" + neighbor_ids[i]).innerHTML == "") {
|
|
|
|
cids_to_request.push(neighbor_ids[i]);
|
|
|
|
cids_requested.push(neighbor_ids[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log("additional ids: " + cids_to_request.toString());
|
|
|
|
|
|
|
|
query = query + "&cids=" + cids_to_request.toString();
|
|
|
|
|
|
|
|
console.log(query);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
2011-08-31 20:33:15 +02:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
$("FUPDPIC-" + id).src = 'images/blank_icon.gif';
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-25 11:39:37 +01:00
|
|
|
handle_rpc_json(transport);
|
|
|
|
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
|
2011-08-31 20:33:15 +02:00
|
|
|
reply.each(function(article) {
|
|
|
|
$("CWRAP-" + article['id']).innerHTML = article['content']
|
|
|
|
cids_requested.remove(article['id']);
|
|
|
|
});
|
2010-11-13 00:17:04 +01:00
|
|
|
}});
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-13 00:17:04 +01:00
|
|
|
}
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var new_offset = $("RROW-" + id).offsetTop;
|
|
|
|
|
2010-11-16 08:09:19 +01:00
|
|
|
$("headlines-frame").scrollTop += (new_offset-old_offset);
|
2010-11-09 18:57:23 +01:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if ($("RROW-" + id).offsetTop != old_offset)
|
2010-11-16 08:09:19 +01:00
|
|
|
$("headlines-frame").scrollTop = new_offset;
|
2010-11-09 18:57:23 +01:00
|
|
|
|
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
toggleSelected(id);
|
2007-10-18 04:55:44 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
2010-09-13 13:40:35 +02:00
|
|
|
exception_error("cdmExpandArticle", e);
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
return false;
|
2007-10-18 04:55:44 +02:00
|
|
|
}
|
|
|
|
|
2008-05-04 09:41:51 +02:00
|
|
|
function fixHeadlinesOrder(ids) {
|
|
|
|
try {
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("RROW-" + ids[i]);
|
2008-05-04 09:41:51 +02:00
|
|
|
|
|
|
|
if (e) {
|
|
|
|
if (i % 2 == 0) {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("even");
|
|
|
|
e.addClassName("odd");
|
2008-05-04 09:41:51 +02:00
|
|
|
} else {
|
2010-11-14 13:55:51 +01:00
|
|
|
e.removeClassName("odd");
|
|
|
|
e.addClassName("even");
|
2008-05-04 09:41:51 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("fixHeadlinesOrder", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-05-17 17:58:15 +02:00
|
|
|
function getArticleUnderPointer() {
|
|
|
|
return post_under_pointer;
|
2008-05-04 08:46:32 +02:00
|
|
|
}
|
2008-09-05 09:36:57 +02:00
|
|
|
|
2010-11-16 16:13:17 +01:00
|
|
|
function zoomToArticle(event, id) {
|
2008-09-05 09:36:57 +02:00
|
|
|
try {
|
2011-08-31 17:33:59 +02:00
|
|
|
var cached_article = cache_get("article: " + id);
|
2010-11-16 12:43:43 +01:00
|
|
|
|
2010-11-16 12:52:09 +01:00
|
|
|
if (dijit.byId("ATAB-" + id))
|
2010-11-16 16:13:17 +01:00
|
|
|
if (!event || !event.shiftKey)
|
|
|
|
return dijit.byId("content-tabs").selectChild(dijit.byId("ATAB-" + id));
|
2010-11-16 12:52:09 +01:00
|
|
|
|
2011-04-19 12:54:27 +02:00
|
|
|
if (dijit.byId("ATSTRTIP-" + id))
|
|
|
|
dijit.byId("ATSTRTIP-" + id).destroyRecursive();
|
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
if (cached_article) {
|
2010-11-19 17:35:35 +01:00
|
|
|
//closeArticlePanel();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
|
|
|
var article_pane = new dijit.layout.ContentPane({
|
|
|
|
title: __("Loading...") , content: cached_article,
|
2010-11-16 12:43:43 +01:00
|
|
|
style: 'padding : 0px;',
|
2010-11-16 12:52:09 +01:00
|
|
|
id: 'ATAB-' + id,
|
2010-11-16 12:43:43 +01:00
|
|
|
closable: true });
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
dijit.byId("content-tabs").addChild(article_pane);
|
2010-11-16 16:13:17 +01:00
|
|
|
|
|
|
|
if (!event || !event.shiftKey)
|
|
|
|
dijit.byId("content-tabs").selectChild(article_pane);
|
2010-11-16 12:43:43 +01:00
|
|
|
|
|
|
|
if ($("PTITLE-" + id))
|
|
|
|
article_pane.attr('title', $("PTITLE-" + id).innerHTML);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
var query = "?op=rpc&subop=getArticles&ids=" + param_escape(id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
notify_progress("Loading, please wait...", true);
|
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) {
|
2010-11-16 12:43:43 +01:00
|
|
|
notify('');
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-31 12:27:13 +02:00
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
|
|
|
|
if (reply) {
|
2010-11-19 17:35:35 +01:00
|
|
|
//closeArticlePanel();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2011-03-31 12:27:13 +02:00
|
|
|
var content = reply[0]['content'];
|
2011-03-18 10:46:22 +01:00
|
|
|
|
|
|
|
var article_pane = new dijit.layout.ContentPane({
|
|
|
|
title: "article-" + id , content: content,
|
2010-11-16 12:43:43 +01:00
|
|
|
style: 'padding : 0px;',
|
2010-11-16 12:52:09 +01:00
|
|
|
id: 'ATAB-' + id,
|
2010-11-16 12:43:43 +01:00
|
|
|
closable: true });
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
dijit.byId("content-tabs").addChild(article_pane);
|
2010-11-16 16:13:17 +01:00
|
|
|
|
|
|
|
if (!event || !event.shiftKey)
|
|
|
|
dijit.byId("content-tabs").selectChild(article_pane);
|
2010-11-16 12:43:43 +01:00
|
|
|
|
|
|
|
if ($("PTITLE-" + id))
|
|
|
|
article_pane.attr('title', $("PTITLE-" + id).innerHTML);
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
} });
|
|
|
|
}
|
2008-09-05 09:36:57 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("zoomToArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2008-09-09 09:08:47 +02:00
|
|
|
|
|
|
|
function scrollArticle(offset) {
|
|
|
|
try {
|
|
|
|
if (!isCdmMode()) {
|
2009-02-10 10:06:15 +01:00
|
|
|
var ci = $("content-insert");
|
2008-09-09 09:08:47 +02:00
|
|
|
if (ci) {
|
|
|
|
ci.scrollTop += offset;
|
|
|
|
}
|
|
|
|
} else {
|
2010-11-19 17:09:31 +01:00
|
|
|
var hi = $("headlines-frame");
|
2008-09-09 09:08:47 +02:00
|
|
|
if (hi) {
|
|
|
|
hi.scrollTop += offset;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("scrollArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2009-01-18 16:07:31 +01:00
|
|
|
|
|
|
|
function show_labels_in_headlines(transport) {
|
|
|
|
try {
|
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;
|
|
|
|
});
|
2011-08-31 12:03:52 +02:00
|
|
|
|
|
|
|
cache_headlines(getActiveFeedId(), activeFeedIsCat(), null, $("headlines-frame").innerHTML);
|
|
|
|
|
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
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
/* function toggleHeadlineActions() {
|
2009-01-20 18:46:21 +01:00
|
|
|
try {
|
2009-02-10 10:06:15 +01:00
|
|
|
var e = $("headlineActionsBody");
|
|
|
|
var p = $("headlineActionsDrop");
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
if (!Element.visible(e)) {
|
|
|
|
Element.show(e);
|
|
|
|
} else {
|
|
|
|
Element.hide(e);
|
|
|
|
}
|
|
|
|
|
2009-01-20 19:04:52 +01:00
|
|
|
e.scrollTop = 0;
|
2009-01-20 18:46:21 +01:00
|
|
|
e.style.left = (p.offsetLeft + 1) + "px";
|
2009-02-12 16:50:32 +01:00
|
|
|
e.style.top = (p.offsetTop + p.offsetHeight + 2) + "px";
|
2009-01-20 18:46:21 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("toggleHeadlineActions", e);
|
|
|
|
}
|
2011-08-31 12:03:52 +02:00
|
|
|
} */
|
2009-03-21 21:11:58 +01:00
|
|
|
|
2010-11-29 18:25:51 +01:00
|
|
|
/* function publishWithNote(id, def_note) {
|
2009-03-21 21:11:58 +01:00
|
|
|
try {
|
|
|
|
if (!def_note) def_note = '';
|
|
|
|
|
|
|
|
var note = prompt(__("Please enter a note for this article:"), def_note);
|
|
|
|
|
|
|
|
if (note != undefined) {
|
|
|
|
togglePub(id, false, false, note);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("publishWithNote", e);
|
|
|
|
}
|
2010-11-29 18:25:51 +01:00
|
|
|
} */
|
2010-11-05 22:47:02 +01:00
|
|
|
|
|
|
|
function emailArticle(id) {
|
|
|
|
try {
|
2010-11-06 09:13:07 +01:00
|
|
|
if (!id) {
|
|
|
|
var ids = getSelectedArticleIds2();
|
|
|
|
|
|
|
|
if (ids.length == 0) {
|
|
|
|
alert(__("No articles are selected."));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
id = ids.toString();
|
|
|
|
}
|
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
if (dijit.byId("emailArticleDlg"))
|
|
|
|
dijit.byId("emailArticleDlg").destroyRecursive();
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
var query = "backend.php?op=dlg&id=emailArticle¶m=" + param_escape(id);
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
dialog = new dijit.Dialog({
|
|
|
|
id: "emailArticleDlg",
|
|
|
|
title: __("Forward article by email"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function() {
|
|
|
|
if (this.validate()) {
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: dojo.objectToQuery(this.attr('value')),
|
2011-03-18 10:46:22 +01:00
|
|
|
onComplete: function(transport) {
|
2010-11-29 14:26:09 +01:00
|
|
|
|
|
|
|
var reply = JSON.parse(transport.responseText);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-29 14:26:09 +01:00
|
|
|
var error = reply['error'];
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
if (error) {
|
2010-11-29 14:26:09 +01:00
|
|
|
alert(__('Error sending email:') + ' ' + error);
|
2010-11-20 21:45:31 +01:00
|
|
|
} else {
|
|
|
|
notify_info('Your message has been sent.');
|
|
|
|
dialog.hide();
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
} });
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query});
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
var tmph = dojo.connect(dialog, 'onLoad', function() {
|
|
|
|
dojo.disconnect(tmph);
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
new Ajax.Autocompleter('emailArticleDlg_destination', 'emailArticleDlg_dst_choices',
|
|
|
|
"backend.php?op=rpc&subop=completeEmails",
|
|
|
|
{ tokens: '', paramName: "search" });
|
|
|
|
});
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
dialog.show();
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
/* displayDlg('emailArticle', id,
|
|
|
|
function () {
|
2010-11-20 21:45:31 +01:00
|
|
|
document.forms['article_email_form'].destination.focus();
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
new Ajax.Autocompleter('destination', 'destination_choices',
|
|
|
|
"backend.php?op=rpc&subop=completeEmails",
|
|
|
|
{ tokens: '', paramName: "search" });
|
2010-11-05 22:47:02 +01:00
|
|
|
|
2010-11-20 21:45:31 +01:00
|
|
|
}); */
|
2010-11-05 22:47:02 +01:00
|
|
|
|
|
|
|
} catch (e) {
|
2010-11-20 21:45:31 +01:00
|
|
|
exception_error("emailArticle", e);
|
2010-11-05 22:47:02 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-09 18:57:23 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissArticle(id) {
|
2010-11-09 18:57:23 +01:00
|
|
|
try {
|
|
|
|
var elem = $("RROW-" + id);
|
|
|
|
|
|
|
|
toggleUnread(id, 0, true);
|
|
|
|
|
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
|
2010-11-13 13:38:02 +01:00
|
|
|
active_post_id = false;
|
|
|
|
|
2010-11-09 18:57:23 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissArticle", e);
|
2010-11-09 18:57:23 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function dismissSelectedArticles() {
|
2010-11-10 09:38:55 +01:00
|
|
|
try {
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
var ids = getVisibleArticleIds();
|
|
|
|
var tmp = [];
|
|
|
|
var sel = [];
|
2010-11-10 09:38:55 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
2010-11-12 11:52:53 +01:00
|
|
|
|
2011-03-18 10:46:22 +01:00
|
|
|
if (elem.className && elem.hasClassName("Selected") &&
|
2010-11-13 13:38:02 +01:00
|
|
|
ids[i] != active_post_id) {
|
2010-11-12 11:52:53 +01:00
|
|
|
new Effect.Fade(elem, {duration : 0.5});
|
|
|
|
sel.push(ids[i]);
|
|
|
|
} else {
|
|
|
|
tmp.push(ids[i]);
|
|
|
|
}
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
if (sel.length > 0)
|
2010-11-10 09:38:55 +01:00
|
|
|
selectionToggleUnread(false);
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
fixHeadlinesOrder(tmp);
|
|
|
|
|
2010-11-10 09:38:55 +01:00
|
|
|
} catch (e) {
|
2010-11-11 11:37:03 +01:00
|
|
|
exception_error("dismissSelectedArticles", e);
|
2010-11-10 09:38:55 +01:00
|
|
|
}
|
|
|
|
}
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
function dismissReadArticles() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var ids = getVisibleArticleIds();
|
2010-11-12 11:52:53 +01:00
|
|
|
var tmp = [];
|
2010-11-11 11:37:03 +01:00
|
|
|
|
|
|
|
for (var i = 0; i < ids.length; i++) {
|
|
|
|
var elem = $("RROW-" + ids[i]);
|
|
|
|
|
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 {
|
|
|
|
var shift_key = event.shiftKey;
|
|
|
|
|
2010-11-12 11:52:53 +01:00
|
|
|
hideAuxDlg();
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
if (!event.ctrlKey) {
|
2010-11-12 23:41:18 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
if (!getInitParam("cdm_expanded")) {
|
|
|
|
return cdmExpandArticle(id);
|
|
|
|
} else {
|
2010-11-12 23:41:18 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
selectArticles("none");
|
|
|
|
toggleSelected(id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
var elem = $("RROW-" + id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
if (elem)
|
|
|
|
elem.removeClassName("Unread");
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
var upd_img_pic = $("FUPDPIC-" + id);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
|
|
|
if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
|
2010-11-16 12:43:43 +01:00
|
|
|
upd_img_pic.src.match("fresh_sign.png"))) {
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
upd_img_pic.src = "images/blank_icon.gif";
|
|
|
|
}
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
active_post_id = id;
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-16 12:43:43 +01:00
|
|
|
var query = "?op=rpc&subop=catchupSelected" +
|
|
|
|
"&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
|
|
|
|
|
|
|
return true;
|
2010-11-12 23:41:18 +01:00
|
|
|
}
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
2010-11-16 12:43:43 +01:00
|
|
|
toggleSelected(id, true);
|
|
|
|
toggleUnread(id, 0, false);
|
2010-11-16 16:13:17 +01:00
|
|
|
zoomToArticle(event, id);
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("cdmClicked");
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2010-11-17 10:51:30 +01:00
|
|
|
function postClicked(event, id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!event.ctrlKey) {
|
|
|
|
return true;
|
|
|
|
} else {
|
2010-11-19 19:14:36 +01:00
|
|
|
postOpenInNewTab(event, id);
|
2010-11-17 10:51:30 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("postClicked");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-19 17:35:35 +01:00
|
|
|
function hlOpenInNewTab(event, id) {
|
|
|
|
toggleUnread(id, 0, false);
|
|
|
|
zoomToArticle(event, id);
|
|
|
|
}
|
|
|
|
|
2010-11-19 19:14:36 +01:00
|
|
|
function postOpenInNewTab(event, id) {
|
|
|
|
closeArticlePanel(id);
|
|
|
|
zoomToArticle(event, id);
|
|
|
|
}
|
|
|
|
|
2010-11-11 11:37:03 +01:00
|
|
|
function hlClicked(event, id) {
|
|
|
|
try {
|
2011-03-30 14:39:27 +02:00
|
|
|
if (event.which == 2) {
|
|
|
|
view(id);
|
|
|
|
return true;
|
|
|
|
} else if (event.altKey) {
|
2010-11-21 19:47:38 +01:00
|
|
|
openArticleInNewWindow(id);
|
|
|
|
} else if (!event.ctrlKey) {
|
2010-11-11 11:37:03 +01:00
|
|
|
view(id);
|
2011-03-30 14:39:27 +02:00
|
|
|
return false;
|
2010-11-11 11:37:03 +01:00
|
|
|
} else {
|
2010-11-16 14:38:11 +01:00
|
|
|
toggleSelected(id);
|
2010-11-16 12:43:43 +01:00
|
|
|
toggleUnread(id, 0, false);
|
2010-11-16 16:13:17 +01:00
|
|
|
zoomToArticle(event, id);
|
2010-11-11 12:31:41 +01:00
|
|
|
return false;
|
2010-11-11 11:37:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("hlClicked");
|
|
|
|
}
|
|
|
|
}
|
2010-11-12 11:52:53 +01:00
|
|
|
|
|
|
|
function getFirstVisibleHeadlineId() {
|
|
|
|
var rows = getVisibleArticleIds();
|
|
|
|
return rows[0];
|
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);
|
|
|
|
window.open("backend.php?op=la&id=" + id);
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function isCdmMode() {
|
2010-11-13 12:04:37 +01:00
|
|
|
return getInitParam("combined_display_mode");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
function markHeadline(id) {
|
|
|
|
var row = $("RROW-" + id);
|
|
|
|
if (row) {
|
|
|
|
var check = $("RCHK-" + id);
|
|
|
|
|
|
|
|
if (check) {
|
|
|
|
check.checked = true;
|
|
|
|
}
|
|
|
|
|
2010-11-14 13:55:51 +01:00
|
|
|
row.addClassName("Selected");
|
2010-11-12 11:52:53 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-13 12:04:37 +01:00
|
|
|
function getRelativePostIds(id, limit) {
|
|
|
|
|
|
|
|
var tmp = [];
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
2010-11-16 16:55:39 +01:00
|
|
|
var tabs = dijit.byId("content-tabs");
|
|
|
|
var child = tabs.selectedChildWidget;
|
|
|
|
|
|
|
|
if (child && tabs.getIndexOfChild(child) > 0) {
|
|
|
|
tabs.removeChild(child);
|
|
|
|
child.destroy();
|
|
|
|
} else {
|
|
|
|
if (dijit.byId("content-insert"))
|
|
|
|
dijit.byId("headlines-wrap-inner").removeChild(
|
|
|
|
dijit.byId("content-insert"));
|
|
|
|
}
|
2010-11-16 12:43:43 +01:00
|
|
|
}
|
2010-11-19 19:05:28 +01:00
|
|
|
|
|
|
|
function initHeadlinesMenu() {
|
|
|
|
try {
|
|
|
|
if (dijit.byId("headlinesMenu"))
|
|
|
|
dijit.byId("headlinesMenu").destroyRecursive();
|
|
|
|
|
|
|
|
var ids = [];
|
2010-11-19 23:38:26 +01:00
|
|
|
|
|
|
|
if (!isCdmMode()) {
|
|
|
|
nodes = $$("#headlines-frame > div[id*=RROW]");
|
|
|
|
} else {
|
|
|
|
nodes = $$("#headlines-frame span[id*=RTITLE]");
|
|
|
|
}
|
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);
|
|
|
|
}}));
|
|
|
|
|
2011-03-07 13:24:49 +01:00
|
|
|
menu.addChild(new dijit.MenuItem({
|
|
|
|
label: __("View in a tt-rss tab"),
|
|
|
|
onClick: function(event) {
|
|
|
|
hlOpenInNewTab(event, this.getParent().callerRowId);
|
|
|
|
}}));
|
|
|
|
|
|
|
|
// menu.addChild(new dijit.MenuSeparator());
|
|
|
|
|
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];
|
|
|
|
|
|
|
|
bare_id = -11-bare_id;
|
|
|
|
|
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) {
|
2011-03-18 10:46:22 +01:00
|
|
|
selectionAssignLabel(this.labelId,
|
2010-11-19 20:18:26 +01:00
|
|
|
[this.getParent().ownerMenu.callerRowId]);
|
|
|
|
}}));
|
2011-03-07 13:24:49 +01:00
|
|
|
|
|
|
|
labelDelMenu.addChild(new dijit.MenuItem({
|
|
|
|
label: name,
|
|
|
|
labelId: bare_id,
|
|
|
|
onClick: function(event) {
|
2011-03-18 10:46:22 +01:00
|
|
|
selectionRemoveLabel(this.labelId,
|
2011-03-07 13:24:49 +01:00
|
|
|
[this.getParent().ownerMenu.callerRowId]);
|
|
|
|
}}));
|
|
|
|
|
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
|
|
|
|
|
|
|
function tweetArticle(id) {
|
|
|
|
try {
|
2010-11-25 10:58:29 +01:00
|
|
|
var query = "?op=rpc&subop=getTweetInfo&id=" + param_escape(id);
|
|
|
|
|
|
|
|
console.log(query);
|
|
|
|
|
2010-11-25 10:05:48 +01:00
|
|
|
var d = new Date();
|
|
|
|
var ts = d.getTime();
|
|
|
|
|
2010-11-25 10:58:29 +01:00
|
|
|
var w = window.open('backend.php?op=loading', 'ttrss_tweet',
|
|
|
|
"status=0,toolbar=0,location=0,width=500,height=400,scrollbars=1,menubar=0");
|
2010-11-25 10:05:48 +01:00
|
|
|
|
2010-11-25 10:58:29 +01:00
|
|
|
new Ajax.Request("backend.php", {
|
2011-03-18 10:46:22 +01:00
|
|
|
parameters: query,
|
2010-11-25 10:58:29 +01:00
|
|
|
onComplete: function(transport) {
|
|
|
|
var ti = JSON.parse(transport.responseText);
|
2010-11-25 10:05:48 +01:00
|
|
|
|
2010-11-25 10:58:29 +01:00
|
|
|
var share_url = "http://twitter.com/share?_=" + ts +
|
2011-03-18 10:46:22 +01:00
|
|
|
"&text=" + param_escape(ti.title) +
|
2010-11-25 10:58:29 +01:00
|
|
|
"&url=" + param_escape(ti.link);
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-25 10:58:29 +01:00
|
|
|
w.location.href = share_url;
|
|
|
|
|
|
|
|
} });
|
2010-11-25 10:05:48 +01:00
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("tweetArticle", e);
|
|
|
|
}
|
|
|
|
}
|
2010-11-29 18:25:51 +01:00
|
|
|
|
|
|
|
function editArticleNote(id) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
var query = "backend.php?op=dlg&id=editArticleNote¶m=" + param_escape(id);
|
|
|
|
|
|
|
|
if (dijit.byId("editNoteDlg"))
|
|
|
|
dijit.byId("editNoteDlg").destroyRecursive();
|
|
|
|
|
|
|
|
dialog = new dijit.Dialog({
|
|
|
|
id: "editNoteDlg",
|
|
|
|
title: __("Edit article note"),
|
|
|
|
style: "width: 600px",
|
|
|
|
execute: function() {
|
|
|
|
if (this.validate()) {
|
|
|
|
var query = dojo.objectToQuery(this.attr('value'));
|
|
|
|
|
|
|
|
notify_progress("Saving article note...", true);
|
|
|
|
|
|
|
|
new Ajax.Request("backend.php", {
|
|
|
|
parameters: query,
|
|
|
|
onComplete: function(transport) {
|
|
|
|
notify('');
|
|
|
|
dialog.hide();
|
2011-03-18 10:46:22 +01:00
|
|
|
|
2010-11-29 18:25:51 +01:00
|
|
|
var reply = JSON.parse(transport.responseText);
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
cache_delete("article:" + id);
|
2010-11-29 18:25:51 +01:00
|
|
|
|
|
|
|
var elem = $("POSTNOTE-" + id);
|
|
|
|
|
|
|
|
if (elem) {
|
|
|
|
Element.hide(elem);
|
|
|
|
elem.innerHTML = reply.note;
|
2011-04-19 11:20:59 +02:00
|
|
|
|
|
|
|
if (reply.raw_length != 0)
|
|
|
|
new Effect.Appear(elem);
|
2010-11-29 18:25:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
href: query,
|
|
|
|
});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("editArticleNote", e);
|
|
|
|
}
|
|
|
|
}
|
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);
|
|
|
|
}
|
|
|
|
|
|
|
|
function cache_headlines(feed, is_cat, toolbar_obj, content_obj) {
|
|
|
|
if (toolbar_obj && content_obj) {
|
|
|
|
cache_set("feed:" + feed + ":" + is_cat,
|
|
|
|
JSON.stringify({toolbar: toolbar_obj, content: content_obj}));
|
|
|
|
} else {
|
|
|
|
try {
|
2011-08-31 15:56:41 +02:00
|
|
|
obj = cache_get("feed:" + feed + ":" + is_cat);
|
2011-08-31 12:03:52 +02:00
|
|
|
|
|
|
|
if (obj) {
|
2011-08-31 15:56:41 +02:00
|
|
|
obj = JSON.parse(obj);
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
if (toolbar_obj) obj.toolbar = toolbar_obj;
|
|
|
|
if (content_obj) obj.content = content_obj;
|
|
|
|
|
|
|
|
cache_set("feed:" + feed + ":" + is_cat, JSON.stringify(obj));
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
console.warn("cache_headlines failed: " + e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function render_local_headlines(feed, is_cat, obj) {
|
|
|
|
try {
|
|
|
|
|
|
|
|
dijit.byId("headlines-toolbar").attr('content',
|
|
|
|
obj.toolbar);
|
|
|
|
|
|
|
|
dijit.byId("headlines-frame").attr('content',
|
|
|
|
obj.content);
|
|
|
|
|
|
|
|
dojo.parser.parse('headlines-toolbar');
|
|
|
|
|
|
|
|
$("headlines-frame").scrollTop = 0;
|
|
|
|
selectArticles('none');
|
|
|
|
setActiveFeedId(feed, is_cat);
|
|
|
|
initHeadlinesMenu();
|
2011-08-31 15:56:41 +02:00
|
|
|
|
|
|
|
precache_headlines();
|
|
|
|
|
2011-08-31 12:03:52 +02:00
|
|
|
} catch (e) {
|
|
|
|
exception_error("render_local_headlines", e);
|
|
|
|
}
|
|
|
|
}
|
2011-08-31 15:56:41 +02:00
|
|
|
|
2011-08-31 17:22:47 +02:00
|
|
|
function precache_headlines_idle() {
|
|
|
|
try {
|
|
|
|
if (!feed_precache_timeout_id) {
|
|
|
|
var feeds = dijit.byId("feedTree").getVisibleUnreadFeeds();
|
|
|
|
var uncached = [];
|
|
|
|
|
|
|
|
feeds.each(function(item) {
|
|
|
|
if (parseInt(item[0]) > 0 && !cache_get("feed:" + item[0] + ":" + item[1]))
|
|
|
|
uncached.push(item);
|
|
|
|
});
|
|
|
|
|
|
|
|
if (uncached.length > 0) {
|
|
|
|
var rf = uncached[Math.floor(Math.random()*uncached.length)];
|
|
|
|
viewfeed(rf[0], '', rf[1], 0, true);
|
|
|
|
}
|
|
|
|
}
|
2011-11-14 09:14:19 +01:00
|
|
|
precache_idle_timeout_id = setTimeout("precache_headlines_idle()", 1000*30);
|
2011-08-31 17:22:47 +02:00
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("precache_headlines_idle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-31 15:56:41 +02:00
|
|
|
function precache_headlines() {
|
|
|
|
try {
|
|
|
|
|
|
|
|
if (!feed_precache_timeout_id) {
|
|
|
|
feed_precache_timeout_id = window.setTimeout(function() {
|
|
|
|
var nuf = getNextUnreadFeed(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
var nf = dijit.byId("feedTree").getNextFeed(getActiveFeedId(), activeFeedIsCat());
|
|
|
|
|
|
|
|
if (nuf && !cache_get("feed:" + nuf + ":" + activeFeedIsCat()))
|
|
|
|
viewfeed(nuf, '', activeFeedIsCat(), 0, true);
|
|
|
|
|
|
|
|
if (nf != nuf && nf && !cache_get("feed:" + nf[0] + ":" + nf[1]))
|
|
|
|
viewfeed(nf[0], '', nf[1], 0, true);
|
|
|
|
|
|
|
|
window.setTimeout(function() {
|
|
|
|
feed_precache_timeout_id = false;
|
|
|
|
}, 3000);
|
|
|
|
}, 1000);
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("precache_headlines", e);
|
|
|
|
}
|
|
|
|
}
|
2011-10-04 11:11:07 +02:00
|
|
|
|
|
|
|
function shareArticle(id) {
|
|
|
|
try {
|
|
|
|
if (dijit.byId("shareArticleDlg"))
|
|
|
|
dijit.byId("shareArticleDlg").destroyRecursive();
|
|
|
|
|
|
|
|
var query = "backend.php?op=dlg&id=shareArticle¶m=" + param_escape(id);
|
|
|
|
|
|
|
|
dialog = new dijit.Dialog({
|
|
|
|
id: "shareArticleDlg",
|
|
|
|
title: __("Share article by URL"),
|
|
|
|
style: "width: 600px",
|
|
|
|
href: query});
|
|
|
|
|
|
|
|
dialog.show();
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("emailArticle", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|