1 var active_post_id = false;
2 var _catchup_callback_func = false;
3 var last_article_view = false;
4 var active_real_feed_id = false;
6 var _tag_active_post_id = false;
7 var _tag_active_feed_id = false;
8 var _tag_active_cdm = false;
10 // FIXME: kludge, to restore scrollTop after tag editor terminates
11 var _tag_cdm_scroll = false;
13 // FIXME: kludges, needs proper implementation
14 var _reload_feedlist_after_view = false;
16 var _cdm_wd_timeout = false;
17 var _cdm_wd_vishist = new Array();
19 var article_cache = new Array();
21 function catchup_callback() {
22 if (xmlhttp_rpc.readyState == 4) {
24 debug("catchup_callback");
26 all_counters_callback();
27 if (_catchup_callback_func) {
28 setTimeout(_catchup_callback_func, 10);
31 exception_error("catchup_callback", e);
36 function headlines_callback() {
37 if (xmlhttp.readyState == 4) {
38 debug("headlines_callback");
39 var f = document.getElementById("headlines-frame");
41 if (feed_cur_page == 0) {
42 debug("resetting headlines scrollTop");
47 if (xmlhttp.responseXML) {
48 var headlines = xmlhttp.responseXML.getElementsByTagName("headlines")[0];
49 var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0];
50 var articles = xmlhttp.responseXML.getElementsByTagName("article");
51 var runtime_info = xmlhttp.responseXML.getElementsByTagName("runtime-info");
53 if (feed_cur_page == 0) {
55 f.innerHTML = headlines.firstChild.nodeValue;
57 debug("headlines_callback: returned no data");
58 f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML data)') + "</div>";
63 debug("adding some more headlines...");
65 var c = document.getElementById("headlinesList");
68 c = document.getElementById("headlinesInnerContainer");
71 c.innerHTML = c.innerHTML + headlines.firstChild.nodeValue;
73 debug("headlines_callback: returned no data");
74 notify_error("Error while trying to load more headlines");
80 for (var i = 0; i < articles.length; i++) {
81 var a_id = articles[i].getAttribute("id");
82 debug("found id: " + a_id);
83 cache_inject(a_id, articles[i].firstChild.nodeValue);
86 debug("no cached articles received");
90 debug("parsing piggybacked counters: " + counters);
91 parse_counters(counters, false);
93 debug("counters container not found in reply");
97 debug("parsing runtime info: " + runtime_info[0]);
98 parse_runtime_info(runtime_info[0]);
100 debug("counters container not found in reply");
104 debug("headlines_callback: returned no XML object");
105 f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
108 if (typeof correctPNG != 'undefined') {
112 if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
114 if (!document.getElementById("headlinesList") &&
115 getInitParam("cdm_auto_catchup") == 1) {
116 debug("starting CDM watchdog");
117 _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
118 _cdm_wd_vishist = new Array();
120 debug("not in CDM mode or watchdog disabled");
123 if (_tag_cdm_scroll) {
125 document.getElementById("headlinesInnerContainer").scrollTop = _tag_cdm_scroll;
126 _tag_cdm_scroll = false;
127 debug("resetting headlinesInner scrollTop");
136 function render_article(article) {
138 var f = document.getElementById("content-frame");
143 f.innerHTML = article;
146 exception_error("render_article", e);
150 function article_callback() {
151 if (xmlhttp.readyState == 4) {
152 debug("article_callback");
155 if (xmlhttp.responseXML) {
156 var reply = xmlhttp.responseXML.firstChild.firstChild;
158 var articles = xmlhttp.responseXML.getElementsByTagName("article");
160 for (var i = 0; i < articles.length; i++) {
161 var a_id = articles[i].getAttribute("id");
163 debug("found id: " + a_id);
165 if (a_id == active_post_id) {
166 debug("active article, rendering...");
167 render_article(articles[i].firstChild.nodeValue);
170 cache_inject(a_id, articles[i].firstChild.nodeValue);
174 debug("article_callback: returned no XML object");
175 var f = document.getElementById("content-frame");
176 f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
179 exception_error("article_callback", e);
182 var date = new Date();
183 last_article_view = date.getTime() / 1000;
185 if (typeof correctPNG != 'undefined') {
189 if (_reload_feedlist_after_view) {
190 setTimeout('updateFeedList(false, false)', 50);
191 _reload_feedlist_after_view = false;
193 var counters = xmlhttp.responseXML.getElementsByTagName("counters")[0];
196 debug("parsing piggybacked counters: " + counters);
197 parse_counters(counters, false);
199 debug("counters container not found in reply");
207 function view(id, feed_id, skip_history) {
210 debug("loading article: " + id + "/" + feed_id);
212 active_real_feed_id = feed_id;
214 var cached_article = cache_find(id);
216 debug("cache check result: " + (cached_article != false));
220 //setActiveFeedId(feed_id);
222 var query = "backend.php?op=view&id=" + param_escape(id) +
223 "&feed=" + param_escape(feed_id);
225 var date = new Date();
227 if (!xmlhttp_ready(xmlhttp) && last_article_view < date.getTime() / 1000 - 15) {
228 debug("<b>xmlhttp seems to be stuck at view, aborting</b>");
231 debug("trying alternative reset method for Safari");
232 xmlhttp = Ajax.getTransport();
236 if (xmlhttp_ready(xmlhttp)) {
240 cleanSelected("headlinesList");
242 var crow = document.getElementById("RROW-" + active_post_id);
244 var article_is_unread = crow.className.match("Unread");
245 debug("article is unread: " + article_is_unread);
247 crow.className = crow.className.replace("Unread", "");
249 var upd_img_pic = document.getElementById("FUPDPIC-" + active_post_id);
252 upd_img_pic.src = "images/blank_icon.gif";
255 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
256 markHeadline(active_post_id);
258 var neighbor_ids = getRelativePostIds(active_post_id);
260 /* only request uncached articles */
262 var cids_to_request = Array();
264 for (var i = 0; i < neighbor_ids.length; i++) {
265 if (!cache_check(neighbor_ids[i])) {
266 cids_to_request.push(neighbor_ids[i]);
270 debug("additional ids: " + cids_to_request.toString());
272 /* additional info for piggyback counters */
274 if (tagsAreDisplayed()) {
275 query = query + "&omode=lt";
277 query = query + "&omode=flc";
280 var date = new Date();
281 var timestamp = Math.round(date.getTime() / 1000);
282 query = query + "&ts=" + timestamp;
284 query = query + "&cids=" + cids_to_request.toString();
286 if (!cached_article) {
288 notify_progress("Loading, please wait...");
292 xmlhttp.open("GET", query, true);
293 xmlhttp.onreadystatechange=article_callback;
295 } else if (cached_article && article_is_unread) {
297 query = query + "&mode=prefetch";
301 xmlhttp.open("GET", query, true);
302 xmlhttp.onreadystatechange=article_callback;
305 render_article(cached_article);
307 } else if (cached_article) {
309 query = query + "&mode=prefetch_old";
313 xmlhttp.open("GET", query, true);
314 xmlhttp.onreadystatechange=article_callback;
317 render_article(cached_article);
324 debug("xmlhttp busy (@view)");
329 exception_error("view", e);
334 return toggleMark(id);
338 return togglePub(id);
341 function tMark_afh_off(effect) {
343 var elem = effect.effects[0].element;
345 debug("tMark_afh_off : " + elem.id);
348 elem.src = "images/mark_unset.png";
349 elem.alt = "Set mark";
354 exception_error("tMark_afh_off", e);
358 function tPub_afh_off(effect) {
360 var elem = effect.effects[0].element;
362 debug("tPub_afh_off : " + elem.id);
365 elem.src = "images/pub_unset.png";
366 elem.alt = "Publish";
371 exception_error("tPub_afh_off", e);
375 function toggleMark(id) {
377 if (!xmlhttp_ready(xmlhttp_rpc)) {
382 var query = "backend.php?op=rpc&id=" + id + "&subop=mark";
384 query = query + "&afid=" + getActiveFeedId();
386 if (tagsAreDisplayed()) {
387 query = query + "&omode=tl";
389 query = query + "&omode=flc";
392 var mark_img = document.getElementById("FMPIC-" + id);
393 var vfeedu = document.getElementById("FEEDU--1");
394 var crow = document.getElementById("RROW-" + id);
396 if (mark_img.alt != "Reset mark") {
397 mark_img.src = "images/mark_set.png";
398 mark_img.alt = "Reset mark";
399 query = query + "&mark=1";
401 if (vfeedu && crow.className.match("Unread")) {
402 vfeedu.innerHTML = (+vfeedu.innerHTML) + 1;
406 //mark_img.src = "images/mark_unset.png";
407 mark_img.alt = "Please wait...";
408 query = query + "&mark=0";
410 if (vfeedu && crow.className.match("Unread")) {
411 vfeedu.innerHTML = (+vfeedu.innerHTML) - 1;
414 if (document.getElementById("headlinesList")) {
415 Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
417 mark_img.src = "images/mark_unset.png";
418 mark_img.alt = "Set mark";
422 var vfeedctr = document.getElementById("FEEDCTR--1");
423 var vfeedr = document.getElementById("FEEDR--1");
425 if (vfeedu && vfeedctr) {
426 if ((+vfeedu.innerHTML) > 0) {
427 if (crow.className.match("Unread") && !vfeedr.className.match("Unread")) {
428 vfeedr.className = vfeedr.className + "Unread";
429 vfeedctr.className = "odd";
432 vfeedctr.className = "invisible";
433 vfeedr.className = vfeedr.className.replace("Unread", "");
437 debug("toggle starred for aid " + id);
439 new Ajax.Request(query);
443 function togglePub(id) {
447 if (!xmlhttp_ready(xmlhttp_rpc)) {
452 var query = "backend.php?op=rpc&id=" + id + "&subop=publ";
454 query = query + "&afid=" + getActiveFeedId();
456 if (tagsAreDisplayed()) {
457 query = query + "&omode=tl";
459 query = query + "&omode=flc";
462 var mark_img = document.getElementById("FPPIC-" + id);
463 var vfeedu = document.getElementById("FEEDU--2");
464 var crow = document.getElementById("RROW-" + id);
466 if (mark_img.alt != "Unpublish") {
467 mark_img.src = "images/pub_set.png";
468 mark_img.alt = "Unpublish";
469 query = query + "&pub=1";
471 if (vfeedu && crow.className.match("Unread")) {
472 vfeedu.innerHTML = (+vfeedu.innerHTML) + 1;
476 //mark_img.src = "images/pub_unset.png";
477 mark_img.alt = "Please wait...";
478 query = query + "&pub=0";
480 if (vfeedu && crow.className.match("Unread")) {
481 vfeedu.innerHTML = (+vfeedu.innerHTML) - 1;
484 if (document.getElementById("headlinesList")) {
485 Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
487 mark_img.src = "images/pub_unset.png";
488 mark_img.alt = "Publish";
492 var vfeedctr = document.getElementById("FEEDCTR--2");
493 var vfeedr = document.getElementById("FEEDR--2");
495 if (vfeedu && vfeedctr) {
496 if ((+vfeedu.innerHTML) > 0) {
497 if (crow.className.match("Unread") && !vfeedr.className.match("Unread")) {
498 vfeedr.className = vfeedr.className + "Unread";
499 vfeedctr.className = "odd";
502 vfeedctr.className = "invisible";
503 vfeedr.className = vfeedr.className.replace("Unread", "");
507 debug("toggle published for aid " + id);
509 new Ajax.Request(query);
512 exception_error("togglePub", e);
516 function correctHeadlinesOffset(id) {
520 var hlist = document.getElementById("headlinesList");
521 var container = document.getElementById("headlinesInnerContainer");
522 var row = document.getElementById("RROW-" + id);
524 var viewport = container.offsetHeight;
526 var rel_offset_top = row.offsetTop - container.scrollTop;
527 var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
529 debug("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
530 debug("Vport: " + viewport);
532 if (rel_offset_top <= 0 || rel_offset_top > viewport) {
533 container.scrollTop = row.offsetTop;
534 } else if (rel_offset_bottom > viewport) {
536 /* doesn't properly work with Opera in some cases because
537 Opera fucks up element scrolling */
539 container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
543 exception_error("correctHeadlinesOffset", e);
548 function moveToPost(mode) {
550 // check for combined mode
551 if (!document.getElementById("headlinesList"))
554 var rows = getVisibleHeadlineIds();
559 if (!document.getElementById('RROW-' + active_post_id)) {
560 active_post_id = false;
563 if (active_post_id == false) {
564 next_id = getFirstVisibleHeadlineId();
565 prev_id = getLastVisibleHeadlineId();
567 for (var i = 0; i < rows.length; i++) {
568 if (rows[i] == active_post_id) {
575 if (mode == "next") {
577 correctHeadlinesOffset(next_id);
578 view(next_id, getActiveFeedId());
582 if (mode == "prev") {
584 correctHeadlinesOffset(prev_id);
585 view(prev_id, getActiveFeedId());
590 function toggleUnread(id, cmode) {
592 if (!xmlhttp_ready(xmlhttp_rpc)) {
597 var row = document.getElementById("RROW-" + id);
599 var nc = row.className;
600 nc = nc.replace("Unread", "");
601 nc = nc.replace("Selected", "");
603 if (row.className.match("Unread")) {
606 row.className = nc + "Unread";
609 if (!cmode) cmode = 2;
611 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
612 param_escape(id) + "&cmode=" + param_escape(cmode);
614 notify_progress("Loading, please wait...");
616 xmlhttp_rpc.open("GET", query, true);
617 xmlhttp_rpc.onreadystatechange=all_counters_callback;
618 xmlhttp_rpc.send(null);
624 exception_error("toggleUnread", e);
628 function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
630 if (!xmlhttp_ready(xmlhttp_rpc)) {
638 rows = cdmGetSelectedArticles();
640 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
643 if (rows.length == 0 && !no_error) {
644 alert(__("No articles are selected."));
648 for (i = 0; i < rows.length; i++) {
649 var row = document.getElementById("RROW-" + rows[i]);
651 var nc = row.className;
652 nc = nc.replace("Unread", "");
653 nc = nc.replace("Selected", "");
655 if (set_state == undefined) {
656 if (row.className.match("Unread")) {
657 row.className = nc + "Selected";
659 row.className = nc + "UnreadSelected";
663 if (set_state == false) {
664 row.className = nc + "Selected";
667 if (set_state == true) {
668 row.className = nc + "UnreadSelected";
673 if (rows.length > 0) {
677 if (set_state == undefined) {
679 } else if (set_state == true) {
681 } else if (set_state == false) {
685 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
686 param_escape(rows.toString()) + "&cmode=" + cmode;
688 _catchup_callback_func = callback_func;
690 notify_progress("Loading, please wait...");
692 xmlhttp_rpc.open("GET", query, true);
693 xmlhttp_rpc.onreadystatechange=catchup_callback;
694 xmlhttp_rpc.send(null);
699 exception_error("selectionToggleUnread", e);
703 function selectionToggleMarked(cdm_mode) {
705 if (!xmlhttp_ready(xmlhttp_rpc)) {
713 rows = cdmGetSelectedArticles();
715 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
718 if (rows.length == 0) {
719 alert(__("No articles are selected."));
723 for (i = 0; i < rows.length; i++) {
724 var row = document.getElementById("RROW-" + rows[i]);
725 var mark_img = document.getElementById("FMPIC-" + rows[i]);
727 if (row && mark_img) {
729 if (mark_img.alt == "Set mark") {
730 mark_img.src = "images/mark_set.png";
731 mark_img.alt = "Reset mark";
732 //mark_img.setAttribute('onclick',
733 // 'javascript:toggleMark('+rows[i]+', false)');
736 mark_img.src = "images/mark_unset.png";
737 mark_img.alt = "Set mark";
739 //mark_img.alt = "Please wait...";
741 //mark_img.setAttribute('onclick',
742 // 'javascript:toggleMark('+rows[i]+', true)');
744 //Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
750 if (rows.length > 0) {
752 var query = "backend.php?op=rpc&subop=markSelected&ids=" +
753 param_escape(rows.toString()) + "&cmode=2";
755 query = query + "&afid=" + getActiveFeedId();
757 if (tagsAreDisplayed()) {
758 query = query + "&omode=tl";
760 query = query + "&omode=flc";
763 xmlhttp_rpc.open("GET", query, true);
764 xmlhttp_rpc.onreadystatechange=all_counters_callback;
765 xmlhttp_rpc.send(null);
770 exception_error("selectionToggleMarked", e);
774 function selectionTogglePublished(cdm_mode) {
776 if (!xmlhttp_ready(xmlhttp_rpc)) {
784 rows = cdmGetSelectedArticles();
786 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
789 if (rows.length == 0) {
790 alert(__("No articles are selected."));
794 for (i = 0; i < rows.length; i++) {
795 var row = document.getElementById("RROW-" + rows[i]);
796 var mark_img = document.getElementById("FPPIC-" + rows[i]);
798 if (row && mark_img) {
800 if (mark_img.alt == "Publish") {
801 mark_img.src = "images/pub_set.png";
802 mark_img.alt = "Unpublish";
803 // mark_img.setAttribute('onclick',
804 // 'javascript:togglePub('+rows[i]+', false)');
807 mark_img.src = "images/pub_unset.png";
808 mark_img.alt = "Publish";
809 // mark_img.setAttribute('onclick',
810 // 'javascript:togglePub('+rows[i]+', true)');
812 // Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
818 if (rows.length > 0) {
820 var query = "backend.php?op=rpc&subop=publishSelected&ids=" +
821 param_escape(rows.toString()) + "&cmode=2";
823 query = query + "&afid=" + getActiveFeedId();
825 if (tagsAreDisplayed()) {
826 query = query + "&omode=tl";
828 query = query + "&omode=flc";
831 xmlhttp_rpc.open("GET", query, true);
832 xmlhttp_rpc.onreadystatechange=all_counters_callback;
833 xmlhttp_rpc.send(null);
838 exception_error("selectionToggleMarked", e);
842 function cdmGetSelectedArticles() {
843 var sel_articles = new Array();
844 var container = document.getElementById("headlinesInnerContainer");
846 for (i = 0; i < container.childNodes.length; i++) {
847 var child = container.childNodes[i];
849 if (child.id.match("RROW-") && child.className.match("Selected")) {
850 var c_id = child.id.replace("RROW-", "");
851 sel_articles.push(c_id);
858 // mode = all,none,unread
859 function cdmSelectArticles(mode) {
860 var container = document.getElementById("headlinesInnerContainer");
862 for (i = 0; i < container.childNodes.length; i++) {
863 var child = container.childNodes[i];
865 if (child.id.match("RROW-")) {
866 var aid = child.id.replace("RROW-", "");
868 var cb = document.getElementById("RCHK-" + aid);
871 if (!child.className.match("Selected")) {
872 child.className = child.className + "Selected";
875 } else if (mode == "unread") {
876 if (child.className.match("Unread") && !child.className.match("Selected")) {
877 child.className = child.className + "Selected";
881 child.className = child.className.replace("Selected", "");
888 function catchupPage() {
890 var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
892 var str = __("Mark all visible articles in %s as read?");
894 str = str.replace("%s", fn);
896 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
900 if (document.getElementById("headlinesList")) {
901 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
902 selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
903 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
905 cdmSelectArticles('all');
906 selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
907 cdmSelectArticles('none');
911 function catchupSelection() {
917 if (document.getElementById("headlinesList")) {
918 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
920 rows = cdmGetSelectedArticles();
923 if (rows.length == 0) {
924 alert(__("No articles are selected."));
929 var fn = getFeedName(getActiveFeedId(), active_feed_is_cat);
931 var str = __("Mark all selected articles in %s as read?");
933 str = str.replace("%s", fn);
935 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
939 if (document.getElementById("headlinesList")) {
940 selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
941 // selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
943 selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
944 // cdmSelectArticles('none');
948 exception_error("catchupSelection", e);
953 function labelFromSearch(search, search_mode, match_on, feed_id, is_cat) {
955 if (!xmlhttp_ready(xmlhttp_rpc)) {
959 var title = prompt(__("Please enter label title:"), "");
963 var query = "backend.php?op=labelFromSearch&search=" + param_escape(search) +
964 "&smode=" + param_escape(search_mode) + "&match=" + param_escape(match_on) +
965 "&feed=" + param_escape(feed_id) + "&is_cat=" + param_escape(is_cat) +
966 "&title=" + param_escape(title);
968 debug("LFS: " + query);
970 xmlhttp_rpc.open("GET", query, true);
971 xmlhttp_rpc.onreadystatechange=dlg_frefresh_callback;
972 xmlhttp_rpc.send(null);
977 function editArticleTags(id, feed_id, cdm_enabled) {
978 _tag_active_post_id = id;
979 _tag_active_feed_id = feed_id;
980 _tag_active_cdm = cdm_enabled;
982 cache_invalidate(id);
985 _tag_cdm_scroll = document.getElementById("headlinesInnerContainer").scrollTop;
987 displayDlg('editArticleTags', id);
991 function tag_saved_callback() {
992 if (xmlhttp_rpc.readyState == 4) {
994 debug("in tag_saved_callback");
999 if (tagsAreDisplayed()) {
1000 _reload_feedlist_after_view = true;
1003 if (!_tag_active_cdm) {
1004 if (active_post_id == _tag_active_post_id) {
1005 debug("reloading current article");
1006 view(_tag_active_post_id, _tag_active_feed_id);
1009 debug("reloading current feed");
1014 exception_error("catchup_callback", e);
1019 function editTagsSave() {
1021 if (!xmlhttp_ready(xmlhttp_rpc)) {
1022 printLockingError();
1025 notify_progress("Saving article tags...");
1027 var form = document.forms["tag_edit_form"];
1029 var query = Form.serialize("tag_edit_form");
1031 query = "backend.php?op=rpc&subop=setArticleTags&" + query;
1035 xmlhttp_rpc.open("GET", query, true);
1036 xmlhttp_rpc.onreadystatechange=tag_saved_callback;
1037 xmlhttp_rpc.send(null);
1041 function editTagsInsert() {
1044 var form = document.forms["tag_edit_form"];
1046 var found_tags = form.found_tags;
1047 var tags_str = form.tags_str;
1049 var tag = found_tags[found_tags.selectedIndex].value;
1051 if (tags_str.value.length > 0 &&
1052 tags_str.value.lastIndexOf(", ") != tags_str.value.length - 2) {
1054 tags_str.value = tags_str.value + ", ";
1057 tags_str.value = tags_str.value + tag + ", ";
1059 found_tags.selectedIndex = 0;
1062 exception_error(e, "editTagsInsert");
1066 function cdmWatchdog() {
1070 var ctr = document.getElementById("headlinesInnerContainer");
1074 var ids = new Array();
1076 var e = ctr.firstChild;
1079 if (e.className && e.className == "cdmArticleUnread" && e.id &&
1080 e.id.match("RROW-")) {
1082 // article fits in viewport OR article is longer than viewport and
1083 // its bottom is visible
1085 if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
1086 ctr.scrollTop + ctr.offsetHeight) {
1088 // debug(e.id + " is visible " + e.offsetTop + "." +
1089 // (e.offsetTop + e.offsetHeight) + " vs " + ctr.scrollTop + "." +
1090 // (ctr.scrollTop + ctr.offsetHeight));
1092 ids.push(e.id.replace("RROW-", ""));
1094 } else if (e.offsetHeight > ctr.offsetHeight &&
1095 e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1096 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
1098 ids.push(e.id.replace("RROW-", ""));
1102 // method 2: article bottom is visible and is in upper 1/2 of the viewport
1104 /* if (e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1105 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight/2) {
1107 ids.push(e.id.replace("RROW-", ""));
1116 debug("cdmWatchdog, ids= " + ids.toString());
1118 if (ids.length > 0 && xmlhttp_ready(xmlhttp_rpc)) {
1120 for (var i = 0; i < ids.length; i++) {
1121 var e = document.getElementById("RROW-" + ids[i]);
1123 e.className = e.className.replace("Unread", "");
1127 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
1128 param_escape(ids.toString()) + "&cmode=0";
1130 xmlhttp_rpc.open("GET", query, true);
1131 xmlhttp_rpc.onreadystatechange=all_counters_callback;
1132 xmlhttp_rpc.send(null);
1136 _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 4000);
1139 exception_error(e, "cdmWatchdog");
1145 function cache_inject(id, article) {
1146 if (!cache_check(id)) {
1147 debug("cache_article: miss: " + id);
1149 var cache_obj = new Array();
1151 cache_obj["id"] = id;
1152 cache_obj["data"] = article;
1154 article_cache.push(cache_obj);
1157 debug("cache_article: hit: " + id);
1161 function cache_find(id) {
1162 for (var i = 0; i < article_cache.length; i++) {
1163 if (article_cache[i]["id"] == id) {
1164 return article_cache[i]["data"];
1170 function cache_check(id) {
1171 for (var i = 0; i < article_cache.length; i++) {
1172 if (article_cache[i]["id"] == id) {
1179 function cache_expire() {
1180 while (article_cache.length > 20) {
1181 article_cache.shift();
1185 function cache_invalidate(id) {
1190 while (i < article_cache.length) {
1191 if (article_cache[i]["id"] == id) {
1192 debug("cache_invalidate: removed id " + id);
1193 article_cache.splice(i, 1);
1198 debug("cache_invalidate: id not found: " + id);
1201 exception_error("cache_invalidate", e);
1205 function getActiveArticleId() {
1206 return active_post_id;
1209 function cdmMouseIn(elem) {
1211 if (elem.id && elem.id.match("RROW-")) {
1212 var id = elem.id.replace("RROW-", "");
1213 active_post_id = id;
1216 exception_error("cdmMouseIn", e);
1221 function cdmMouseOut(elem) {
1222 active_post_id = false;
1225 function headlines_scroll_handler() {
1228 var e = document.getElementById("headlinesInnerContainer");
1230 if (e.scrollTop + e.offsetHeight > e.scrollHeight - 300) {
1231 debug("more cowbell!");
1237 exception_error("headlines_scroll_handler", e);