]> git.wh0rd.org - tt-rss.git/blob - viewfeed.js
schema fixes
[tt-rss.git] / viewfeed.js
1 var active_post_id = false;
2 var last_article_view = false;
3 var active_real_feed_id = false;
4
5 var _tag_active_post_id = false;
6 var _tag_active_feed_id = false;
7 var _tag_active_cdm = false;
8
9 // FIXME: kludge, to restore scrollTop after tag editor terminates
10 var _tag_cdm_scroll = false;
11
12 // FIXME: kludges, needs proper implementation
13 var _reload_feedlist_after_view = false;
14
15 var _cdm_wd_timeout = false;
16 var _cdm_wd_vishist = new Array();
17
18 var article_cache = new Array();
19
20 var vgroup_last_feed = false;
21 var post_under_pointer = false;
22
23 var last_requested_article = false;
24
25 function catchup_callback() {
26 if (xmlhttp_rpc.readyState == 4) {
27 try {
28 debug("catchup_callback");
29 notify("");
30 all_counters_callback2(xmlhttp_rpc);
31 if (_catchup_callback_func) {
32 setTimeout(_catchup_callback_func, 10);
33 }
34 } catch (e) {
35 exception_error("catchup_callback", e);
36 }
37 }
38 }
39
40 function catchup_callback2(transport, callback) {
41 try {
42 debug("catchup_callback2 " + transport + ", " + callback);
43 notify("");
44 all_counters_callback2(transport);
45 if (callback) {
46 setTimeout(callback, 10);
47 }
48 } catch (e) {
49 exception_error("catchup_callback2", e);
50 }
51 }
52
53 function clean_feed_selections() {
54 try {
55 var feeds = document.getElementById("feedList").getElementsByTagName("LI");
56
57 for (var i = 0; i < feeds.length; i++) {
58 if (feeds[i].id && feeds[i].id.match("FEEDR-")) {
59 feeds[i].className = feeds[i].className.replace("Selected", "");
60 }
61 if (feeds[i].id && feeds[i].id.match("FCAT-")) {
62 feeds[i].className = feeds[i].className.replace("Selected", "");
63 }
64 }
65 } catch (e) {
66 exception_error("clean_feed_selections", e);
67 }
68 }
69
70 function headlines_callback2(transport, feed_cur_page) {
71 try {
72
73 loading_set_progress(100);
74
75 debug("headlines_callback2 [page=" + feed_cur_page + "]");
76
77 clean_feed_selections();
78
79 var is_cat = false;
80 var feed_id = false;
81
82 if (transport.responseXML) {
83 var headlines = transport.responseXML.getElementsByTagName("headlines")[0];
84 if (headlines) {
85 is_cat = headlines.getAttribute("is_cat");
86 feed_id = headlines.getAttribute("id");
87 setActiveFeedId(feed_id, is_cat);
88 }
89 }
90
91 if (!is_cat) {
92 var feedr = document.getElementById("FEEDR-" + feed_id);
93 if (feedr && !feedr.className.match("Selected")) {
94 feedr.className = feedr.className + "Selected";
95 }
96 } else {
97 var feedr = document.getElementById("FCAT-" + feed_id);
98 if (feedr && !feedr.className.match("Selected")) {
99 feedr.className = feedr.className + "Selected";
100 }
101 }
102
103 var f = document.getElementById("headlines-frame");
104 try {
105 if (feed_cur_page == 0) {
106 debug("resetting headlines scrollTop");
107 f.scrollTop = 0;
108 }
109 } catch (e) { };
110
111 if (transport.responseXML) {
112 var headlines = transport.responseXML.getElementsByTagName("headlines")[0];
113 var headlines_count_obj = transport.responseXML.getElementsByTagName("headlines-count")[0];
114 var headlines_unread_obj = transport.responseXML.getElementsByTagName("headlines-unread")[0];
115 var disable_cache_obj = transport.responseXML.getElementsByTagName("disable-cache")[0];
116
117 var vgroup_last_feed_obj = transport.responseXML.getElementsByTagName("vgroup-last-feed")[0];
118
119 var headlines_count = headlines_count_obj.getAttribute("value");
120 var headlines_unread = headlines_unread_obj.getAttribute("value");
121 var disable_cache = disable_cache_obj.getAttribute("value") != "0";
122
123 vgroup_last_feed = vgroup_last_feed_obj.getAttribute("value");
124
125 if (headlines_count == 0) {
126 _infscroll_disable = 1;
127 } else {
128 _infscroll_disable = 0;
129 }
130
131 var counters = transport.responseXML.getElementsByTagName("counters")[0];
132 var articles = transport.responseXML.getElementsByTagName("article");
133 var runtime_info = transport.responseXML.getElementsByTagName("runtime-info");
134
135 if (feed_cur_page == 0) {
136 if (headlines) {
137 f.innerHTML = headlines.firstChild.nodeValue;
138
139 var cache_prefix = "";
140
141 if (is_cat) {
142 cache_prefix = "C:";
143 } else {
144 cache_prefix = "F:";
145 }
146
147 cache_invalidate(cache_prefix + feed_id);
148
149 if (!disable_cache) {
150 cache_inject(cache_prefix + feed_id,
151 headlines.firstChild.nodeValue, headlines_unread);
152 }
153
154 } else {
155 debug("headlines_callback: returned no data");
156 f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML data)') + "</div>";
157
158 }
159 } else {
160 if (headlines) {
161 if (headlines_count > 0) {
162 debug("adding some more headlines...");
163
164 var c = document.getElementById("headlinesList");
165
166 if (!c) {
167 c = document.getElementById("headlinesInnerContainer");
168 }
169
170 var ids = getSelectedArticleIds2();
171
172 c.innerHTML = c.innerHTML + headlines.firstChild.nodeValue;
173
174 debug("restore selected ids: " + ids);
175
176 for (var i = 0; i < ids.length; i++) {
177 markHeadline(ids[i]);
178 }
179
180 subtoolbarSearch();
181
182 } else {
183 debug("no new headlines received");
184 }
185 } else {
186 debug("headlines_callback: returned no data");
187 notify_error("Error while trying to load more headlines");
188 }
189
190 }
191
192 if (articles) {
193 for (var i = 0; i < articles.length; i++) {
194 var a_id = articles[i].getAttribute("id");
195 debug("found id: " + a_id);
196 cache_inject(a_id, articles[i].firstChild.nodeValue);
197 }
198 } else {
199 debug("no cached articles received");
200 }
201
202 if (counters) {
203 debug("parsing piggybacked counters: " + counters);
204 parse_counters(counters, false);
205 } else {
206 debug("counters container not found in reply, requesting...");
207 request_counters();
208 }
209
210 if (runtime_info) {
211 debug("parsing runtime info: " + runtime_info[0]);
212 parse_runtime_info(runtime_info[0]);
213 } else {
214 debug("counters container not found in reply");
215 }
216
217 } else {
218 debug("headlines_callback: returned no XML object");
219 f.innerHTML = "<div class='whiteBox'>" + __('Could not update headlines (missing XML object)') + "</div>";
220 }
221
222 if (typeof correctPNG != 'undefined') {
223 correctPNG();
224 }
225
226 if (_cdm_wd_timeout) window.clearTimeout(_cdm_wd_timeout);
227
228 if (!document.getElementById("headlinesList") &&
229 getActiveFeedId() != -3 &&
230 getInitParam("cdm_auto_catchup") == 1) {
231 debug("starting CDM watchdog");
232 _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 5000);
233 _cdm_wd_vishist = new Array();
234 } else {
235 debug("not in CDM mode or watchdog disabled");
236 }
237
238 if (_tag_cdm_scroll) {
239 try {
240 document.getElementById("headlinesInnerContainer").scrollTop = _tag_cdm_scroll;
241 _tag_cdm_scroll = false;
242 debug("resetting headlinesInner scrollTop");
243
244 } catch (e) { }
245 }
246
247 _feed_cur_page = feed_cur_page;
248 _infscroll_request_sent = 0;
249
250 notify("");
251
252 remove_splash();
253
254 } catch (e) {
255 exception_error("headlines_callback2", e);
256 }
257 }
258
259 function render_article(article) {
260 try {
261 var f = document.getElementById("content-frame");
262 try {
263 f.scrollTop = 0;
264 } catch (e) { };
265
266 var fi = document.getElementById("content-insert");
267
268 try {
269 fi.scrollTop = 0;
270 } catch (e) { };
271
272 fi.innerHTML = article;
273
274 } catch (e) {
275 exception_error("render_article", e);
276 }
277 }
278
279 function showArticleInHeadlines(id) {
280
281 try {
282
283 cleanSelected("headlinesList");
284
285 var crow = document.getElementById("RROW-" + id);
286
287 if (!crow) return;
288
289 var article_is_unread = crow.className.match("Unread");
290
291 crow.className = crow.className.replace("Unread", "");
292
293 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
294
295 var upd_img_pic = document.getElementById("FUPDPIC-" + id);
296
297 var cache_prefix = "";
298
299 if (activeFeedIsCat()) {
300 cache_prefix = "C:";
301 } else {
302 cache_prefix = "F:";
303 }
304
305 var view_mode = false;
306
307 try {
308 view_mode = document.forms['main_toolbar_form'].view_mode;
309 view_mode = view_mode[view_mode.selectedIndex].value;
310 } catch (e) {
311 exception_error("showArticleInHeadlines/viewmode", e, true);
312 }
313
314 if (upd_img_pic && upd_img_pic.src.match("updated.png")) {
315 upd_img_pic.src = "images/blank_icon.gif";
316
317 cache_invalidate(cache_prefix + getActiveFeedId());
318
319 cache_inject(cache_prefix + getActiveFeedId(),
320 document.getElementById("headlines-frame").innerHTML,
321 get_feed_unread(getActiveFeedId()));
322
323 } else if (article_is_unread && view_mode == "all_articles") {
324
325 cache_invalidate(cache_prefix + getActiveFeedId());
326
327 cache_inject(cache_prefix + getActiveFeedId(),
328 document.getElementById("headlines-frame").innerHTML,
329 get_feed_unread(getActiveFeedId())-1);
330
331 } else if (article_is_unread) {
332 cache_invalidate(cache_prefix + getActiveFeedId());
333 }
334
335 markHeadline(id);
336
337 } catch (e) {
338 exception_error("showArticleInHeadlines", e);
339 }
340 }
341
342 function article_callback2(transport, id, feed_id) {
343 try {
344 debug("article_callback2 " + id);
345
346 if (transport.responseXML) {
347
348 debug("looking for articles to cache...");
349
350 var articles = transport.responseXML.getElementsByTagName("article");
351
352 for (var i = 0; i < articles.length; i++) {
353 var a_id = articles[i].getAttribute("id");
354
355 debug("found id: " + a_id);
356
357 if (a_id == active_post_id) {
358 debug("active article, rendering...");
359 render_article(articles[i].firstChild.nodeValue);
360 }
361
362 cache_inject(a_id, articles[i].firstChild.nodeValue);
363 }
364
365 if (id != last_requested_article) {
366 debug("requested article id is out of sequence, aborting");
367 return;
368 }
369
370 active_real_feed_id = feed_id;
371 active_post_id = id;
372
373 showArticleInHeadlines(id);
374
375 var reply = transport.responseXML.firstChild.firstChild;
376
377 } else {
378 debug("article_callback: returned no XML object");
379 //var f = document.getElementById("content-frame");
380 //f.innerHTML = "<div class='whiteBox'>" + __('Could not display article (missing XML object)') + "</div>";
381 }
382
383 var date = new Date();
384 last_article_view = date.getTime() / 1000;
385
386 if (typeof correctPNG != 'undefined') {
387 correctPNG();
388 }
389
390 if (_reload_feedlist_after_view) {
391 setTimeout('updateFeedList(false, false)', 50);
392 _reload_feedlist_after_view = false;
393 } else {
394 var counters = transport.responseXML.getElementsByTagName("counters")[0];
395
396 if (counters) {
397 debug("parsing piggybacked counters: " + counters);
398 parse_counters(counters, false);
399 } else {
400 debug("counters container not found in reply, requesting...");
401 request_counters();
402 }
403 }
404
405 notify("");
406 } catch (e) {
407 exception_error("article_callback2", e);
408 }
409 }
410
411 function view(id, feed_id, skip_history) {
412
413 try {
414 debug("loading article: " + id + "/" + feed_id);
415
416 var cached_article = cache_find(id);
417
418 debug("cache check result: " + (cached_article != false));
419
420 enableHotkeys();
421
422 //setActiveFeedId(feed_id);
423
424 var query = "backend.php?op=view&id=" + param_escape(id) +
425 "&feed=" + param_escape(feed_id);
426
427 var date = new Date();
428
429 var neighbor_ids = getRelativePostIds(active_post_id);
430
431 /* only request uncached articles */
432
433 var cids_to_request = Array();
434
435 for (var i = 0; i < neighbor_ids.length; i++) {
436 if (!cache_check(neighbor_ids[i])) {
437 cids_to_request.push(neighbor_ids[i]);
438 }
439 }
440
441 debug("additional ids: " + cids_to_request.toString());
442
443 /* additional info for piggyback counters */
444
445 if (tagsAreDisplayed()) {
446 query = query + "&omode=lt";
447 } else {
448 query = query + "&omode=flc";
449 }
450
451 var date = new Date();
452 var timestamp = Math.round(date.getTime() / 1000);
453 query = query + "&ts=" + timestamp;
454
455 query = query + "&cids=" + cids_to_request.toString();
456
457 var crow = document.getElementById("RROW-" + id);
458 var article_is_unread = crow.className.match("Unread");
459
460 if (!async_counters_work) {
461 query = query + "&csync=true";
462 }
463
464 showArticleInHeadlines(id);
465
466 if (!cached_article) {
467
468 notify_progress("Loading, please wait...", true);
469
470 } else if (cached_article && article_is_unread) {
471
472 query = query + "&mode=prefetch";
473
474 render_article(cached_article);
475
476 } else if (cached_article) {
477
478 query = query + "&mode=prefetch_old";
479 render_article(cached_article);
480
481 }
482
483 cache_expire();
484
485 last_requested_article = id;
486
487 new Ajax.Request(query, {
488 onComplete: function(transport) {
489 article_callback2(transport, id, feed_id);
490 } });
491
492 return false;
493
494 } catch (e) {
495 exception_error("view", e);
496 }
497 }
498
499 function tMark(id) {
500 return toggleMark(id);
501 }
502
503 function tPub(id) {
504 return togglePub(id);
505 }
506
507 function tMark_afh_off(effect) {
508 try {
509 var elem = effect.effects[0].element;
510
511 debug("tMark_afh_off : " + elem.id);
512
513 if (elem) {
514 elem.src = elem.src.replace("mark_set", "mark_unset");
515 elem.alt = __("Star article");
516 Element.show(elem);
517 }
518
519 } catch (e) {
520 exception_error("tMark_afh_off", e);
521 }
522 }
523
524 function tPub_afh_off(effect) {
525 try {
526 var elem = effect.effects[0].element;
527
528 debug("tPub_afh_off : " + elem.id);
529
530 if (elem) {
531 elem.src = elem.src.replace("pub_set", "pub_unset");
532 elem.alt = __("Publish article");
533 Element.show(elem);
534 }
535
536 } catch (e) {
537 exception_error("tPub_afh_off", e);
538 }
539 }
540
541 function toggleMark(id, client_only, no_effects) {
542
543 try {
544
545 var query = "backend.php?op=rpc&id=" + id + "&subop=mark";
546
547 query = query + "&afid=" + getActiveFeedId();
548
549 if (tagsAreDisplayed()) {
550 query = query + "&omode=tl";
551 } else {
552 query = query + "&omode=flc";
553 }
554
555 var mark_img = document.getElementById("FMPIC-" + id);
556 var vfeedu = document.getElementById("FEEDU--1");
557 var crow = document.getElementById("RROW-" + id);
558
559 if (mark_img.src.match("mark_unset")) {
560 mark_img.src = mark_img.src.replace("mark_unset", "mark_set");
561 mark_img.alt = __("Unstar article");
562 query = query + "&mark=1";
563
564 } else {
565 //mark_img.src = "images/mark_unset.png";
566 mark_img.alt = __("Please wait...");
567 query = query + "&mark=0";
568
569 if (document.getElementById("headlinesList") && !no_effects) {
570 Effect.Puff(mark_img, {duration : 0.25, afterFinish: tMark_afh_off});
571 } else {
572 mark_img.src = mark_img.src.replace("mark_set", "mark_unset");
573 mark_img.alt = __("Star article");
574 }
575 }
576
577 if (!client_only) {
578 debug(query);
579
580 new Ajax.Request(query, {
581 onComplete: function(transport) {
582 all_counters_callback2(transport);
583 } });
584
585 }
586
587 } catch (e) {
588 exception_error("toggleMark", e);
589 }
590 }
591
592 function togglePub(id, client_only, no_effects) {
593
594 try {
595
596 var query = "backend.php?op=rpc&id=" + id + "&subop=publ";
597
598 query = query + "&afid=" + getActiveFeedId();
599
600 if (tagsAreDisplayed()) {
601 query = query + "&omode=tl";
602 } else {
603 query = query + "&omode=flc";
604 }
605
606 var mark_img = document.getElementById("FPPIC-" + id);
607 var vfeedu = document.getElementById("FEEDU--2");
608 var crow = document.getElementById("RROW-" + id);
609
610 if (mark_img.src.match("pub_unset")) {
611 mark_img.src = mark_img.src.replace("pub_unset", "pub_set");
612 mark_img.alt = __("Unpublish article");
613 query = query + "&pub=1";
614
615
616 } else {
617 //mark_img.src = "images/pub_unset.png";
618 mark_img.alt = __("Please wait...");
619 query = query + "&pub=0";
620
621 if (document.getElementById("headlinesList") && !no_effects) {
622 Effect.Puff(mark_img, {duration : 0.25, afterFinish: tPub_afh_off});
623 } else {
624 mark_img.src = mark_img.src.replace("pub_set", "pub_unset");
625 mark_img.alt = __("Publish article");
626 }
627 }
628
629 if (!client_only) {
630 new Ajax.Request(query, {
631 onComplete: function(transport) {
632 all_counters_callback2(transport);
633 } });
634 }
635
636 } catch (e) {
637
638 exception_error("togglePub", e);
639 }
640 }
641
642 function correctHeadlinesOffset(id) {
643
644 try {
645
646 var hlist = document.getElementById("headlinesList");
647 var container = document.getElementById("headlinesInnerContainer");
648 var row = document.getElementById("RROW-" + id);
649
650 var viewport = container.offsetHeight;
651
652 var rel_offset_top = row.offsetTop - container.scrollTop;
653 var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
654
655 debug("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
656 debug("Vport: " + viewport);
657
658 if (rel_offset_top <= 0 || rel_offset_top > viewport) {
659 container.scrollTop = row.offsetTop;
660 } else if (rel_offset_bottom > viewport) {
661
662 /* doesn't properly work with Opera in some cases because
663 Opera fucks up element scrolling */
664
665 container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
666 }
667
668 } catch (e) {
669 exception_error("correctHeadlinesOffset", e);
670 }
671
672 }
673
674 function moveToPost(mode) {
675
676 try {
677
678 var rows;
679
680 if (isCdmMode()) {
681 rows = cdmGetVisibleArticles();
682 } else {
683 rows = getVisibleHeadlineIds();
684 }
685
686 var prev_id = false;
687 var next_id = false;
688
689 if (!document.getElementById('RROW-' + active_post_id)) {
690 active_post_id = false;
691 }
692
693 if (active_post_id == false) {
694 next_id = getFirstVisibleHeadlineId();
695 prev_id = getLastVisibleHeadlineId();
696 } else {
697 for (var i = 0; i < rows.length; i++) {
698 if (rows[i] == active_post_id) {
699 prev_id = rows[i-1];
700 next_id = rows[i+1];
701 }
702 }
703 }
704
705 if (mode == "next") {
706 if (next_id) {
707 if (isCdmMode()) {
708
709 if (!cdmArticleIsActuallyVisible(next_id)) {
710 cdmScrollToArticleId(next_id);
711 }
712 cdmSelectArticles("none");
713 toggleUnread(next_id, 0, true);
714 toggleSelected(next_id);
715
716 } else {
717 correctHeadlinesOffset(next_id);
718 view(next_id, getActiveFeedId());
719 }
720 }
721 }
722
723 if (mode == "prev") {
724 if (prev_id) {
725 if (isCdmMode()) {
726 cdmScrollToArticleId(prev_id);
727 cdmSelectArticles("none");
728 toggleUnread(prev_id, 0, true);
729 toggleSelected(prev_id);
730 } else {
731 correctHeadlinesOffset(prev_id);
732 view(prev_id, getActiveFeedId());
733 }
734 }
735 }
736
737 } catch (e) {
738 exception_error("moveToPost", e);
739 }
740 }
741
742 function toggleSelected(id) {
743 try {
744
745 var cb = document.getElementById("RCHK-" + id);
746
747 var row = document.getElementById("RROW-" + id);
748 if (row) {
749 var nc = row.className;
750
751 if (!nc.match("Selected")) {
752 nc = nc + "Selected";
753 if (cb) {
754 cb.checked = true;
755 }
756
757 // In CDM basically last selected article == active article
758 if (isCdmMode()) active_post_id = id;
759 } else {
760 nc = nc.replace("Selected", "");
761 if (cb) {
762 cb.checked = false;
763 }
764
765 }
766
767 row.className = nc;
768 }
769 } catch (e) {
770 exception_error("toggleSelected", e);
771 }
772 }
773
774 function toggleUnread_afh(effect) {
775 try {
776
777 var elem = effect.element;
778 elem.style.backgroundColor = "";
779
780 } catch (e) {
781 exception_error("toggleUnread_afh", e);
782 }
783 }
784
785 function toggleUnread(id, cmode, effect) {
786 try {
787
788 var row = document.getElementById("RROW-" + id);
789 if (row) {
790 var nc = row.className;
791 var is_selected = row.className.match("Selected");
792 nc = nc.replace("Unread", "");
793 nc = nc.replace("Selected", "");
794
795 // since we are removing selection from the object, uncheck
796 // corresponding checkbox
797
798 var cb = document.getElementById("RCHK-" + id);
799 if (cb) {
800 cb.checked = false;
801 }
802
803 // NOTE: I'm not sure that resetting selection here is a feature -fox
804
805 if (cmode == undefined || cmode == 2) {
806 if (row.className.match("Unread")) {
807 row.className = nc;
808
809 if (effect) {
810 new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
811 afterFinish: toggleUnread_afh,
812 queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
813 }
814
815 } else {
816 row.className = nc + "Unread";
817 }
818 } else if (cmode == 0) {
819 row.className = nc;
820
821 if (effect) {
822 new Effect.Highlight(row, {duration: 1, startcolor: "#fff7d5",
823 afterFinish: toggleUnread_afh,
824 queue: { position:'end', scope: 'TMRQ-' + id, limit: 1 } } );
825 }
826 } else if (cmode == 1) {
827 row.className = nc + "Unread";
828 }
829
830 // Disable unmarking as selected for the time being (16.05.08) -fox
831 if (is_selected) row.className = row.className + "Selected";
832
833 if (cmode == undefined) cmode = 2;
834
835 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
836 param_escape(id) + "&cmode=" + param_escape(cmode);
837
838 // notify_progress("Loading, please wait...");
839
840 new Ajax.Request(query, {
841 onComplete: function(transport) {
842 all_counters_callback2(transport);
843 } });
844
845 }
846
847
848 } catch (e) {
849 exception_error("toggleUnread", e);
850 }
851 }
852
853 function selectionRemoveLabel(id) {
854 try {
855
856 var ids = getSelectedArticleIds2();
857
858 if (ids.length == 0) {
859 alert(__("No articles are selected."));
860 return;
861 }
862
863 var ok = confirm(__("Remove selected articles from label?"));
864
865 if (ok) {
866
867 var query = "backend.php?op=rpc&subop=removeFromLabel&ids=" +
868 param_escape(ids.toString()) + "&lid=" + param_escape(id);
869
870 // notify_progress("Loading, please wait...");
871
872 cache_invalidate("F:" + (-11 - id));
873
874 new Ajax.Request(query, {
875 onComplete: function(transport) {
876 viewCurrentFeed();
877 } });
878
879 }
880
881 } catch (e) {
882 exception_error("selectionAssignLabel", e);
883
884 }
885 }
886
887 function selectionAssignLabel(id) {
888 try {
889
890 var ids = getSelectedArticleIds2();
891
892 if (ids.length == 0) {
893 alert(__("No articles are selected."));
894 return;
895 }
896
897 var ok = confirm(__("Assign selected articles to label?"));
898
899 if (ok) {
900
901 cache_invalidate("F:" + (-11 - id));
902
903 var query = "backend.php?op=rpc&subop=assignToLabel&ids=" +
904 param_escape(ids.toString()) + "&lid=" + param_escape(id);
905
906 // notify_progress("Loading, please wait...");
907
908 new Ajax.Request(query, {
909 onComplete: function(transport) {
910 all_counters_callback2(transport);
911 } });
912
913 }
914
915 } catch (e) {
916 exception_error("selectionAssignLabel", e);
917
918 }
919 }
920
921 function selectionToggleUnread(cdm_mode, set_state, callback_func, no_error) {
922 try {
923 var rows;
924
925 if (cdm_mode) {
926 rows = cdmGetSelectedArticles();
927 } else {
928 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
929 }
930
931 if (rows.length == 0 && !no_error) {
932 alert(__("No articles are selected."));
933 return;
934 }
935
936 for (i = 0; i < rows.length; i++) {
937 var row = document.getElementById("RROW-" + rows[i]);
938 if (row) {
939 var nc = row.className;
940 nc = nc.replace("Unread", "");
941 nc = nc.replace("Selected", "");
942
943 if (set_state == undefined) {
944 if (row.className.match("Unread")) {
945 row.className = nc + "Selected";
946 } else {
947 row.className = nc + "UnreadSelected";
948 }
949 }
950
951 if (set_state == false) {
952 row.className = nc + "Selected";
953 }
954
955 if (set_state == true) {
956 row.className = nc + "UnreadSelected";
957 }
958 }
959 }
960
961 if (rows.length > 0) {
962
963 var cmode = "";
964
965 if (set_state == undefined) {
966 cmode = "2";
967 } else if (set_state == true) {
968 cmode = "1";
969 } else if (set_state == false) {
970 cmode = "0";
971 }
972
973 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
974 param_escape(rows.toString()) + "&cmode=" + cmode;
975
976 notify_progress("Loading, please wait...");
977
978 new Ajax.Request(query, {
979 onComplete: function(transport) {
980 catchup_callback2(transport, callback_func);
981 } });
982
983 }
984
985 } catch (e) {
986 exception_error("selectionToggleUnread", e);
987 }
988 }
989
990 function selectionToggleMarked(cdm_mode) {
991 try {
992
993 var rows;
994
995 if (cdm_mode) {
996 rows = cdmGetSelectedArticles();
997 } else {
998 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
999 }
1000
1001 if (rows.length == 0) {
1002 alert(__("No articles are selected."));
1003 return;
1004 }
1005
1006 for (i = 0; i < rows.length; i++) {
1007 toggleMark(rows[i], true, true);
1008 }
1009
1010 if (rows.length > 0) {
1011
1012 var query = "backend.php?op=rpc&subop=markSelected&ids=" +
1013 param_escape(rows.toString()) + "&cmode=2";
1014
1015 query = query + "&afid=" + getActiveFeedId();
1016
1017 /* if (tagsAreDisplayed()) {
1018 query = query + "&omode=tl";
1019 } else {
1020 query = query + "&omode=flc";
1021 } */
1022
1023 query = query + "&omode=lc";
1024
1025 new Ajax.Request(query, {
1026 onComplete: function(transport) {
1027 all_counters_callback2(transport);
1028 } });
1029
1030 }
1031
1032 } catch (e) {
1033 exception_error("selectionToggleMarked", e);
1034 }
1035 }
1036
1037 function selectionTogglePublished(cdm_mode) {
1038 try {
1039
1040 var rows;
1041
1042 if (cdm_mode) {
1043 rows = cdmGetSelectedArticles();
1044 } else {
1045 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1046 }
1047
1048 if (rows.length == 0) {
1049 alert(__("No articles are selected."));
1050 return;
1051 }
1052
1053 for (i = 0; i < rows.length; i++) {
1054 togglePub(rows[i], true, true);
1055 }
1056
1057 if (rows.length > 0) {
1058
1059 var query = "backend.php?op=rpc&subop=publishSelected&ids=" +
1060 param_escape(rows.toString()) + "&cmode=2";
1061
1062 query = query + "&afid=" + getActiveFeedId();
1063
1064 /* if (tagsAreDisplayed()) {
1065 query = query + "&omode=tl";
1066 } else {
1067 query = query + "&omode=flc";
1068 } */
1069
1070 query = query + "&omode=lc";
1071
1072 new Ajax.Request(query, {
1073 onComplete: function(transport) {
1074 all_counters_callback2(transport);
1075 } });
1076
1077 }
1078
1079 } catch (e) {
1080 exception_error("selectionToggleMarked", e);
1081 }
1082 }
1083
1084 function cdmGetSelectedArticles() {
1085 var sel_articles = new Array();
1086 var container = document.getElementById("headlinesInnerContainer");
1087
1088 for (i = 0; i < container.childNodes.length; i++) {
1089 var child = container.childNodes[i];
1090
1091 if (child.id && child.id.match("RROW-") && child.className.match("Selected")) {
1092 var c_id = child.id.replace("RROW-", "");
1093 sel_articles.push(c_id);
1094 }
1095 }
1096
1097 return sel_articles;
1098 }
1099
1100 function cdmGetVisibleArticles() {
1101 var sel_articles = new Array();
1102 var container = document.getElementById("headlinesInnerContainer");
1103
1104 if (!container) return sel_articles;
1105
1106 for (i = 0; i < container.childNodes.length; i++) {
1107 var child = container.childNodes[i];
1108
1109 if (child.id && child.id.match("RROW-")) {
1110 var c_id = child.id.replace("RROW-", "");
1111 sel_articles.push(c_id);
1112 }
1113 }
1114
1115 return sel_articles;
1116 }
1117
1118 function cdmGetUnreadArticles() {
1119 var sel_articles = new Array();
1120 var container = document.getElementById("headlinesInnerContainer");
1121
1122 for (i = 0; i < container.childNodes.length; i++) {
1123 var child = container.childNodes[i];
1124
1125 if (child.id && child.id.match("RROW-") && child.className.match("Unread")) {
1126 var c_id = child.id.replace("RROW-", "");
1127 sel_articles.push(c_id);
1128 }
1129 }
1130
1131 return sel_articles;
1132 }
1133
1134
1135 // mode = all,none,unread
1136 function cdmSelectArticles(mode) {
1137 var container = document.getElementById("headlinesInnerContainer");
1138
1139 for (i = 0; i < container.childNodes.length; i++) {
1140 var child = container.childNodes[i];
1141
1142 if (child.id && child.id.match("RROW-")) {
1143 var aid = child.id.replace("RROW-", "");
1144
1145 var cb = document.getElementById("RCHK-" + aid);
1146
1147 if (mode == "all") {
1148 if (!child.className.match("Selected")) {
1149 child.className = child.className + "Selected";
1150 cb.checked = true;
1151 }
1152 } else if (mode == "unread") {
1153 if (child.className.match("Unread") && !child.className.match("Selected")) {
1154 child.className = child.className + "Selected";
1155 cb.checked = true;
1156 }
1157 } else {
1158 child.className = child.className.replace("Selected", "");
1159 cb.checked = false;
1160 }
1161 }
1162 }
1163 }
1164
1165 function catchupPage() {
1166
1167 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1168
1169 var str = __("Mark all visible articles in %s as read?");
1170
1171 str = str.replace("%s", fn);
1172
1173 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1174 return;
1175 }
1176
1177 if (document.getElementById("headlinesList")) {
1178 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', true, 'Unread', true);
1179 selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
1180 selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
1181 } else {
1182 cdmSelectArticles('all');
1183 selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
1184 cdmSelectArticles('none');
1185 }
1186 }
1187
1188 function catchupSelection() {
1189
1190 try {
1191
1192 var rows;
1193
1194 if (document.getElementById("headlinesList")) {
1195 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1196 } else {
1197 rows = cdmGetSelectedArticles();
1198 }
1199
1200 if (rows.length == 0) {
1201 alert(__("No articles are selected."));
1202 return;
1203 }
1204
1205
1206 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1207
1208 var str = __("Mark %d selected articles in %s as read?");
1209
1210 str = str.replace("%d", rows.length);
1211 str = str.replace("%s", fn);
1212
1213 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1214 return;
1215 }
1216
1217 if (document.getElementById("headlinesList")) {
1218 selectionToggleUnread(false, false, 'viewCurrentFeed()', true);
1219 // selectTableRowsByIdPrefix('headlinesList', 'RROW-', 'RCHK-', false);
1220 } else {
1221 selectionToggleUnread(true, false, 'viewCurrentFeed()', true)
1222 // cdmSelectArticles('none');
1223 }
1224
1225 } catch (e) {
1226 exception_error("catchupSelection", e);
1227 }
1228 }
1229
1230 function editArticleTags(id, feed_id, cdm_enabled) {
1231 _tag_active_post_id = id;
1232 _tag_active_feed_id = feed_id;
1233 _tag_active_cdm = cdm_enabled;
1234
1235 cache_invalidate(id);
1236
1237 try {
1238 _tag_cdm_scroll = document.getElementById("headlinesInnerContainer").scrollTop;
1239 } catch (e) { }
1240 displayDlg('editArticleTags', id);
1241 }
1242
1243
1244 function tag_saved_callback(transport) {
1245 try {
1246 debug("in tag_saved_callback");
1247
1248 closeInfoBox();
1249 notify("");
1250
1251 if (tagsAreDisplayed()) {
1252 _reload_feedlist_after_view = true;
1253 }
1254
1255 if (!_tag_active_cdm) {
1256 if (active_post_id == _tag_active_post_id) {
1257 debug("reloading current article");
1258 view(_tag_active_post_id, _tag_active_feed_id);
1259 }
1260 } else {
1261 debug("reloading current feed");
1262 viewCurrentFeed();
1263 }
1264
1265 } catch (e) {
1266 exception_error("catchup_callback", e);
1267 }
1268 }
1269
1270 function editTagsSave() {
1271
1272 notify_progress("Saving article tags...");
1273
1274 var form = document.forms["tag_edit_form"];
1275
1276 var query = Form.serialize("tag_edit_form");
1277
1278 query = "backend.php?op=rpc&subop=setArticleTags&" + query;
1279
1280 debug(query);
1281
1282 new Ajax.Request(query, {
1283 onComplete: function(transport) {
1284 tag_saved_callback(transport);
1285 } });
1286
1287 }
1288
1289 function editTagsInsert() {
1290 try {
1291
1292 var form = document.forms["tag_edit_form"];
1293
1294 var found_tags = form.found_tags;
1295 var tags_str = form.tags_str;
1296
1297 var tag = found_tags[found_tags.selectedIndex].value;
1298
1299 if (tags_str.value.length > 0 &&
1300 tags_str.value.lastIndexOf(", ") != tags_str.value.length - 2) {
1301
1302 tags_str.value = tags_str.value + ", ";
1303 }
1304
1305 tags_str.value = tags_str.value + tag + ", ";
1306
1307 found_tags.selectedIndex = 0;
1308
1309 } catch (e) {
1310 exception_error("editTagsInsert", e);
1311 }
1312 }
1313
1314 function cdmScrollViewport(where) {
1315 debug("cdmScrollViewport: " + where);
1316
1317 var ctr = document.getElementById("headlinesInnerContainer");
1318
1319 if (!ctr) return;
1320
1321 if (where == "bottom") {
1322 ctr.scrollTop = ctr.scrollHeight;
1323 } else {
1324 ctr.scrollTop = where;
1325 }
1326 }
1327
1328 function cdmArticleIsBelowViewport(id) {
1329 try {
1330 var ctr = document.getElementById("headlinesInnerContainer");
1331 var e = document.getElementById("RROW-" + id);
1332
1333 if (!e || !ctr) return;
1334
1335 // article starts below viewport
1336
1337 if (ctr.scrollTop < e.offsetTop) {
1338 return true;
1339 } else {
1340 return false;
1341 }
1342
1343 } catch (e) {
1344 exception_error("cdmArticleIsVisible", e);
1345 }
1346 }
1347
1348 function cdmArticleIsAboveViewport(id) {
1349 try {
1350 var ctr = document.getElementById("headlinesInnerContainer");
1351 var e = document.getElementById("RROW-" + id);
1352
1353 if (!e || !ctr) return;
1354
1355 // article starts above viewport
1356
1357 if (ctr.scrollTop > e.offsetTop + e.offsetHeight) {
1358 return true;
1359 } else {
1360 return false;
1361 }
1362
1363 } catch (e) {
1364 exception_error("cdmArticleIsVisible", e);
1365 }
1366 }
1367
1368 function cdmScrollToArticleId(id) {
1369 try {
1370 var ctr = document.getElementById("headlinesInnerContainer");
1371 var e = document.getElementById("RROW-" + id);
1372
1373 if (!e || !ctr) return;
1374
1375 ctr.scrollTop = e.offsetTop;
1376
1377 } catch (e) {
1378 exception_error("cdmScrollToArticleId", e);
1379 }
1380 }
1381
1382 function cdmArticleIsActuallyVisible(id) {
1383 try {
1384 var ctr = document.getElementById("headlinesInnerContainer");
1385 var e = document.getElementById("RROW-" + id);
1386
1387 if (!e || !ctr) return;
1388
1389 // article fits in viewport OR article is longer than viewport and
1390 // its bottom is visible
1391
1392 if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
1393 ctr.scrollTop + ctr.offsetHeight) {
1394
1395 return true;
1396
1397 } else if (e.offsetHeight > ctr.offsetHeight &&
1398 e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1399 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
1400
1401 return true;
1402
1403 }
1404
1405 return false;
1406
1407 } catch (e) {
1408 exception_error("cdmArticleIsVisible", e);
1409 }
1410 }
1411
1412 function cdmWatchdog() {
1413
1414 try {
1415
1416 var ctr = document.getElementById("headlinesInnerContainer");
1417
1418 if (!ctr) return;
1419
1420 var ids = new Array();
1421
1422 var e = ctr.firstChild;
1423
1424 while (e) {
1425 if (e.className && e.className == "cdmArticleUnread" && e.id &&
1426 e.id.match("RROW-")) {
1427
1428 // article fits in viewport OR article is longer than viewport and
1429 // its bottom is visible
1430
1431 if (ctr.scrollTop <= e.offsetTop && e.offsetTop + e.offsetHeight <=
1432 ctr.scrollTop + ctr.offsetHeight) {
1433
1434 // debug(e.id + " is visible " + e.offsetTop + "." +
1435 // (e.offsetTop + e.offsetHeight) + " vs " + ctr.scrollTop + "." +
1436 // (ctr.scrollTop + ctr.offsetHeight));
1437
1438 ids.push(e.id.replace("RROW-", ""));
1439
1440 } else if (e.offsetHeight > ctr.offsetHeight &&
1441 e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1442 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight) {
1443
1444 ids.push(e.id.replace("RROW-", ""));
1445
1446 }
1447
1448 // method 2: article bottom is visible and is in upper 1/2 of the viewport
1449
1450 /* if (e.offsetTop + e.offsetHeight >= ctr.scrollTop &&
1451 e.offsetTop + e.offsetHeight <= ctr.scrollTop + ctr.offsetHeight/2) {
1452
1453 ids.push(e.id.replace("RROW-", ""));
1454
1455 } */
1456
1457 }
1458
1459 e = e.nextSibling;
1460 }
1461
1462 debug("cdmWatchdog, ids= " + ids.toString());
1463
1464 if (ids.length > 0) {
1465
1466 for (var i = 0; i < ids.length; i++) {
1467 var e = document.getElementById("RROW-" + ids[i]);
1468 if (e) {
1469 e.className = e.className.replace("Unread", "");
1470 }
1471 }
1472
1473 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
1474 param_escape(ids.toString()) + "&cmode=0";
1475
1476 new Ajax.Request(query, {
1477 onComplete: function(transport) {
1478 all_counters_callback2(transport);
1479 } });
1480
1481 }
1482
1483 _cdm_wd_timeout = window.setTimeout("cdmWatchdog()", 4000);
1484
1485 } catch (e) {
1486 exception_error("cdmWatchdog", e);
1487 }
1488
1489 }
1490
1491
1492 function cache_inject(id, article, param) {
1493 if (!cache_check_param(id, param)) {
1494 debug("cache_article: miss: " + id + " [p=" + param + "]");
1495
1496 var cache_obj = new Array();
1497
1498 cache_obj["id"] = id;
1499 cache_obj["data"] = article;
1500 cache_obj["param"] = param;
1501
1502 article_cache.push(cache_obj);
1503
1504 } else {
1505 debug("cache_article: hit: " + id + " [p=" + param + "]");
1506 }
1507 }
1508
1509 function cache_find(id) {
1510 for (var i = 0; i < article_cache.length; i++) {
1511 if (article_cache[i]["id"] == id) {
1512 return article_cache[i]["data"];
1513 }
1514 }
1515 return false;
1516 }
1517
1518 function cache_find_param(id, param) {
1519 for (var i = 0; i < article_cache.length; i++) {
1520 if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
1521 return article_cache[i]["data"];
1522 }
1523 }
1524 return false;
1525 }
1526
1527 function cache_check(id) {
1528 for (var i = 0; i < article_cache.length; i++) {
1529 if (article_cache[i]["id"] == id) {
1530 return true;
1531 }
1532 }
1533 return false;
1534 }
1535
1536 function cache_check_param(id, param) {
1537 for (var i = 0; i < article_cache.length; i++) {
1538
1539 // debug("cache_check_param " + article_cache[i]["id"] + ":" +
1540 // article_cache[i]["param"] + " vs " + id + ":" + param);
1541
1542 if (article_cache[i]["id"] == id && article_cache[i]["param"] == param) {
1543 return true;
1544 }
1545 }
1546 return false;
1547 }
1548
1549 function cache_expire() {
1550 while (article_cache.length > 25) {
1551 article_cache.shift();
1552 }
1553 }
1554
1555 function cache_empty() {
1556 article_cache = new Array();
1557 }
1558
1559 function cache_invalidate(id) {
1560 var i = 0
1561
1562 try {
1563
1564 while (i < article_cache.length) {
1565 if (article_cache[i]["id"] == id) {
1566 debug("cache_invalidate: removed id " + id);
1567 article_cache.splice(i, 1);
1568 return true;
1569 }
1570 i++;
1571 }
1572 debug("cache_invalidate: id not found: " + id);
1573 return false;
1574 } catch (e) {
1575 exception_error("cache_invalidate", e);
1576 }
1577 }
1578
1579 function getActiveArticleId() {
1580 return active_post_id;
1581 }
1582
1583 function cdmClicked(id) {
1584 try {
1585 var elem = document.getElementById("RROW-" + id);
1586
1587 if (elem) {
1588 var id = elem.id.replace("RROW-", "");
1589 active_post_id = id;
1590
1591 cdmSelectArticles("none");
1592 toggleUnread(id, 0, true);
1593 toggleSelected(id);
1594
1595 }
1596 } catch (e) {
1597 exception_error("cdmClicked", e);
1598 }
1599 }
1600
1601 function preload_article_callback(transport) {
1602 try {
1603 if (transport.responseXML) {
1604 var articles = transport.responseXML.getElementsByTagName("article");
1605
1606 for (var i = 0; i < articles.length; i++) {
1607 var id = articles[i].getAttribute("id");
1608 if (!cache_check(id)) {
1609 cache_inject(id, articles[i].firstChild.nodeValue);
1610 debug("preloaded article: " + id);
1611 }
1612 }
1613 }
1614 } catch (e) {
1615 exception_error("preload_article_callback", e);
1616 }
1617 }
1618
1619 function preloadArticleUnderPointer(id) {
1620 try {
1621 if (getInitParam("bw_limit") == "1") return;
1622
1623 if (post_under_pointer == id && !cache_check(id)) {
1624
1625 debug("trying to preload article " + id);
1626
1627 var neighbor_ids = getRelativePostIds(id, 1);
1628
1629 /* only request uncached articles */
1630
1631 var cids_to_request = Array();
1632
1633 for (var i = 0; i < neighbor_ids.length; i++) {
1634 if (!cache_check(neighbor_ids[i])) {
1635 cids_to_request.push(neighbor_ids[i]);
1636 }
1637 }
1638 debug("additional ids: " + cids_to_request.toString());
1639
1640 cids_to_request.push(id);
1641
1642 var query = "backend.php?op=rpc&subop=getArticles&ids=" +
1643 cids_to_request.toString();
1644 new Ajax.Request(query, {
1645 onComplete: function(transport) {
1646 preload_article_callback(transport);
1647 } });
1648 }
1649 } catch (e) {
1650 exception_error("preloadArticleUnderPointer", e);
1651 }
1652 }
1653
1654 function postMouseIn(id) {
1655 try {
1656 if (post_under_pointer != id) {
1657 post_under_pointer = id;
1658 if (!isCdmMode()) {
1659 window.setTimeout("preloadArticleUnderPointer(" + id + ")", 250);
1660 }
1661 }
1662
1663 } catch (e) {
1664 exception_error("postMouseIn", e);
1665 }
1666 }
1667
1668 function postMouseOut(id) {
1669 try {
1670 post_under_pointer = false;
1671 } catch (e) {
1672 exception_error("postMouseOut", e);
1673 }
1674 }
1675
1676 function headlines_scroll_handler() {
1677 try {
1678
1679 var e = document.getElementById("headlinesInnerContainer");
1680
1681 // don't do infinite scrolling when Limit == All
1682
1683 var toolbar_form = document.forms["main_toolbar_form"];
1684
1685 var limit = toolbar_form.limit[toolbar_form.limit.selectedIndex];
1686 if (limit.value != 0) {
1687
1688 debug((e.scrollTop + e.offsetHeight) + " vs " + e.scrollHeight + " dis? " +
1689 _infscroll_disable);
1690
1691 if (e.scrollTop + e.offsetHeight > e.scrollHeight - 100) {
1692 if (!_infscroll_disable) {
1693 debug("more cowbell!");
1694 viewNextFeedPage();
1695 }
1696 }
1697 }
1698
1699 } catch (e) {
1700 exception_error("headlines_scroll_handler", e);
1701 }
1702 }
1703
1704 function catchupRelativeToArticle(below) {
1705
1706 try {
1707
1708 if (!xmlhttp_ready(xmlhttp_rpc)) {
1709 printLockingError();
1710 }
1711
1712 if (!getActiveArticleId()) {
1713 alert(__("No article is selected."));
1714 return;
1715 }
1716
1717 var visible_ids;
1718
1719 if (document.getElementById("headlinesList")) {
1720 visible_ids = getVisibleHeadlineIds();
1721 } else {
1722 visible_ids = cdmGetVisibleArticles();
1723 }
1724
1725 var ids_to_mark = new Array();
1726
1727 if (!below) {
1728 for (var i = 0; i < visible_ids.length; i++) {
1729 if (visible_ids[i] != getActiveArticleId()) {
1730 var e = document.getElementById("RROW-" + visible_ids[i]);
1731
1732 if (e && e.className.match("Unread")) {
1733 ids_to_mark.push(visible_ids[i]);
1734 }
1735 } else {
1736 break;
1737 }
1738 }
1739 } else {
1740 for (var i = visible_ids.length-1; i >= 0; i--) {
1741 if (visible_ids[i] != getActiveArticleId()) {
1742 var e = document.getElementById("RROW-" + visible_ids[i]);
1743
1744 if (e && e.className.match("Unread")) {
1745 ids_to_mark.push(visible_ids[i]);
1746 }
1747 } else {
1748 break;
1749 }
1750 }
1751 }
1752
1753 if (ids_to_mark.length == 0) {
1754 alert(__("No articles found to mark"));
1755 } else {
1756 var msg = __("Mark %d article(s) as read?").replace("%d", ids_to_mark.length);
1757
1758 if (confirm(msg)) {
1759
1760 for (var i = 0; i < ids_to_mark.length; i++) {
1761 var e = document.getElementById("RROW-" + ids_to_mark[i]);
1762 e.className = e.className.replace("Unread", "");
1763 }
1764
1765 var query = "backend.php?op=rpc&subop=catchupSelected&ids=" +
1766 param_escape(ids_to_mark.toString()) + "&cmode=0";
1767
1768 new Ajax.Request(query, {
1769 onComplete: function(transport) {
1770 catchup_callback2(transport);
1771 } });
1772
1773 }
1774 }
1775
1776 } catch (e) {
1777 exception_error("catchupRelativeToArticle", e);
1778 }
1779 }
1780
1781 function cdmExpandArticle(a_id) {
1782 try {
1783 var id = 'CICD-' + a_id;
1784
1785 try {
1786 Element.hide("CEXC-" + a_id);
1787 } catch (e) { }
1788
1789 Effect.Appear(id, {duration : 0.5,
1790 beforeStart: function(effect) {
1791 var h_id = 'CICH-' + a_id;
1792 var h_elem = document.getElementById(h_id);
1793 if (h_elem) { h_elem.style.display = "none"; }
1794
1795 toggleUnread(a_id, 0);
1796 }});
1797
1798
1799 } catch (e) {
1800 exception_error("appearBlockElementF", e);
1801 }
1802
1803 }
1804
1805 function fixHeadlinesOrder(ids) {
1806 try {
1807 for (var i = 0; i < ids.length; i++) {
1808 var e = document.getElementById("RROW-" + ids[i]);
1809
1810 if (e) {
1811 if (i % 2 == 0) {
1812 e.className = e.className.replace("even", "odd");
1813 } else {
1814 e.className = e.className.replace("odd", "even");
1815 }
1816 }
1817 }
1818 } catch (e) {
1819 exception_error("fixHeadlinesOrder", e);
1820 }
1821 }
1822
1823 function subtoolbarSearch() {
1824 try {
1825
1826 var q = document.getElementById("subtoolbar_search_box");
1827
1828 if (!q) return;
1829
1830 q = q.value.toUpperCase();
1831
1832 var ids = false;
1833 var vis_ids = new Array();
1834
1835 if (document.getElementById("headlinesList")) {
1836 ids = getVisibleHeadlineIds();
1837 } else {
1838 ids = cdmGetVisibleArticles();
1839 }
1840
1841 for (var i = 0; i < ids.length; i++) {
1842 var title = document.getElementById("RTITLE-" + ids[i]);
1843
1844 if (title) {
1845 if (!title.innerHTML.toUpperCase().match(q)) {
1846 Element.hide(document.getElementById("RROW-" + ids[i]));
1847 } else {
1848 Element.show(document.getElementById("RROW-" + ids[i]));
1849 vis_ids.push(ids[i]);
1850 }
1851 }
1852 }
1853
1854 fixHeadlinesOrder(vis_ids);
1855
1856 } catch (e) {
1857 exception_error("subtoolbarSearch", e);
1858 }
1859 }
1860
1861 function hideReadHeadlines() {
1862 try {
1863
1864 var ids = false;
1865 var vis_ids = new Array();
1866
1867 if (document.getElementById("headlinesList")) {
1868 ids = getVisibleHeadlineIds();
1869 } else {
1870 ids = cdmGetVisibleArticles();
1871 }
1872
1873 var read_headlines_visible = true;
1874
1875 for (var i = 0; i < ids.length; i++) {
1876 var row = document.getElementById("RROW-" + ids[i]);
1877
1878 if (row && row.className) {
1879 if (read_headlines_visible) {
1880 if (row.className.match("Unread") || row.className.match("Selected")) {
1881 Element.show(row);
1882 vis_ids.push(ids[i]);
1883 } else {
1884 //Effect.Fade(row, {duration : 0.3});
1885 Element.hide(row);
1886 }
1887 } else {
1888 Element.show(row);
1889 vis_ids.push(ids[i]);
1890 }
1891 }
1892 }
1893
1894 fixHeadlinesOrder(vis_ids);
1895
1896 read_headlines_visible = !read_headlines_visible;
1897
1898 } catch (e) {
1899 exception_error("hideReadHeadlines", e);
1900 }
1901 }
1902
1903 function invertHeadlineSelection() {
1904 try {
1905 var rows = new Array();
1906 var r = false;
1907
1908 if (!isCdmMode()) {
1909 r = document.getElementsByTagName("TR");
1910 } else {
1911 r = document.getElementsByTagName("DIV");
1912 }
1913
1914 for (var i = 0; i < r.length; i++) {
1915 if (r[i].id && r[i].id.match("RROW-")) {
1916 rows.push(r[i]);
1917 }
1918 }
1919
1920 for (var i = 0; i < rows.length; i++) {
1921 var nc = rows[i].className;
1922 var id = rows[i].id.replace("RROW-", "");
1923 var cb = document.getElementById("RCHK-" + id);
1924
1925 if (!rows[i].className.match("Selected")) {
1926 nc = nc + "Selected";
1927 cb.checked = true;
1928 } else {
1929 nc = nc.replace("Selected", "");
1930 cb.checked = false;
1931 }
1932
1933 rows[i].className = nc;
1934
1935 }
1936
1937 } catch (e) {
1938 exception_error("invertHeadlineSelection", e);
1939 }
1940 }
1941
1942 function getArticleUnderPointer() {
1943 return post_under_pointer;
1944 }
1945
1946 function zoomToArticle(id) {
1947 try {
1948 var w = window.open("backend.php?op=view&mode=zoom&id=" + param_escape(id),
1949 "ttrss_zoom_" + id,
1950 "status=0,toolbar=0,location=0,width=450,height=300,scrollbars=1,menubar=0");
1951
1952 } catch (e) {
1953 exception_error("zoomToArticle", e);
1954 }
1955 }
1956
1957 function showOriginalArticleInline(id) {
1958 try {
1959
1960 var query = "backend.php?op=rpc&subop=getArticleLink&id=" + id;
1961
1962 notify_progress("Loading, please wait...", true);
1963
1964 new Ajax.Request(query, {
1965 onComplete: function(transport) {
1966
1967 if (transport.responseXML) {
1968
1969 var link = transport.responseXML.getElementsByTagName("link")[0];
1970 var id = transport.responseXML.getElementsByTagName("id")[0];
1971
1972 notify("");
1973
1974 if (link && id) {
1975 link = link.firstChild.nodeValue;
1976
1977 var ci = document.getElementById("content-insert");
1978
1979 var tmp = "<iframe id=\"inline_orig_article\" width=\""+ci.offsetWidth+"\" height=\""+ci.offsetHeight+"\" style=\"border-width : 0px;\" src=\""+link+"\"></iframe>";
1980
1981 render_article(tmp);
1982
1983 }
1984 }
1985 } });
1986
1987 } catch (e) {
1988 exception_error("showOriginalArticleInline", e);
1989 }
1990 }
1991
1992
1993 function scrollArticle(offset) {
1994 try {
1995 if (!isCdmMode()) {
1996 var ci = document.getElementById("content-insert");
1997 if (ci) {
1998 ci.scrollTop += offset;
1999 }
2000 } else {
2001 var hi = document.getElementById("headlinesInnerContainer");
2002 if (hi) {
2003 hi.scrollTop += offset;
2004 }
2005
2006 }
2007 } catch (e) {
2008 exception_error("scrollArticle", e);
2009 }
2010 }