1 var active_post_id = false;
2 var last_article_view = false;
3 var active_real_feed_id = false;
5 // FIXME: kludges, needs proper implementation
6 var _reload_feedlist_after_view = false;
8 var _cdm_wd_timeout = false;
9 var _cdm_wd_vishist = new Array();
11 var article_cache = new Array();
13 var vgroup_last_feed = false;
14 var post_under_pointer = false;
16 var last_requested_article = false;
18 function catchup_callback2(transport, callback) {
20 console.log("catchup_callback2 " + transport + ", " + callback);
22 all_counters_callback2(transport);
24 setTimeout(callback, 10);
27 exception_error("catchup_callback2", e, transport);
31 function clean_feed_selections() {
33 var feeds = $("feedList").getElementsByTagName("LI");
35 for (var i = 0; i < feeds.length; i++) {
36 if (feeds[i].id && feeds[i].id.match("FEEDR-")) {
37 feeds[i].className = feeds[i].className.replace("Selected", "");
39 if (feeds[i].id && feeds[i].id.match("FCAT-")) {
40 feeds[i].className = feeds[i].className.replace("Selected", "");
44 exception_error("clean_feed_selections", e);
48 function headlines_callback2(transport, feed_cur_page) {
51 if (!transport.responseText && db) {
52 offlineConfirmModeChange();
56 loading_set_progress(100);
58 console.log("headlines_callback2 [page=" + feed_cur_page + "]");
60 if (!transport_error_check(transport)) return;
62 clean_feed_selections();
67 if (transport.responseXML) {
68 var headlines = transport.responseXML.getElementsByTagName("headlines")[0];
70 is_cat = headlines.getAttribute("is_cat");
71 feed_id = headlines.getAttribute("id");
72 setActiveFeedId(feed_id, is_cat);
76 var ll = $('FLL-' + feed_id);
79 var feedr = $("FEEDR-" + feed_id);
80 if (feedr && !feedr.className.match("Selected")) {
81 feedr.className = feedr.className + "Selected";
83 if (feedr && ll) feedr.removeChild(ll);
85 var feedr = $("FCAT-" + feed_id);
86 if (feedr && !feedr.className.match("Selected")) {
87 feedr.className = feedr.className + "Selected";
90 var fcap = $("FCAP-" + feed_id);
91 if (fcap && ll) fcap.removeChild(ll);
95 var img = $('FIMG-' + feed_id);
101 var f = $("headlines-frame");
103 if (feed_cur_page == 0) {
104 console.log("resetting headlines scrollTop");
109 if (transport.responseXML) {
110 var response = transport.responseXML;
112 var headlines = response.getElementsByTagName("headlines")[0];
113 var headlines_info = response.getElementsByTagName("headlines-info")[0];
116 headlines_info = JSON.parse(headlines_info.firstChild.nodeValue);
118 console.log("didn't find headlines-info object in response");
120 var headlines_count = headlines_info.count;
121 var headlines_unread = headlines_info.unread;
122 var disable_cache = headlines_info.disable_cache;
124 vgroup_last_feed = headlines_info.vgroup_last_feed;
126 if (headlines_count == 0) {
127 _infscroll_disable = 1;
129 _infscroll_disable = 0;
132 var counters = response.getElementsByTagName("counters")[0];
133 var articles = response.getElementsByTagName("article");
134 var runtime_info = response.getElementsByTagName("runtime-info");
136 if (feed_cur_page == 0) {
138 f.innerHTML = headlines.firstChild.nodeValue;
140 var cache_prefix = "";
148 cache_invalidate(cache_prefix + feed_id);
150 if (!disable_cache) {
151 cache_inject(cache_prefix + feed_id,
152 headlines.firstChild.nodeValue, headlines_unread);
156 console.log("headlines_callback: returned no data");
157 f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML data)') + "</div>";
162 if (headlines_count > 0) {
163 console.log("adding some more headlines...");
165 var c = $("headlinesList");
168 c = $("headlinesInnerContainer");
171 var ids = getSelectedArticleIds2();
173 c.innerHTML = c.innerHTML + headlines.firstChild.nodeValue;
175 console.log("restore selected ids: " + ids);
177 for (var i = 0; i < ids.length; i++) {
178 markHeadline(ids[i]);
182 console.log("no new headlines received");
185 console.log("headlines_callback: returned no data");
186 notify_error("Error while trying to load more headlines");
192 for (var i = 0; i < articles.length; i++) {
193 var a_id = articles[i].getAttribute("id");
194 console.log("found id: " + a_id);
195 cache_inject(a_id, articles[i].firstChild.nodeValue);
198 console.log("no cached articles received");
202 console.log("parsing piggybacked counters: " + counters);
203 parse_counters(counters, false);
205 console.log("counters container not found in reply, requesting...");
210 console.log("parsing runtime info: " + runtime_info[0]);
211 parse_runtime_info(runtime_info[0]);
213 console.log("counters container not found in reply");
217 console.log("headlines_callback: returned no XML object");
218 f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
221 if (typeof correctPNG != 'undefined') {
225 if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
227 if (!$("headlinesList") &&
228 getActiveFeedId() != -3 &&
229 getInitParam("cdm_auto_catchup") == 1) {
230 console.log("starting CDM watchdog");
231 _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
232 _cdm_wd_vishist = new Array();
234 console.log("not in CDM mode or watchdog disabled");
237 _feed_cur_page = feed_cur_page;
238 _infscroll_request_sent = 0;
245 exception_error("headlines_callback2", e, transport);
249 function render_article(article) {
251 var f = $("content-frame");
256 var fi = $("content-insert");
262 fi.innerHTML = article;
264 // article.evalScripts();
267 exception_error("render_article", e);
271 function showArticleInHeadlines(id) {
275 cleanSelected("headlinesList");
277 var crow = $("RROW-" + id);
281 var article_is_unread = crow.className.match("Unread");
283 crow.className = crow.className.replace("Unread", "");
285 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
287 var upd_img_pic = $("FUPDPIC-" + id);
289 var cache_prefix = "";
291 if (activeFeedIsCat()) {
297 var view_mode = false;
300 view_mode = document.forms['main_toolbar_form'].view_mode;
301 view_mode = view_mode[view_mode.selectedIndex].value;
306 if (upd_img_pic && (upd_img_pic.src.match("updated.png") ||
307 upd_img_pic.src.match("fresh_sign.png"))) {
309 upd_img_pic.src = "images/blank_icon.gif";
311 cache_invalidate(cache_prefix + getActiveFeedId());
313 cache_inject(cache_prefix + getActiveFeedId(),
314 $("headlines-frame").innerHTML,
315 get_feed_unread(getActiveFeedId()));
317 } else if (article_is_unread && view_mode == "all_articles") {
319 cache_invalidate(cache_prefix + getActiveFeedId());
321 cache_inject(cache_prefix + getActiveFeedId(),
322 $("headlines-frame").innerHTML,
323 get_feed_unread(getActiveFeedId())-1);
325 } else if (article_is_unread) {
326 cache_invalidate(cache_prefix + getActiveFeedId());
332 exception_error("showArticleInHeadlines", e);
336 function article_callback2(transport, id) {
338 console.log("article_callback2 " + id);
340 if (!transport.responseText && db) {
341 offlineConfirmModeChange();
345 if (transport.responseXML) {
347 if (!transport_error_check(transport)) return;
349 /* var ll = $('LL-' + id);
350 var content = $('HLC-' + id);
352 if (ll && content) content.removeChild(ll); */
354 var upic = $('FUPDPIC-' + id);
357 upic.src = 'images/blank_icon.gif';
360 if (id != last_requested_article) {
361 console.log("requested article id is out of sequence, aborting");
367 console.log("looking for articles to cache...");
369 var articles = transport.responseXML.getElementsByTagName("article");
371 for (var i = 0; i < articles.length; i++) {
372 var a_id = articles[i].getAttribute("id");
374 console.log("found id: " + a_id);
376 if (a_id == active_post_id) {
377 console.log("active article, rendering...");
378 render_article(articles[i].firstChild.nodeValue);
381 cache_inject(a_id, articles[i].firstChild.nodeValue);
385 showArticleInHeadlines(id);
388 db.execute("UPDATE articles SET unread = 0 WHERE id = ?", [id]);
391 var reply = transport.responseXML.firstChild.firstChild;
394 console.log("article_callback: returned no XML object");
395 //var f = $("content-frame");
396 //f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
399 var date = new Date();
400 last_article_view = date.getTime() / 1000;
402 if (typeof correctPNG != 'undefined') {
406 if (_reload_feedlist_after_view) {
407 setTimeout('updateFeedList(false, false)', 50);
408 _reload_feedlist_after_view = false;
410 if (transport.responseXML) {
411 var counters = transport.responseXML.getElementsByTagName("counters")[0];
414 console.log("parsing piggybacked counters: " + counters);
415 parse_counters(counters, false);
417 console.log("counters container not found in reply, requesting...");
425 exception_error("article_callback2", e, transport);
431 console.log("loading article: " + id);
433 if (offline_mode) return view_offline(id);
435 var cached_article = cache_find(id);
437 console.log("cache check result: " + (cached_article != false));
442 var query = "?op=view&id=" + param_escape(id);
444 var neighbor_ids = getRelativePostIds(active_post_id);
446 /* only request uncached articles */
448 var cids_to_request = Array();
450 for (var i = 0; i < neighbor_ids.length; i++) {
451 if (!cache_check(neighbor_ids[i])) {
452 cids_to_request.push(neighbor_ids[i]);
456 console.log("additional ids: " + cids_to_request.toString());
458 /* additional info for piggyback counters */
460 if (tagsAreDisplayed()) {
461 query = query + "&omode=lt";
463 query = query + "&omode=flc";
466 query = query + "&cids=" + cids_to_request.toString();
468 var crow = $("RROW-" + id);
469 var article_is_unread = crow.className.match("Unread");
471 if (!async_counters_work) {
472 query = query + "&csync=true";
475 showArticleInHeadlines(id);
477 if (!cached_article) {
479 var upic = $('FUPDPIC-' + id);
482 upic.src = getInitParam("sign_progress");
485 } else if (cached_article && article_is_unread) {
487 query = query + "&mode=prefetch";
489 render_article(cached_article);
491 } else if (cached_article) {
493 query = query + "&mode=prefetch_old";
494 render_article(cached_article);
500 last_requested_article = id;
502 new Ajax.Request("backend.php", {
504 onComplete: function(transport) {
505 article_callback2(transport, id);
511 exception_error("view", e);
516 return toggleMark(id);
520 return togglePub(id);
523 function tMark_afh_off(effect) {
525 var elem = effect.effects[0].element;
527 console.log("tMark_afh_off : " + elem.id);
530 elem.src = elem.src.replace("mark_set", "mark_unset");
531 elem.alt = __("Star article");
536 exception_error("tMark_afh_off", e);
540 function tPub_afh_off(effect) {
542 var elem = effect.effects[0].element;
544 console.log("tPub_afh_off : " + elem.id);
547 elem.src = elem.src.replace("pub_set", "pub_unset");
548 elem.alt = __("Publish article");
553 exception_error("tPub_afh_off", e);
557 function toggleMark(id, client_only, no_effects) {
561 var query = "?op=rpc&id=" + id + "&subop=mark";
563 query = query + "&afid=" + getActiveFeedId();
565 if (tagsAreDisplayed()) {
566 query = query + "&omode=tl";
568 query = query + "&omode=flc";
571 var mark_img = $("FMPIC-" + id);
573 if (!mark_img) return;
575 var vfeedu = $("FEEDU--1");
576 var crow = $("RROW-" + id);
578 if (mark_img.src.match("mark_unset")) {
579 mark_img.src = mark_img.src.replace("mark_unset", "mark_set");
580 mark_img.alt = __("Unstar article");
581 query = query + "&mark=1";
584 db.execute("UPDATE articles SET marked = 1 WHERE id = ?", [id]);
588 mark_img.alt = __("Please wait...");
589 query = query + "&mark=0";
591 if ($("headlinesList") && !no_effects) {
592 Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
594 mark_img.src = mark_img.src.replace("mark_set", "mark_unset");
595 mark_img.alt = __("Star article");
599 db.execute("UPDATE articles SET marked = 0 WHERE id = ?", [id]);
604 if (!no_effects) update_local_feedlist_counters();
609 new Ajax.Request("backend.php", {
611 onComplete: function(transport) {
612 all_counters_callback2(transport);
618 exception_error("toggleMark", e);
622 function togglePub(id, client_only, no_effects, note) {
626 var query = "?op=rpc&id=" + id + "&subop=publ";
628 query = query + "&afid=" + getActiveFeedId();
630 if (note != undefined) {
631 query = query + "¬e=" + param_escape(note);
633 query = query + "¬e=undefined";
636 if (tagsAreDisplayed()) {
637 query = query + "&omode=tl";
639 query = query + "&omode=flc";
642 var mark_img = $("FPPIC-" + id);
644 if (!mark_img) return;
646 var vfeedu = $("FEEDU--2");
647 var crow = $("RROW-" + id);
649 if (mark_img.src.match("pub_unset") || note != undefined) {
650 mark_img.src = mark_img.src.replace("pub_unset", "pub_set");
651 mark_img.alt = __("Unpublish article");
652 query = query + "&pub=1";
655 mark_img.alt = __("Please wait...");
656 query = query + "&pub=0";
658 if ($("headlinesList") && !no_effects) {
659 Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
661 mark_img.src = mark_img.src.replace("pub_set", "pub_unset");
662 mark_img.alt = __("Publish article");
667 new Ajax.Request("backend.php", {
669 onComplete: function(transport) {
670 all_counters_callback2(transport);
672 var note = transport.responseXML.getElementsByTagName("note")[0];
675 var note_id = note.getAttribute("id");
676 var note_size = note.getAttribute("size");
677 var note_content = note.firstChild.nodeValue;
679 var container = $('POSTNOTE-' + note_id);
681 cache_invalidate(note_id);
684 if (note_size == "0") {
685 Element.hide(container);
687 container.innerHTML = note_content;
688 Element.show(container);
697 exception_error("togglePub", e);
701 function correctHeadlinesOffset(id) {
705 var hlist = $("headlinesList");
706 var container = $("headlinesInnerContainer");
707 var row = $("RROW-" + id);
709 var viewport = container.offsetHeight;
711 var rel_offset_top = row.offsetTop - container.scrollTop;
712 var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
714 console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
715 console.log("Vport: " + viewport);
717 if (rel_offset_top <= 0 || rel_offset_top > viewport) {
718 container.scrollTop = row.offsetTop;
719 } else if (rel_offset_bottom > viewport) {
721 /* doesn't properly work with Opera in some cases because
722 Opera fucks up element scrolling */
724 container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
728 exception_error("correctHeadlinesOffset", e);
733 function moveToPost(mode) {
740 rows = cdmGetVisibleArticles();
742 rows = getVisibleHeadlineIds();
748 if (!$('RROW-' + active_post_id)) {
749 active_post_id = false;
752 if (active_post_id == false) {
753 next_id = getFirstVisibleHeadlineId();
754 prev_id = getLastVisibleHeadlineId();
756 for (var i = 0; i < rows.length; i++) {
757 if (rows[i] == active_post_id) {
764 if (mode == "next") {
768 if (!cdmArticleIsActuallyVisible(next_id)) {
769 cdmScrollToArticleId(next_id);
771 cdmSelectArticles("none");
772 toggleUnread(next_id, 0, true);
773 toggleSelected(next_id);
776 correctHeadlinesOffset(next_id);
777 view(next_id, getActiveFeedId());
782 if (mode == "prev") {
785 cdmScrollToArticleId(prev_id);
786 cdmSelectArticles("none");
787 toggleUnread(prev_id, 0, true);
788 toggleSelected(prev_id);
790 correctHeadlinesOffset(prev_id);
791 view(prev_id, getActiveFeedId());
797 exception_error("moveToPost", e);
801 function toggleSelected(id) {
804 var cb = $("RCHK-" + id);
806 var row = $("RROW-" + id);
808 var nc = row.className;
810 if (!nc.match("Selected")) {
811 nc = nc + "Selected";
816 // In CDM basically last selected article == active article
817 if (isCdmMode()) active_post_id = id;
819 nc = nc.replace("Selected", "");
829 exception_error("toggleSelected", e);
833 function toggleUnread_afh(effect) {
836 var elem = effect.element;
837 elem.style.backgroundColor = "";
840 exception_error("toggleUnread_afh", e);
844 function toggleUnread(id, cmode, effect) {
847 var row = $("RROW-" + id);
849 var nc = row.className;
850 var is_selected = row.className.match("Selected");
851 nc = nc.replace("Unread", "");
852 nc = nc.replace("Selected", "");
854 // since we are removing selection from the object, uncheck
855 // corresponding checkbox
857 var cb = $("RCHK-" + id);
862 // NOTE: I'm not sure that resetting selection here is a feature -fox
864 if (cmode == undefined || cmode == 2) {
865 if (row.className.match("Unread")) {
869 new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
870 afterFinish: toggleUnread_afh,
871 queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
875 row.className = nc + "Unread";
879 db.execute("UPDATE articles SET unread = not unread "+
880 "WHERE id = ?", [id]);
883 } else if (cmode == 0) {
887 new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
888 afterFinish: toggleUnread_afh,
889 queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
893 db.execute("UPDATE articles SET unread = 0 "+
894 "WHERE id = ?", [id]);
897 } else if (cmode == 1) {
898 row.className = nc + "Unread";
901 db.execute("UPDATE articles SET unread = 1 "+
902 "WHERE id = ?", [id]);
907 update_local_feedlist_counters();
909 // Disable unmarking as selected for the time being (16.05.08) -fox
910 if (is_selected) row.className = row.className + "Selected";
912 if (cmode == undefined) cmode = 2;
914 var query = "?op=rpc&subop=catchupSelected" +
915 "&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
917 // notify_progress("Loading, please wait...");
919 new Ajax.Request("backend.php", {
921 onComplete: function(transport) {
922 all_counters_callback2(transport);
928 exception_error("toggleUnread", e);
932 function selectionRemoveLabel(id) {
935 var ids = getSelectedArticleIds2();
937 if (ids.length == 0) {
938 alert(__("No articles are selected."));
942 // var ok = confirm(__("Remove selected articles from label?"));
946 var query = "?op=rpc&subop=removeFromLabel&ids=" +
947 param_escape(ids.toString()) + "&lid=" + param_escape(id);
949 // notify_progress("Loading, please wait...");
951 cache_invalidate("F:" + (-11 - id));
953 new Ajax.Request("backend.php", {
955 onComplete: function(transport) {
956 show_labels_in_headlines(transport);
957 all_counters_callback2(transport);
963 exception_error("selectionAssignLabel", e);
968 function selectionAssignLabel(id) {
971 var ids = getSelectedArticleIds2();
973 if (ids.length == 0) {
974 alert(__("No articles are selected."));
978 // var ok = confirm(__("Assign selected articles to label?"));
982 cache_invalidate("F:" + (-11 - id));
984 var query = "?op=rpc&subop=assignToLabel&ids=" +
985 param_escape(ids.toString()) + "&lid=" + param_escape(id);
987 // notify_progress("Loading, please wait...");
989 new Ajax.Request("backend.php", {
991 onComplete: function(transport) {
992 show_labels_in_headlines(transport);
993 all_counters_callback2(transport);
999 exception_error("selectionAssignLabel", e);
1004 function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
1009 rows = cdmGetSelectedArticles();
1011 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1014 if (rows.length == 0 && !no_error) {
1015 alert(__("No articles are selected."));
1019 for (i = 0; i < rows.length; i++) {
1020 var row = $("RROW-" + rows[i]);
1022 var nc = row.className;
1023 nc = nc.replace("Unread", "");
1024 nc = nc.replace("Selected", "");
1026 if (set_state == undefined) {
1027 if (row.className.match("Unread")) {
1028 row.className = nc + "Selected";
1030 row.className = nc + "UnreadSelected";
1033 db.execute("UPDATE articles SET unread = NOT unread WHERE id = ?",
1038 if (set_state == false) {
1039 row.className = nc + "Selected";
1041 db.execute("UPDATE articles SET unread = 0 WHERE id = ?",
1046 if (set_state == true) {
1047 row.className = nc + "UnreadSelected";
1049 db.execute("UPDATE articles SET unread = 1 WHERE id = ?",
1056 if (rows.length > 0) {
1058 update_local_feedlist_counters();
1062 if (set_state == undefined) {
1064 } else if (set_state == true) {
1066 } else if (set_state == false) {
1070 var query = "?op=rpc&subop=catchupSelected" +
1071 "&cmode=" + cmode + "&ids=" + param_escape(rows.toString());
1073 notify_progress("Loading, please wait...");
1075 new Ajax.Request("backend.php", {
1077 onComplete: function(transport) {
1078 catchup_callback2(transport, callback_func);
1084 exception_error("selectionToggleUnread", e);
1088 function selectionToggleMarked(cdm_mode) {
1094 rows = cdmGetSelectedArticles();
1096 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1099 if (rows.length == 0) {
1100 alert(__("No articles are selected."));
1104 for (i = 0; i < rows.length; i++) {
1105 toggleMark(rows[i], true, true);
1108 update_local_feedlist_counters();
1110 if (rows.length > 0) {
1112 var query = "?op=rpc&subop=markSelected&ids=" +
1113 param_escape(rows.toString()) + "&cmode=2";
1115 query = query + "&afid=" + getActiveFeedId();
1117 query = query + "&omode=lc";
1119 new Ajax.Request("backend.php", {
1121 onComplete: function(transport) {
1122 all_counters_callback2(transport);
1128 exception_error("selectionToggleMarked", e);
1132 function selectionTogglePublished(cdm_mode) {
1138 rows = cdmGetSelectedArticles();
1140 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1143 if (rows.length == 0) {
1144 alert(__("No articles are selected."));
1148 for (i = 0; i < rows.length; i++) {
1149 togglePub(rows[i], true, true);
1152 if (rows.length > 0) {
1154 var query = "?op=rpc&subop=publishSelected&ids=" +
1155 param_escape(rows.toString()) + "&cmode=2";
1157 query = query + "&afid=" + getActiveFeedId();
1159 query = query + "&omode=lc";
1161 new Ajax.Request("backend.php", {
1163 onComplete: function(transport) {
1164 all_counters_callback2(transport);
1170 exception_error("selectionToggleMarked", e);
1174 function cdmGetSelectedArticles() {
1175 var sel_articles = new Array();
1176 var container = $("headlinesInnerContainer");
1178 for (i = 0; i < container.childNodes.length; i++) {
1179 var child = container.childNodes[i];
1181 if (child.id && child.id.match("RROW-") && child.className.match("Selected")) {
1182 var c_id = child.id.replace("RROW-", "");
1183 sel_articles.push(c_id);
1187 return sel_articles;
1190 function cdmGetVisibleArticles() {
1191 var sel_articles = new Array();
1192 var container = $("headlinesInnerContainer");
1194 if (!container) return sel_articles;
1196 for (i = 0; i < container.childNodes.length; i++) {
1197 var child = container.childNodes[i];
1199 if (child.id && child.id.match("RROW-")) {
1200 var c_id = child.id.replace("RROW-", "");
1201 sel_articles.push(c_id);
1205 return sel_articles;
1208 function cdmGetUnreadArticles() {
1209 var sel_articles = new Array();
1210 var container = $("headlinesInnerContainer");
1212 for (i = 0; i < container.childNodes.length; i++) {
1213 var child = container.childNodes[i];
1215 if (child.id && child.id.match("RROW-") && child.className.match("Unread")) {
1216 var c_id = child.id.replace("RROW-", "");
1217 sel_articles.push(c_id);
1221 return sel_articles;
1225 // mode = all,none,unread
1226 function cdmSelectArticles(mode) {
1227 var container = $("headlinesInnerContainer");
1229 for (i = 0; i < container.childNodes.length; i++) {
1230 var child = container.childNodes[i];
1232 if (child.id && child.id.match("RROW-")) {
1233 var aid = child.id.replace("RROW-", "");
1235 var cb = $("RCHK-" + aid);
1237 if (mode == "all") {
1238 if (!child.className.match("Selected")) {
1239 child.className = child.className + "Selected";
1242 } else if (mode == "unread") {
1243 if (child.className.match("Unread") && !child.className.match("Selected")) {
1244 child.className = child.className + "Selected";
1248 child.className = child.className.replace("Selected", "");
1255 function catchupPage() {
1257 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1259 var str = __("Mark all visible articles in %s as read?");
1261 str = str.replace("%s", fn);
1263 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1267 if ($("headlinesList")) {
1268 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
1269 selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
1270 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
1272 cdmSelectArticles('all');
1273 selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
1274 cdmSelectArticles('none');
1278 function deleteSelection() {
1284 if ($("headlinesList")) {
1285 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1287 rows = cdmGetSelectedArticles();
1290 if (rows.length == 0) {
1291 alert(__("No articles are selected."));
1296 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1300 if (getActiveFeedId() != 0) {
1301 str = __("Delete %d selected articles in %s?");
1303 str = __("Delete %d selected articles?");
1306 str = str.replace("%d", rows.length);
1307 str = str.replace("%s", fn);
1309 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1313 query = "?op=rpc&subop=delete&ids=" + param_escape(rows);
1317 new Ajax.Request("backend.php", {
1319 onComplete: function(transport) {
1324 exception_error("deleteSelection", e);
1328 function archiveSelection() {
1334 if ($("headlinesList")) {
1335 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1337 rows = cdmGetSelectedArticles();
1340 if (rows.length == 0) {
1341 alert(__("No articles are selected."));
1346 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1350 if (getActiveFeedId() != 0) {
1351 str = __("Archive %d selected articles in %s?");
1354 str = __("Move %d archived articles back?");
1358 str = str.replace("%d", rows.length);
1359 str = str.replace("%s", fn);
1361 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1365 query = "?op=rpc&subop="+op+"&ids=" + param_escape(rows);
1369 for (var i = 0; i < rows.length; i++) {
1370 cache_invalidate(rows[i]);
1373 new Ajax.Request("backend.php", {
1375 onComplete: function(transport) {
1380 exception_error("archiveSelection", e);
1384 function catchupSelection() {
1390 if ($("headlinesList")) {
1391 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1393 rows = cdmGetSelectedArticles();
1396 if (rows.length == 0) {
1397 alert(__("No articles are selected."));
1402 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1404 var str = __("Mark %d selected articles in %s as read?");
1406 str = str.replace("%d", rows.length);
1407 str = str.replace("%s", fn);
1409 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1413 if ($("headlinesList")) {
1414 selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
1416 selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
1420 exception_error("catchupSelection", e);
1424 function editArticleTags(id, feed_id, cdm_enabled) {
1425 displayDlg('editArticleTags', id,
1427 new Ajax.Autocompleter('tags_str', 'tags_choices',
1428 "backend.php?op=rpc&subop=completeTags",
1429 { tokens: ',', paramName: "search" });
1433 function editTagsSave() {
1435 notify_progress("Saving article tags...");
1437 var form = document.forms["tag_edit_form"];
1439 var query = Form.serialize("tag_edit_form");
1441 query = "?op=rpc&subop=setArticleTags&" + query;
1445 new Ajax.Request("backend.php", {
1447 onComplete: function(transport) {
1449 console.log("tags saved...");
1454 if (tagsAreDisplayed()) {
1455 _reload_feedlist_after_view = true;
1458 if (transport.responseXML) {
1459 var tags_str = transport.responseXML.getElementsByTagName("tags-str")[0];
1462 var id = tags_str.getAttribute("id");
1465 var tags = $("ATSTR-" + id);
1467 tags.innerHTML = tags_str.firstChild.nodeValue;
1470 cache_invalidate(id);
1476 exception_error("editTagsSave", e);
1481 function editTagsInsert() {
1484 var form = document.forms["tag_edit_form"];
1486 var found_tags = form.found_tags;
1487 var tags_str = form.tags_str;
1489 var tag = found_tags[found_tags.selectedIndex].value;
1491 if (tags_str.value.length > 0 &&
1492 tags_str.value.lastIndexOf(", ") != tags_str.value.length - 2) {
1494 tags_str.value = tags_str.value + ", ";
1497 tags_str.value = tags_str.value + tag + ", ";
1499 found_tags.selectedIndex = 0;
1502 exception_error("editTagsInsert", e);
1506 function cdmScrollViewport(where) {
1507 console.log("cdmScrollViewport: " + where);
1509 var ctr = $("headlinesInnerContainer");
1513 if (where == "bottom") {
1514 ctr.scrollTop = ctr.scrollHeight;
1516 ctr.scrollTop = where;
1520 function cdmArticleIsBelowViewport(id) {
1522 var ctr = $("headlinesInnerContainer");
1523 var e = $("RROW-" + id);
1525 if (!e || !ctr) return;
1527 // article starts below viewport
1529 if (ctr.scrollTop < e.offsetTop) {
1536 exception_error("cdmArticleIsVisible", e);
1540 function cdmArticleIsAboveViewport(id) {
1542 var ctr = $("headlinesInnerContainer");
1543 var e = $("RROW-" + id);
1545 if (!e || !ctr) return;
1547 // article starts above viewport
1549 if (ctr.scrollTop > e.offsetTop + e.offsetHeight) {
1556 exception_error("cdmArticleIsVisible", e);
1560 function cdmScrollToArticleId(id) {
1562 var ctr = $("headlinesInnerContainer");
1563 var e = $("RROW-" + id);
1565 if (!e || !ctr) return;
1567 ctr.scrollTop = e.offsetTop;
1570 exception_error("cdmScrollToArticleId", e);
1574 function cdmArticleIsActuallyVisible(id) {
1576 var ctr = $("headlinesInnerContainer");
1577 var e = $("RROW-" + id);
1579 if (!e || !ctr) return;
1581 // article fits in viewport OR article is longer than viewport and
1582 // its bottom is visible
1584 if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
1585 ctr.scrollTop + ctr.offsetHeight) {
1589 } else if (e.offsetHeight > ctr.offsetHeight &&
1590 e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1591 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
1600 exception_error("cdmArticleIsVisible", e);
1604 function cdmWatchdog() {
1608 var ctr = $("headlinesInnerContainer");
1612 var ids = new Array();
1614 var e = ctr.firstChild;
1617 if (e.className && e.className == "cdmArticleUnread" && e.id &&
1618 e.id.match("RROW-")) {
1620 // article fits in viewport OR article is longer than viewport and
1621 // its bottom is visible
1623 if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
1624 ctr.scrollTop + ctr.offsetHeight) {
1626 // console.log(e.id + " is visible " + e.offsetTop + "." +
1627 // (e.offsetTop + e.offsetHeight) + " vs " + ctr.scrollTop + "." +
1628 // (ctr.scrollTop + ctr.offsetHeight));
1630 ids.push(e.id.replace("RROW-", ""));
1632 } else if (e.offsetHeight > ctr.offsetHeight &&
1633 e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1634 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
1636 ids.push(e.id.replace("RROW-", ""));
1640 // method 2: article bottom is visible and is in upper 1/2 of the viewport
1642 /* if (e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1643 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight/2) {
1645 ids.push(e.id.replace("RROW-", ""));
1654 console.log("cdmWatchdog, ids= " + ids.toString());
1656 if (ids.length > 0) {
1658 for (var i = 0; i < ids.length; i++) {
1659 var e = $("RROW-" + ids[i]);
1661 e.className = e.className.replace("Unread", "");
1665 var query = "?op=rpc&subop=catchupSelected" +
1666 "&cmode=0" + "&ids=" + param_escape(ids.toString());
1668 new Ajax.Request("backend.php", {
1670 onComplete: function(transport) {
1671 all_counters_callback2(transport);
1676 _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 4000);
1679 exception_error("cdmWatchdog", e);
1685 function cache_inject(id, article, param) {
1687 if (!cache_check_param(id, param)) {
1688 console.log("cache_article: miss: " + id + " [p=" + param + "]");
1692 var date = new Date();
1693 var ts = Math.round(date.getTime() / 1000);
1695 db.execute("INSERT INTO cache (id, article, param, added) VALUES (?, ?, ?, ?)",
1696 [id, article, param, ts]);
1699 var cache_obj = new Array();
1701 cache_obj["id"] = id;
1702 cache_obj["data"] = article;
1703 cache_obj["param"] = param;
1705 article_cache.push(cache_obj);
1709 console.log("cache_article: hit: " + id + " [p=" + param + "]");
1712 exception_error("cache_inject", e);
1716 function cache_find(id) {
1719 var rs = db.execute("SELECT article FROM cache WHERE id = ?", [id]);
1722 if (rs.isValidRow()) {
1723 var a = rs.field(0);
1731 for (var i = 0; i < article_cache.length; i++) {
1732 if (article_cache[i]["id"] == id) {
1733 return article_cache[i]["data"];
1740 function cache_find_param(id, param) {
1743 var rs = db.execute("SELECT article FROM cache WHERE id = ? AND param = ?",
1747 if (rs.isValidRow()) {
1756 for (var i = 0; i < article_cache.length; i++) {
1757 if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
1758 return article_cache[i]["data"];
1765 function cache_check(id) {
1768 var rs = db.execute("SELECT COUNT(*) AS c FROM cache WHERE id = ?",
1772 if (rs.isValidRow()) {
1773 a = rs.field(0) != "0";
1781 for (var i = 0; i < article_cache.length; i++) {
1782 if (article_cache[i]["id"] == id) {
1790 function cache_check_param(id, param) {
1793 var rs = db.execute("SELECT COUNT(*) AS c FROM cache WHERE id = ? AND param = ?",
1797 if (rs.isValidRow()) {
1798 a = rs.field(0) != "0";
1806 for (var i = 0; i < article_cache.length; i++) {
1807 if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
1815 function cache_expire() {
1817 var date = new Date();
1818 var ts = Math.round(date.getTime() / 1000);
1820 db.execute("DELETE FROM cache WHERE added < ? - 1800 AND id LIKE 'FEEDLIST'", [ts]);
1821 db.execute("DELETE FROM cache WHERE added < ? - 600 AND (id LIKE 'F:%' OR id LIKE 'C:%')", [ts]);
1822 db.execute("DELETE FROM cache WHERE added < ? - 86400", [ts]);
1826 while (article_cache.length > 25) {
1827 article_cache.shift();
1832 function cache_flush() {
1833 article_cache = new Array();
1836 function cache_invalidate(id) {
1840 rs = db.execute("DELETE FROM cache WHERE id = ?", [id]);
1841 return rs.rowsAffected != 0;
1846 while (i < article_cache.length) {
1847 if (article_cache[i]["id"] == id) {
1848 console.log("cache_invalidate: removed id " + id);
1849 article_cache.splice(i, 1);
1856 console.log("cache_invalidate: id not found: " + id);
1859 exception_error("cache_invalidate", e);
1863 function getActiveArticleId() {
1864 return active_post_id;
1867 function cdmClicked(id) {
1869 var elem = $("RROW-" + id);
1872 var id = elem.id.replace("RROW-", "");
1873 active_post_id = id;
1875 // cdmSelectArticles("none");
1876 toggleUnread(id, 0, true);
1877 // toggleSelected(id);
1881 exception_error("cdmClicked", e);
1885 function preloadArticleUnderPointer(id) {
1887 if (getInitParam("bw_limit") == "1") return;
1889 if (post_under_pointer == id && !cache_check(id)) {
1891 console.log("trying to preload article " + id);
1893 var neighbor_ids = getRelativePostIds(id, 1);
1895 /* only request uncached articles */
1897 var cids_to_request = Array();
1899 for (var i = 0; i < neighbor_ids.length; i++) {
1900 if (!cache_check(neighbor_ids[i])) {
1901 cids_to_request.push(neighbor_ids[i]);
1904 console.log("additional ids: " + cids_to_request.toString());
1906 cids_to_request.push(id);
1908 var query = "?op=rpc&subop=getArticles&ids=" +
1909 cids_to_request.toString();
1911 new Ajax.Request("backend.php", {
1913 onComplete: function(transport) {
1914 var articles = transport.responseXML.getElementsByTagName("article");
1916 for (var i = 0; i < articles.length; i++) {
1917 var id = articles[i].getAttribute("id");
1918 if (!cache_check(id)) {
1919 cache_inject(id, articles[i].firstChild.nodeValue);
1920 console.log("preloaded article: " + id);
1926 exception_error("preloadArticleUnderPointer", e);
1930 function postMouseIn(id) {
1932 if (post_under_pointer != id) {
1933 post_under_pointer = id;
1935 window.setTimeout("preloadArticleUnderPointer(" + id + ")", 250);
1940 exception_error("postMouseIn", e);
1944 function postMouseOut(id) {
1946 post_under_pointer = false;
1948 exception_error("postMouseOut", e);
1952 function headlines_scroll_handler() {
1955 var e = $("headlinesInnerContainer");
1957 var toolbar_form = document.forms["main_toolbar_form"];
1959 console.log((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " +
1960 _infscroll_disable);
1962 if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
1963 if (!_infscroll_disable) {
1964 console.log("more cowbell!");
1970 exception_error("headlines_scroll_handler", e);
1974 function catchupRelativeToArticle(below) {
1979 if (!getActiveArticleId()) {
1980 alert(__("No article is selected."));
1986 if ($("headlinesList")) {
1987 visible_ids = getVisibleHeadlineIds();
1989 visible_ids = cdmGetVisibleArticles();
1992 var ids_to_mark = new Array();
1995 for (var i = 0; i < visible_ids.length; i++) {
1996 if (visible_ids[i] != getActiveArticleId()) {
1997 var e = $("RROW-" + visible_ids[i]);
1999 if (e && e.className.match("Unread")) {
2000 ids_to_mark.push(visible_ids[i]);
2007 for (var i = visible_ids.length-1; i >= 0; i--) {
2008 if (visible_ids[i] != getActiveArticleId()) {
2009 var e = $("RROW-" + visible_ids[i]);
2011 if (e && e.className.match("Unread")) {
2012 ids_to_mark.push(visible_ids[i]);
2020 if (ids_to_mark.length == 0) {
2021 alert(__("No articles found to mark"));
2023 var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
2025 if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
2027 for (var i = 0; i < ids_to_mark.length; i++) {
2028 var e = $("RROW-" + ids_to_mark[i]);
2029 e.className = e.className.replace("Unread", "");
2032 var query = "?op=rpc&subop=catchupSelected" +
2033 "&cmode=0" + "&ids=" + param_escape(ids_to_mark.toString());
2035 new Ajax.Request("backend.php", {
2037 onComplete: function(transport) {
2038 catchup_callback2(transport);
2045 exception_error("catchupRelativeToArticle", e);
2049 function cdmExpandArticle(a_id) {
2051 var id = 'CICD-' + a_id;
2054 Element.hide("CEXC-" + a_id);
2057 Effect.Appear(id, {duration : 0.5,
2058 beforeStart: function(effect) {
2059 var h_id = 'CICH-' + a_id;
2060 var h_elem = $(h_id);
2061 if (h_elem) { h_elem.style.display = "none"; }
2063 toggleUnread(a_id, 0);
2068 exception_error("cdmExpandArticle", e);
2073 function fixHeadlinesOrder(ids) {
2075 for (var i = 0; i < ids.length; i++) {
2076 var e = $("RROW-" + ids[i]);
2080 e.className = e.className.replace("even", "odd");
2082 e.className = e.className.replace("odd", "even");
2087 exception_error("fixHeadlinesOrder", e);
2091 function hideReadHeadlines() {
2095 var vis_ids = new Array();
2097 if ($("headlinesList")) {
2098 ids = getVisibleHeadlineIds();
2100 ids = cdmGetVisibleArticles();
2103 var read_headlines_visible = true;
2105 for (var i = 0; i < ids.length; i++) {
2106 var row = $("RROW-" + ids[i]);
2108 if (row && row.className) {
2109 if (read_headlines_visible) {
2110 if (row.className.match("Unread") || row.className.match("Selected")) {
2112 vis_ids.push(ids[i]);
2114 //Effect.Fade(row, {duration : 0.3});
2119 vis_ids.push(ids[i]);
2124 fixHeadlinesOrder(vis_ids);
2126 read_headlines_visible = !read_headlines_visible;
2129 exception_error("hideReadHeadlines", e);
2133 function invertHeadlineSelection() {
2135 var rows = new Array();
2139 r = document.getElementsByTagName("TR");
2141 r = document.getElementsByTagName("DIV");
2144 for (var i = 0; i < r.length; i++) {
2145 if (r[i].id && r[i].id.match("RROW-")) {
2150 for (var i = 0; i < rows.length; i++) {
2151 var nc = rows[i].className;
2152 var id = rows[i].id.replace("RROW-", "");
2153 var cb = $("RCHK-" + id);
2155 if (!rows[i].className.match("Selected")) {
2156 nc = nc + "Selected";
2159 nc = nc.replace("Selected", "");
2163 rows[i].className = nc;
2168 exception_error("invertHeadlineSelection", e);
2172 function getArticleUnderPointer() {
2173 return post_under_pointer;
2176 function zoomToArticle(id) {
2178 var w = window.open("backend.php?op=view&mode=zoom&id=" + param_escape(id),
2180 "status=0,toolbar=0,location=0,width=450,height=300,scrollbars=1,menubar=0");
2183 exception_error("zoomToArticle", e);
2187 function scrollArticle(offset) {
2190 var ci = $("content-insert");
2192 ci.scrollTop += offset;
2195 var hi = $("headlinesInnerContainer");
2197 hi.scrollTop += offset;
2202 exception_error("scrollArticle", e);
2206 function show_labels_in_headlines(transport) {
2208 if (transport.responseXML) {
2209 var info = transport.responseXML.getElementsByTagName("info-for-headlines")[0];
2211 var elems = info.getElementsByTagName("entry");
2213 for (var l = 0; l < elems.length; l++) {
2214 var e_id = elems[l].getAttribute("id");
2218 var ctr = $("HLLCTR-" + e_id);
2221 ctr.innerHTML = elems[l].firstChild.nodeValue;
2229 exception_error("show_labels_in_headlines", e);
2234 function toggleHeadlineActions() {
2236 var e = $("headlineActionsBody");
2237 var p = $("headlineActionsDrop");
2239 if (!Element.visible(e)) {
2246 e.style.left = (p.offsetLeft + 1) + "px";
2247 e.style.top = (p.offsetTop + p.offsetHeight + 2) + "px";
2250 exception_error("toggleHeadlineActions", e);
2254 function publishWithNote(id, def_note) {
2256 if (!def_note) def_note = '';
2258 var note = prompt(__("Please enter a note for this article:"), def_note);
2260 if (note != undefined) {
2261 togglePub(id, false, false, note);
2265 exception_error("publishWithNote", e);
2269 function emailArticle(id) {
2272 var ids = getSelectedArticleIds2();
2274 if (ids.length == 0) {
2275 alert(__("No articles are selected."));
2279 id = ids.toString();
2282 displayDlg('emailArticle', id,
2284 document.forms['article_email_form'].destination.focus();
2286 new Ajax.Autocompleter('destination', 'destination_choices',
2287 "backend.php?op=rpc&subop=completeEmails",
2288 { tokens: '', paramName: "search" });
2293 exception_error("emailArticle", e);
2297 function emailArticleDo() {
2299 var f = document.forms['article_email_form'];
2301 if (f.destination.value == "") {
2302 alert("Please fill in the destination email.");
2306 if (f.subject.value == "") {
2307 alert("Please fill in the subject.");
2311 var query = Form.serialize("article_email_form");
2313 // console.log(query);
2315 new Ajax.Request("backend.php", {
2317 onComplete: function(transport) {
2320 var error = transport.responseXML.getElementsByTagName('error')[0];
2323 alert(__('Error sending email:') + ' ' + error.firstChild.nodeValue);
2325 notify_info('Your message has been sent.');
2330 exception_error("sendEmailDo", e);
2336 exception_error("emailArticleDo", e);