]> git.wh0rd.org - tt-rss.git/blob - js/viewfeed.js
846c87a8f39ec8c7af0cf1bee530af026fe6a468
[tt-rss.git] / js / viewfeed.js
1 var article_cache = new Array();
2
3 var _active_article_id = 0;
4
5 var vgroup_last_feed = false;
6 var post_under_pointer = false;
7
8 var last_requested_article = false;
9
10 var catchup_id_batch = [];
11 var catchup_timeout_id = false;
12
13 var cids_requested = [];
14 var loaded_article_ids = [];
15 var _last_headlines_update = 0;
16
17 var has_storage = 'sessionStorage' in window && window['sessionStorage'] !== null;
18
19 function headlines_callback2(transport, offset, background, infscroll_req) {
20 try {
21 handle_rpc_json(transport);
22
23 console.log("headlines_callback2 [offset=" + offset + "] B:" + background + " I:" + infscroll_req);
24
25 var is_cat = false;
26 var feed_id = false;
27
28 var reply = false;
29
30 try {
31 reply = JSON.parse(transport.responseText);
32 } catch (e) {
33 console.error(e);
34 }
35
36 if (reply) {
37
38 is_cat = reply['headlines']['is_cat'];
39 feed_id = reply['headlines']['id'];
40
41 if (background) {
42 var content = reply['headlines']['content'];
43
44 content = content + "<div id='headlines-spacer'></div>";
45 return;
46 }
47
48 if (feed_id != getActiveFeedId() || is_cat != activeFeedIsCat())
49 return;
50
51 /* dijit.getEnclosingWidget(
52 document.forms["main_toolbar_form"].update).attr('disabled',
53 is_cat || feed_id <= 0); */
54
55 try {
56 if (infscroll_req == false) {
57 $("headlines-frame").scrollTop = 0;
58
59 Element.hide("floatingTitle");
60 $("floatingTitle").setAttribute("rowid", 0);
61 $("floatingTitle").innerHTML = "";
62 }
63 } catch (e) { };
64
65 $("headlines-frame").removeClassName("cdm");
66 $("headlines-frame").removeClassName("normal");
67
68 $("headlines-frame").addClassName(isCdmMode() ? "cdm" : "normal");
69
70 var headlines_count = reply['headlines-info']['count'];
71
72 vgroup_last_feed = reply['headlines-info']['vgroup_last_feed'];
73
74 if (parseInt(headlines_count) < 30) {
75 _infscroll_disable = 1;
76 } else {
77 _infscroll_disable = 0;
78 }
79
80 var counters = reply['counters'];
81 var articles = reply['articles'];
82 //var runtime_info = reply['runtime-info'];
83
84 if (infscroll_req == false) {
85 loaded_article_ids = [];
86
87 dijit.byId("headlines-frame").attr('content',
88 reply['headlines']['content']);
89
90 //dijit.byId("headlines-toolbar").attr('content',
91 // reply['headlines']['toolbar']);
92
93 dojo.html.set($("headlines-toolbar"),
94 reply['headlines']['toolbar'],
95 {parseContent: true});
96
97 $$("#headlines-frame > div[id*=RROW]").each(function(row) {
98 if (loaded_article_ids.indexOf(row.id) != -1) {
99 row.parentNode.removeChild(row);
100 } else {
101 loaded_article_ids.push(row.id);
102 }
103 });
104
105 var hsp = $("headlines-spacer");
106 if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
107 dijit.byId('headlines-frame').domNode.appendChild(hsp);
108
109 initHeadlinesMenu();
110
111 if (_search_query) {
112 $("feed_title").innerHTML += "<span id='cancel_search'>" +
113 " (<a href='#' onclick='cancelSearch()'>" + __("Cancel search") + "</a>)" +
114 "</span>";
115 }
116
117 } else {
118
119 if (headlines_count > 0 && feed_id == getActiveFeedId() && is_cat == activeFeedIsCat()) {
120 console.log("adding some more headlines: " + headlines_count);
121
122 var c = dijit.byId("headlines-frame");
123 var ids = getSelectedArticleIds2();
124 var new_elems = [];
125
126 $("headlines-tmp").innerHTML = reply['headlines']['content'];
127
128 var hsp = $("headlines-spacer");
129
130 if (hsp)
131 c.domNode.removeChild(hsp);
132
133 $$("#headlines-tmp > div").each(function(row) {
134 if (row.className == 'cdmFeedTitle') {
135 row.style.display = 'none';
136 c.domNode.appendChild(row);
137 new_elems.push(row);
138 } else if (loaded_article_ids.indexOf(row.id) == -1) {
139 row.style.display = 'none';
140 c.domNode.appendChild(row);
141 new_elems.push(row);
142 loaded_article_ids.push(row.id);
143 } else {
144 row.parentNode.removeChild(row);
145 }
146 });
147
148 if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"});
149
150 if (getInitParam("cdm_auto_catchup") == 1) {
151 c.domNode.appendChild(hsp);
152 }
153
154 console.log("added " + new_elems.size() + " headlines");
155
156 if (new_elems.size() == 0)
157 _infscroll_disable = true;
158
159 console.log("restore selected ids: " + ids);
160
161 for (var i = 0; i < ids.length; i++) {
162 markHeadline(ids[i]);
163 }
164
165 initHeadlinesMenu();
166
167 new_elems.each(function(child) {
168 dojo.parser.parse(child);
169
170 if (!Element.visible(child))
171 new Effect.Appear(child, { duration : 0.5 });
172 });
173
174 } else {
175 console.log("no new headlines received");
176
177 var hsp = $("headlines-spacer");
178
179 if (hsp) hsp.innerHTML = "";
180 }
181 }
182
183 if (articles) {
184 for (var i = 0; i < articles.length; i++) {
185 var a_id = articles[i]['id'];
186 cache_set("article:" + a_id, articles[i]['content']);
187 }
188 } else {
189 console.log("no cached articles received");
190 }
191
192 if (counters)
193 parse_counters(counters);
194 else
195 request_counters(true);
196
197 } else {
198 console.error("Invalid object received: " + transport.responseText);
199 dijit.byId("headlines-frame").attr('content', "<div class='whiteBox'>" +
200 __('Could not update headlines (invalid object received - see error console for details)') +
201 "</div>");
202 }
203
204 _infscroll_request_sent = 0;
205 _last_headlines_update = new Date().getTime();
206
207 unpackVisibleHeadlines();
208
209 // if we have some more space in the buffer, why not try to fill it
210
211 if (!_infscroll_disable && $("headlines-spacer") &&
212 $("headlines-spacer").offsetTop < $("headlines-frame").offsetHeight) {
213
214 window.setTimeout(function() {
215 loadMoreHeadlines();
216 }, 250);
217 }
218
219 notify("");
220
221 } catch (e) {
222 exception_error("headlines_callback2", e, transport);
223 }
224 }
225
226 function render_article(article) {
227 try {
228 dijit.byId("headlines-wrap-inner").addChild(
229 dijit.byId("content-insert"));
230
231 var c = dijit.byId("content-insert");
232
233 try {
234 c.domNode.scrollTop = 0;
235 } catch (e) { };
236
237 PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED, article);
238
239 c.attr('content', article);
240
241 correctHeadlinesOffset(getActiveArticleId());
242
243 try {
244 c.focus();
245 } catch (e) { };
246
247 } catch (e) {
248 exception_error("render_article", e);
249 }
250 }
251
252 function showArticleInHeadlines(id, noexpand) {
253
254 try {
255 selectArticles("none");
256
257 var crow = $("RROW-" + id);
258
259 if (!crow) return;
260
261 var article_is_unread = crow.hasClassName("Unread");
262
263 if (!noexpand)
264 crow.removeClassName("Unread");
265 crow.addClassName("active");
266
267 selectArticles('none');
268
269 var view_mode = false;
270
271 try {
272 view_mode = document.forms['main_toolbar_form'].view_mode;
273 view_mode = view_mode[view_mode.selectedIndex].value;
274 } catch (e) {
275 //
276 }
277
278 markHeadline(id);
279
280 if (article_is_unread && !noexpand)
281 _force_scheduled_update = true;
282
283 } catch (e) {
284 exception_error("showArticleInHeadlines", e);
285 }
286 }
287
288 function article_callback2(transport, id) {
289 try {
290 console.log("article_callback2 " + id);
291
292 handle_rpc_json(transport);
293
294 var reply = false;
295
296 try {
297 reply = JSON.parse(transport.responseText);
298 } catch (e) {
299 console.error(e);
300 }
301
302 if (reply) {
303
304 reply.each(function(article) {
305 if (getActiveArticleId() == article['id']) {
306 render_article(article['content']);
307 }
308 cids_requested.remove(article['id']);
309
310 cache_set("article:" + article['id'], article['content']);
311 });
312
313 // if (id != last_requested_article) {
314 // console.log("requested article id is out of sequence, aborting");
315 // return;
316 // }
317
318 } else {
319 console.error("Invalid object received: " + transport.responseText);
320
321 render_article("<div class='whiteBox'>" +
322 __('Could not display article (invalid object received - see error console for details)') + "</div>");
323 }
324
325 var unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length
326 request_counters(unread_in_buffer == 0);
327
328 //headlines_scroll_handler($("headlines-frame"));
329
330 /* try {
331 if (!_infscroll_disable &&
332 $$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
333
334 loadMoreHeadlines();
335 }
336 } catch (e) {
337 console.warn(e);
338 } */
339
340 notify("");
341 } catch (e) {
342 exception_error("article_callback2", e, transport);
343 }
344 }
345
346 function view(id, activefeed, noexpand) {
347 try {
348 var oldrow = $("RROW-" + getActiveArticleId());
349 if (oldrow) oldrow.removeClassName("active");
350
351 var crow = $("RROW-" + id);
352
353 if (!crow) return;
354 if (noexpand) {
355 setActiveArticleId(id);
356 showArticleInHeadlines(id, noexpand);
357 return;
358 }
359
360 console.log("loading article: " + id);
361
362 var cached_article = cache_get("article:" + id);
363
364 console.log("cache check result: " + (cached_article != false));
365
366 var query = "?op=article&method=view&id=" + param_escape(id);
367
368 var neighbor_ids = getRelativePostIds(id);
369
370 /* only request uncached articles */
371
372 var cids_to_request = [];
373
374 for (var i = 0; i < neighbor_ids.length; i++) {
375 if (cids_requested.indexOf(neighbor_ids[i]) == -1)
376 if (!cache_get("article:" + neighbor_ids[i])) {
377 cids_to_request.push(neighbor_ids[i]);
378 cids_requested.push(neighbor_ids[i]);
379 }
380 }
381
382 console.log("additional ids: " + cids_to_request.toString());
383
384 query = query + "&cids=" + cids_to_request.toString();
385
386 var article_is_unread = crow.hasClassName("Unread");
387
388 setActiveArticleId(id);
389 showArticleInHeadlines(id);
390
391 if (cached_article && article_is_unread) {
392
393 query = query + "&mode=prefetch";
394
395 render_article(cached_article);
396
397 } else if (cached_article) {
398
399 query = query + "&mode=prefetch_old";
400 render_article(cached_article);
401
402 // if we don't need to request any relative ids, we might as well skip
403 // the server roundtrip altogether
404 if (cids_to_request.length == 0) {
405
406 /* try {
407 if (!_infscroll_disable &&
408 $$("#headlines-frame > div[id*=RROW]").last().hasClassName("Selected")) {
409
410 loadMoreHeadlines();
411 }
412 } catch (e) {
413 console.warn(e);
414 } */
415
416 //headlines_scroll_handler($("headlines-frame"));
417
418 return;
419 }
420 }
421
422 last_requested_article = id;
423
424 console.log(query);
425
426 if (article_is_unread) {
427 decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
428 }
429
430 new Ajax.Request("backend.php", {
431 parameters: query,
432 onComplete: function(transport) {
433 article_callback2(transport, id);
434 } });
435
436 return false;
437
438 } catch (e) {
439 exception_error("view", e);
440 }
441 }
442
443 function toggleMark(id, client_only) {
444 try {
445 var query = "?op=rpc&id=" + id + "&method=mark";
446
447 var row = $("RROW-" + id);
448 if (!row) return;
449
450 var imgs = [];
451
452 var row_imgs = row.getElementsByClassName("markedPic");
453
454 for (var i = 0; i < row_imgs.length; i++)
455 imgs.push(row_imgs[i]);
456
457 var ft = $("floatingTitle");
458
459 if (ft && ft.getAttribute("rowid") == "RROW-" + id) {
460 var fte = ft.getElementsByClassName("markedPic");
461
462 for (var i = 0; i < fte.length; i++)
463 imgs.push(fte[i]);
464 }
465
466 for (i = 0; i < imgs.length; i++) {
467 var img = imgs[i];
468
469 if (!row.hasClassName("marked")) {
470 img.src = img.src.replace("mark_unset", "mark_set");
471 img.alt = __("Unstar article");
472 query = query + "&mark=1";
473 } else {
474 img.src = img.src.replace("mark_set", "mark_unset");
475 img.alt = __("Star article");
476 query = query + "&mark=0";
477 }
478 }
479
480 row.toggleClassName("marked");
481
482 if (!client_only) {
483 new Ajax.Request("backend.php", {
484 parameters: query,
485 onComplete: function(transport) {
486 handle_rpc_json(transport);
487 } });
488 }
489
490 } catch (e) {
491 exception_error("toggleMark", e);
492 }
493 }
494
495 function togglePub(id, client_only, no_effects, note) {
496 try {
497 var query = "?op=rpc&id=" + id + "&method=publ";
498
499 if (note != undefined) {
500 query = query + "&note=" + param_escape(note);
501 } else {
502 query = query + "&note=undefined";
503 }
504
505 var row = $("RROW-" + id);
506 if (!row) return;
507
508 var imgs = [];
509
510 var row_imgs = row.getElementsByClassName("pubPic");
511
512 for (var i = 0; i < row_imgs.length; i++)
513 imgs.push(row_imgs[i]);
514
515 var ft = $("floatingTitle");
516
517 if (ft && ft.getAttribute("rowid") == "RROW-" + id) {
518 var fte = ft.getElementsByClassName("pubPic");
519
520 for (var i = 0; i < fte.length; i++)
521 imgs.push(fte[i]);
522 }
523
524 for (i = 0; i < imgs.length; i++) {
525 var img = imgs[i];
526
527 if (!row.hasClassName("published") || note != undefined) {
528 img.src = img.src.replace("pub_unset", "pub_set");
529 img.alt = __("Unpublish article");
530 query = query + "&pub=1";
531 } else {
532 img.src = img.src.replace("pub_set", "pub_unset");
533 img.alt = __("Publish article");
534 query = query + "&pub=0";
535 }
536 }
537
538 if (note != undefined)
539 row.addClassName("published");
540 else
541 row.toggleClassName("published");
542
543 if (!client_only) {
544 new Ajax.Request("backend.php", {
545 parameters: query,
546 onComplete: function(transport) {
547 handle_rpc_json(transport);
548 } });
549 }
550
551 } catch (e) {
552 exception_error("togglePub", e);
553 }
554 }
555
556 function moveToPost(mode, noscroll, noexpand) {
557
558 try {
559
560 var rows = getVisibleArticleIds();
561
562 var prev_id = false;
563 var next_id = false;
564
565 if (!$('RROW-' + getActiveArticleId())) {
566 setActiveArticleId(0);
567 }
568
569 if (!getActiveArticleId()) {
570 next_id = rows[0];
571 prev_id = rows[rows.length-1]
572 } else {
573 for (var i = 0; i < rows.length; i++) {
574 if (rows[i] == getActiveArticleId()) {
575
576 // Account for adjacent identical article ids.
577 if (i > 0) prev_id = rows[i-1];
578
579 for (var j = i+1; j < rows.length; j++) {
580 if (rows[j] != getActiveArticleId()) {
581 next_id = rows[j];
582 break;
583 }
584 }
585 break;
586 }
587 }
588 }
589
590 if (mode == "next") {
591 if (next_id || getActiveArticleId()) {
592 if (isCdmMode()) {
593
594 var article = $("RROW-" + getActiveArticleId());
595 var ctr = $("headlines-frame");
596
597 if (!noscroll && article && article.offsetTop + article.offsetHeight >
598 ctr.scrollTop + ctr.offsetHeight) {
599
600 scrollArticle(ctr.offsetHeight/4);
601
602 } else if (next_id) {
603 cdmExpandArticle(next_id, noexpand);
604 cdmScrollToArticleId(next_id, true);
605 }
606
607 } else if (next_id) {
608 correctHeadlinesOffset(next_id);
609 view(next_id, getActiveFeedId(), noexpand);
610 }
611 }
612 }
613
614 if (mode == "prev") {
615 if (prev_id || getActiveArticleId()) {
616 if (isCdmMode()) {
617
618 var article = $("RROW-" + getActiveArticleId());
619 var prev_article = $("RROW-" + prev_id);
620 var ctr = $("headlines-frame");
621
622 if (!getInitParam("cdm_expanded")) {
623
624 if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
625 scrollArticle(-ctr.offsetHeight/4);
626 } else {
627 cdmExpandArticle(prev_id, noexpand);
628 cdmScrollToArticleId(prev_id, true);
629 }
630 } else {
631
632 if (!noscroll && article && article.offsetTop < ctr.scrollTop) {
633 scrollArticle(-ctr.offsetHeight/3);
634 } else if (!noscroll && prev_article &&
635 prev_article.offsetTop < ctr.scrollTop) {
636 cdmExpandArticle(prev_id, noexpand);
637 scrollArticle(-ctr.offsetHeight/4);
638 } else if (prev_id) {
639 cdmExpandArticle(prev_id, noexpand);
640 cdmScrollToArticleId(prev_id, noscroll);
641 }
642 }
643
644 } else if (prev_id) {
645 correctHeadlinesOffset(prev_id);
646 view(prev_id, getActiveFeedId(), noexpand);
647 }
648 }
649 }
650
651 } catch (e) {
652 exception_error("moveToPost", e);
653 }
654 }
655
656 function toggleSelected(id, force_on) {
657 try {
658 var row = $("RROW-" + id);
659
660 if (row) {
661 var cb = dijit.getEnclosingWidget(
662 row.getElementsByClassName("rchk")[0]);
663
664 if (row.hasClassName('Selected') && !force_on) {
665 row.removeClassName('Selected');
666 if (cb) cb.attr("checked", false);
667 } else {
668 row.addClassName('Selected');
669 if (cb) cb.attr("checked", true);
670 }
671 }
672
673 updateSelectedPrompt();
674 } catch (e) {
675 exception_error("toggleSelected", e);
676 }
677 }
678
679 function updateSelectedPrompt() {
680 try {
681 var count = getSelectedArticleIds2().size();
682 var elem = $("selected_prompt");
683
684 if (elem) {
685 elem.innerHTML = ngettext("%d article selected",
686 "%d articles selected", count).replace("%d", count);
687
688 if (count > 0)
689 Element.show(elem);
690 else
691 Element.hide(elem);
692 }
693
694 } catch (e) {
695 exception_error("updateSelectedPrompt", e);
696 }
697 }
698
699 function toggleUnread_afh(effect) {
700 try {
701
702 var elem = effect.element;
703 elem.style.backgroundColor = "";
704
705 } catch (e) {
706 exception_error("toggleUnread_afh", e);
707 }
708 }
709
710 function toggleUnread(id, cmode, effect) {
711 try {
712
713 var row = $("RROW-" + id);
714 if (row) {
715 if (cmode == undefined || cmode == 2) {
716 if (row.hasClassName("Unread")) {
717 row.removeClassName("Unread");
718
719 } else {
720 row.addClassName("Unread");
721 }
722
723 } else if (cmode == 0) {
724
725 row.removeClassName("Unread");
726
727 } else if (cmode == 1) {
728 row.addClassName("Unread");
729 }
730
731 if (cmode == undefined) cmode = 2;
732
733 var query = "?op=rpc&method=catchupSelected" +
734 "&cmode=" + param_escape(cmode) + "&ids=" + param_escape(id);
735
736 // notify_progress("Loading, please wait...");
737
738 new Ajax.Request("backend.php", {
739 parameters: query,
740 onComplete: function(transport) {
741 handle_rpc_json(transport);
742 } });
743
744 }
745
746 } catch (e) {
747 exception_error("toggleUnread", e);
748 }
749 }
750
751 function selectionRemoveLabel(id, ids) {
752 try {
753
754 if (!ids) ids = getSelectedArticleIds2();
755
756 if (ids.length == 0) {
757 alert(__("No articles are selected."));
758 return;
759 }
760
761 var query = "?op=article&method=removeFromLabel&ids=" +
762 param_escape(ids.toString()) + "&lid=" + param_escape(id);
763
764 console.log(query);
765
766 new Ajax.Request("backend.php", {
767 parameters: query,
768 onComplete: function(transport) {
769 handle_rpc_json(transport);
770 show_labels_in_headlines(transport);
771 } });
772
773 } catch (e) {
774 exception_error("selectionAssignLabel", e);
775
776 }
777 }
778
779 function selectionAssignLabel(id, ids) {
780 try {
781
782 if (!ids) ids = getSelectedArticleIds2();
783
784 if (ids.length == 0) {
785 alert(__("No articles are selected."));
786 return;
787 }
788
789 var query = "?op=article&method=assignToLabel&ids=" +
790 param_escape(ids.toString()) + "&lid=" + param_escape(id);
791
792 console.log(query);
793
794 new Ajax.Request("backend.php", {
795 parameters: query,
796 onComplete: function(transport) {
797 handle_rpc_json(transport);
798 show_labels_in_headlines(transport);
799 } });
800
801 } catch (e) {
802 exception_error("selectionAssignLabel", e);
803
804 }
805 }
806
807 function selectionToggleUnread(set_state, callback, no_error, ids) {
808 try {
809 var rows = ids ? ids : getSelectedArticleIds2();
810
811 if (rows.length == 0 && !no_error) {
812 alert(__("No articles are selected."));
813 return;
814 }
815
816 for (var i = 0; i < rows.length; i++) {
817 var row = $("RROW-" + rows[i]);
818 if (row) {
819 if (set_state == undefined) {
820 if (row.hasClassName("Unread")) {
821 row.removeClassName("Unread");
822 } else {
823 row.addClassName("Unread");
824 }
825 }
826
827 if (set_state == false) {
828 row.removeClassName("Unread");
829 }
830
831 if (set_state == true) {
832 row.addClassName("Unread");
833 }
834 }
835 }
836
837 updateFloatingTitle(true);
838
839 if (rows.length > 0) {
840
841 var cmode = "";
842
843 if (set_state == undefined) {
844 cmode = "2";
845 } else if (set_state == true) {
846 cmode = "1";
847 } else if (set_state == false) {
848 cmode = "0";
849 }
850
851 var query = "?op=rpc&method=catchupSelected" +
852 "&cmode=" + cmode + "&ids=" + param_escape(rows.toString());
853
854 notify_progress("Loading, please wait...");
855
856 new Ajax.Request("backend.php", {
857 parameters: query,
858 onComplete: function(transport) {
859 handle_rpc_json(transport);
860 if (callback) callback(transport);
861 } });
862
863 }
864
865 } catch (e) {
866 exception_error("selectionToggleUnread", e);
867 }
868 }
869
870 // sel_state ignored
871 function selectionToggleMarked(sel_state, callback, no_error, ids) {
872 try {
873
874 var rows = ids ? ids : getSelectedArticleIds2();
875
876 if (rows.length == 0 && !no_error) {
877 alert(__("No articles are selected."));
878 return;
879 }
880
881 for (var i = 0; i < rows.length; i++) {
882 toggleMark(rows[i], true, true);
883 }
884
885 if (rows.length > 0) {
886
887 var query = "?op=rpc&method=markSelected&ids=" +
888 param_escape(rows.toString()) + "&cmode=2";
889
890 new Ajax.Request("backend.php", {
891 parameters: query,
892 onComplete: function(transport) {
893 handle_rpc_json(transport);
894 if (callback) callback(transport);
895 } });
896
897 }
898
899 } catch (e) {
900 exception_error("selectionToggleMarked", e);
901 }
902 }
903
904 // sel_state ignored
905 function selectionTogglePublished(sel_state, callback, no_error, ids) {
906 try {
907
908 var rows = ids ? ids : getSelectedArticleIds2();
909
910 if (rows.length == 0 && !no_error) {
911 alert(__("No articles are selected."));
912 return;
913 }
914
915 for (var i = 0; i < rows.length; i++) {
916 togglePub(rows[i], true, true);
917 }
918
919 if (rows.length > 0) {
920
921 var query = "?op=rpc&method=publishSelected&ids=" +
922 param_escape(rows.toString()) + "&cmode=2";
923
924 new Ajax.Request("backend.php", {
925 parameters: query,
926 onComplete: function(transport) {
927 handle_rpc_json(transport);
928 } });
929
930 }
931
932 } catch (e) {
933 exception_error("selectionToggleMarked", e);
934 }
935 }
936
937 function getSelectedArticleIds2() {
938
939 var rv = [];
940
941 $$("#headlines-frame > div[id*=RROW][class*=Selected]").each(
942 function(child) {
943 rv.push(child.id.replace("RROW-", ""));
944 });
945
946 return rv;
947 }
948
949 function getLoadedArticleIds() {
950 var rv = [];
951
952 var children = $$("#headlines-frame > div[id*=RROW-]");
953
954 children.each(function(child) {
955 rv.push(child.id.replace("RROW-", ""));
956 });
957
958 return rv;
959
960 }
961
962 // mode = all,none,unread,invert,marked,published
963 function selectArticles(mode, query) {
964 try {
965
966 if (!query) query = "#headlines-frame > div[id*=RROW]";
967
968 var children = $$(query);
969
970 children.each(function(child) {
971 var id = child.id.replace("RROW-", "");
972
973 var cb = dijit.getEnclosingWidget(
974 child.getElementsByClassName("rchk")[0]);
975
976 if (mode == "all") {
977 child.addClassName("Selected");
978 if (cb) cb.attr("checked", true);
979 } else if (mode == "unread") {
980 if (child.hasClassName("Unread")) {
981 child.addClassName("Selected");
982 if (cb) cb.attr("checked", true);
983 } else {
984 child.removeClassName("Selected");
985 if (cb) cb.attr("checked", false);
986 }
987 } else if (mode == "marked") {
988 if (child.hasClassName("marked")) {
989 child.addClassName("Selected");
990 if (cb) cb.attr("checked", true);
991 } else {
992 child.removeClassName("Selected");
993 if (cb) cb.attr("checked", false);
994 }
995 } else if (mode == "published") {
996 if (child.hasClassName("published")) {
997 child.addClassName("Selected");
998 if (cb) cb.attr("checked", true);
999 } else {
1000 child.removeClassName("Selected");
1001 if (cb) cb.attr("checked", false);
1002 }
1003
1004 } else if (mode == "invert") {
1005 if (child.hasClassName("Selected")) {
1006 child.removeClassName("Selected");
1007 if (cb) cb.attr("checked", false);
1008 } else {
1009 child.addClassName("Selected");
1010 if (cb) cb.attr("checked", true);
1011 }
1012
1013 } else {
1014 child.removeClassName("Selected");
1015 if (cb) cb.attr("checked", false);
1016 }
1017 });
1018
1019 updateSelectedPrompt();
1020
1021 } catch (e) {
1022 exception_error("selectArticles", e);
1023 }
1024 }
1025
1026 function deleteSelection() {
1027
1028 try {
1029
1030 var rows = getSelectedArticleIds2();
1031
1032 if (rows.length == 0) {
1033 alert(__("No articles are selected."));
1034 return;
1035 }
1036
1037 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1038 var str;
1039
1040 if (getActiveFeedId() != 0) {
1041 str = ngettext("Delete %d selected article in %s?", "Delete %d selected articles in %s?" , rows.length);
1042 } else {
1043 str = ngettext("Delete %d selected article?", "Delete %d selected articles?", rows.length);
1044 }
1045
1046 str = str.replace("%d", rows.length);
1047 str = str.replace("%s", fn);
1048
1049 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1050 return;
1051 }
1052
1053 query = "?op=rpc&method=delete&ids=" + param_escape(rows);
1054
1055 console.log(query);
1056
1057 new Ajax.Request("backend.php", {
1058 parameters: query,
1059 onComplete: function(transport) {
1060 handle_rpc_json(transport);
1061 viewCurrentFeed();
1062 } });
1063
1064 } catch (e) {
1065 exception_error("deleteSelection", e);
1066 }
1067 }
1068
1069 function archiveSelection() {
1070
1071 try {
1072
1073 var rows = getSelectedArticleIds2();
1074
1075 if (rows.length == 0) {
1076 alert(__("No articles are selected."));
1077 return;
1078 }
1079
1080 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1081 var str;
1082 var op;
1083
1084 if (getActiveFeedId() != 0) {
1085 str = ngettext("Archive %d selected article in %s?", "Archive %d selected articles in %s?", rows.length);
1086 op = "archive";
1087 } else {
1088 str = ngettext("Move %d archived article back?", "Move %d archived articles back?", rows.length);
1089
1090 str += " " + __("Please note that unstarred articles might get purged on next feed update.");
1091
1092 op = "unarchive";
1093 }
1094
1095 str = str.replace("%d", rows.length);
1096 str = str.replace("%s", fn);
1097
1098 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1099 return;
1100 }
1101
1102 query = "?op=rpc&method="+op+"&ids=" + param_escape(rows);
1103
1104 console.log(query);
1105
1106 for (var i = 0; i < rows.length; i++) {
1107 cache_delete("article:" + rows[i]);
1108 }
1109
1110 new Ajax.Request("backend.php", {
1111 parameters: query,
1112 onComplete: function(transport) {
1113 handle_rpc_json(transport);
1114 viewCurrentFeed();
1115 } });
1116
1117 } catch (e) {
1118 exception_error("archiveSelection", e);
1119 }
1120 }
1121
1122 function catchupSelection() {
1123
1124 try {
1125
1126 var rows = getSelectedArticleIds2();
1127
1128 if (rows.length == 0) {
1129 alert(__("No articles are selected."));
1130 return;
1131 }
1132
1133 var fn = getFeedName(getActiveFeedId(), activeFeedIsCat());
1134
1135 var str = ngettext("Mark %d selected article in %s as read?", "Mark %d selected articles in %s as read?", rows.length);
1136
1137 str = str.replace("%d", rows.length);
1138 str = str.replace("%s", fn);
1139
1140 if (getInitParam("confirm_feed_catchup") == 1 && !confirm(str)) {
1141 return;
1142 }
1143
1144 selectionToggleUnread(false, 'viewCurrentFeed()', true);
1145
1146 } catch (e) {
1147 exception_error("catchupSelection", e);
1148 }
1149 }
1150
1151 function editArticleTags(id) {
1152 var query = "backend.php?op=article&method=editArticleTags&param=" + param_escape(id);
1153
1154 if (dijit.byId("editTagsDlg"))
1155 dijit.byId("editTagsDlg").destroyRecursive();
1156
1157 dialog = new dijit.Dialog({
1158 id: "editTagsDlg",
1159 title: __("Edit article Tags"),
1160 style: "width: 600px",
1161 execute: function() {
1162 if (this.validate()) {
1163 var query = dojo.objectToQuery(this.attr('value'));
1164
1165 notify_progress("Saving article tags...", true);
1166
1167 new Ajax.Request("backend.php", {
1168 parameters: query,
1169 onComplete: function(transport) {
1170 try {
1171 notify('');
1172 dialog.hide();
1173
1174 var data = JSON.parse(transport.responseText);
1175
1176 if (data) {
1177 var id = data.id;
1178
1179 console.log(id);
1180
1181 var tags = $("ATSTR-" + id);
1182 var tooltip = dijit.byId("ATSTRTIP-" + id);
1183
1184 if (tags) tags.innerHTML = data.content;
1185 if (tooltip) tooltip.attr('label', data.content_full);
1186 }
1187 } catch (e) {
1188 exception_error("editArticleTags/inner", e);
1189 }
1190
1191 }});
1192 }
1193 },
1194 href: query,
1195 });
1196
1197 var tmph = dojo.connect(dialog, 'onLoad', function() {
1198 dojo.disconnect(tmph);
1199
1200 new Ajax.Autocompleter('tags_str', 'tags_choices',
1201 "backend.php?op=article&method=completeTags",
1202 { tokens: ',', paramName: "search" });
1203 });
1204
1205 dialog.show();
1206
1207 }
1208
1209 function cdmScrollToArticleId(id, force) {
1210 try {
1211 var ctr = $("headlines-frame");
1212 var e = $("RROW-" + id);
1213
1214 if (!e || !ctr) return;
1215
1216 if (force || e.offsetTop+e.offsetHeight > (ctr.scrollTop+ctr.offsetHeight) ||
1217 e.offsetTop < ctr.scrollTop) {
1218
1219 // expanded cdm has a 4px margin now
1220 ctr.scrollTop = parseInt(e.offsetTop) - 4;
1221 }
1222
1223 } catch (e) {
1224 exception_error("cdmScrollToArticleId", e);
1225 }
1226 }
1227
1228 function setActiveArticleId(id) {
1229 _active_article_id = id;
1230 PluginHost.run(PluginHost.HOOK_ARTICLE_SET_ACTIVE, _active_article_id);
1231 }
1232
1233 function getActiveArticleId() {
1234 return _active_article_id;
1235 }
1236
1237 function postMouseIn(e, id) {
1238 post_under_pointer = id;
1239 }
1240
1241 function postMouseOut(id) {
1242 post_under_pointer = false;
1243 }
1244
1245 function unpackVisibleHeadlines() {
1246 try {
1247 if (!isCdmMode() || !getInitParam("cdm_expanded")) return;
1248
1249 $$("#headlines-frame > div[id*=RROW]").each(
1250 function(child) {
1251 if (child.offsetTop <= $("headlines-frame").scrollTop +
1252 $("headlines-frame").offsetHeight) {
1253
1254 var cencw = $("CENCW-" + child.id.replace("RROW-", ""));
1255
1256 if (cencw) {
1257 PluginHost.run(PluginHost.HOOK_ARTICLE_RENDERED_CDM, child);
1258
1259 cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
1260 cencw.setAttribute('id', '');
1261 Element.show(cencw);
1262 }
1263 }
1264 }
1265 );
1266
1267 } catch (e) {
1268 exception_error("unpackVisibleHeadlines", e);
1269 }
1270 }
1271
1272 function headlines_scroll_handler(e) {
1273 try {
1274 var hsp = $("headlines-spacer");
1275
1276 unpackVisibleHeadlines();
1277
1278 // set topmost child in the buffer as active
1279 if (isCdmMode() && getInitParam("cdm_auto_catchup") == 1 &&
1280 getSelectedArticleIds2().length <= 1 &&
1281 getInitParam("cdm_expanded")) {
1282 var rows = $$("#headlines-frame > div[id*=RROW]");
1283
1284 for (var i = 0; i < rows.length; i++) {
1285 var child = rows[i];
1286
1287 if ($("headlines-frame").scrollTop <= child.offsetTop &&
1288 child.offsetTop - $("headlines-frame").scrollTop < 100 &&
1289 child.id.replace("RROW-", "") != _active_article_id) {
1290
1291 if (_active_article_id) {
1292 var row = $("RROW-" + _active_article_id);
1293 if (row) row.removeClassName("active");
1294 }
1295
1296 _active_article_id = child.id.replace("RROW-", "");
1297 showArticleInHeadlines(_active_article_id, true);
1298 updateSelectedPrompt();
1299 break;
1300 }
1301 }
1302 }
1303
1304 if (!_infscroll_disable) {
1305 if ((hsp && e.scrollTop + e.offsetHeight >= hsp.offsetTop - hsp.offsetHeight) ||
1306 (e.scrollHeight != 0 &&
1307 ((e.scrollTop + e.offsetHeight) / e.scrollHeight >= 0.7))) {
1308
1309 if (hsp)
1310 hsp.innerHTML = "<img src='images/indicator_tiny.gif'> " +
1311 __("Loading, please wait...");
1312
1313 loadMoreHeadlines();
1314 return;
1315
1316 }
1317 } else {
1318 if (hsp) hsp.innerHTML = "";
1319 }
1320
1321 if (isCdmMode()) {
1322 updateFloatingTitle();
1323 }
1324
1325 if (getInitParam("cdm_auto_catchup") == 1) {
1326
1327 // let's get DOM some time to settle down
1328 var ts = new Date().getTime();
1329 if (ts - _last_headlines_update < 100) return;
1330
1331 $$("#headlines-frame > div[id*=RROW][class*=Unread]").each(
1332 function(child) {
1333 if (child.hasClassName("Unread") && $("headlines-frame").scrollTop >
1334 (child.offsetTop + child.offsetHeight/2)) {
1335
1336 var id = child.id.replace("RROW-", "");
1337
1338 if (catchup_id_batch.indexOf(id) == -1)
1339 catchup_id_batch.push(id);
1340
1341 //console.log("auto_catchup_batch: " + catchup_id_batch.toString());
1342 }
1343
1344 });
1345
1346 if (catchup_id_batch.length > 0) {
1347 window.clearTimeout(catchup_timeout_id);
1348
1349 if (!_infscroll_request_sent) {
1350 catchup_timeout_id = window.setTimeout('catchupBatchedArticles()',
1351 500);
1352 }
1353 } else if (_infscroll_disable) {
1354 var child = $$("#headlines-frame div[id*=RROW]").last();
1355
1356 if (child && $("headlines-frame").scrollTop >
1357 (child.offsetTop + child.offsetHeight/2)) {
1358
1359 console.log("we seem to be at an end");
1360
1361 if (getInitParam("on_catchup_show_next_feed") == "1") {
1362 var is_cat = activeFeedIsCat();
1363 var nuf = getNextUnreadFeed(getActiveFeedId(), is_cat);
1364
1365 if (nuf) viewfeed(nuf, '', is_cat);
1366 }
1367 }
1368 }
1369 }
1370
1371 } catch (e) {
1372 console.warn("headlines_scroll_handler: " + e);
1373 }
1374 }
1375
1376 function catchupBatchedArticles() {
1377 try {
1378 if (catchup_id_batch.length > 0 && !_infscroll_request_sent) {
1379
1380 // make a copy of the array
1381 var batch = catchup_id_batch.slice();
1382 var query = "?op=rpc&method=catchupSelected" +
1383 "&cmode=0&ids=" + param_escape(batch.toString());
1384
1385 console.log(query);
1386
1387 new Ajax.Request("backend.php", {
1388 parameters: query,
1389 onComplete: function(transport) {
1390 handle_rpc_json(transport);
1391
1392 reply = JSON.parse(transport.responseText);
1393 var batch = reply.ids;
1394
1395 batch.each(function(id) {
1396 console.log(id);
1397 var elem = $("RROW-" + id);
1398 if (elem) elem.removeClassName("Unread");
1399 catchup_id_batch.remove(id);
1400 });
1401
1402 updateFloatingTitle(true);
1403
1404 } });
1405 }
1406
1407 } catch (e) {
1408 exception_error("catchupBatchedArticles", e);
1409 }
1410 }
1411
1412 function catchupRelativeToArticle(below, id) {
1413
1414 try {
1415
1416 if (!id) id = getActiveArticleId();
1417
1418 if (!id) {
1419 alert(__("No article is selected."));
1420 return;
1421 }
1422
1423 var visible_ids = getVisibleArticleIds();
1424
1425 var ids_to_mark = new Array();
1426
1427 if (!below) {
1428 for (var i = 0; i < visible_ids.length; i++) {
1429 if (visible_ids[i] != id) {
1430 var e = $("RROW-" + visible_ids[i]);
1431
1432 if (e && e.hasClassName("Unread")) {
1433 ids_to_mark.push(visible_ids[i]);
1434 }
1435 } else {
1436 break;
1437 }
1438 }
1439 } else {
1440 for (var i = visible_ids.length-1; i >= 0; i--) {
1441 if (visible_ids[i] != id) {
1442 var e = $("RROW-" + visible_ids[i]);
1443
1444 if (e && e.hasClassName("Unread")) {
1445 ids_to_mark.push(visible_ids[i]);
1446 }
1447 } else {
1448 break;
1449 }
1450 }
1451 }
1452
1453 if (ids_to_mark.length == 0) {
1454 alert(__("No articles found to mark"));
1455 } else {
1456 var msg = ngettext("Mark %d article as read?", "Mark %d articles as read?", ids_to_mark.length).replace("%d", ids_to_mark.length);
1457
1458 if (getInitParam("confirm_feed_catchup") != 1 || confirm(msg)) {
1459
1460 for (var i = 0; i < ids_to_mark.length; i++) {
1461 var e = $("RROW-" + ids_to_mark[i]);
1462 e.removeClassName("Unread");
1463 }
1464
1465 var query = "?op=rpc&method=catchupSelected" +
1466 "&cmode=0" + "&ids=" + param_escape(ids_to_mark.toString());
1467
1468 new Ajax.Request("backend.php", {
1469 parameters: query,
1470 onComplete: function(transport) {
1471 handle_rpc_json(transport);
1472 } });
1473
1474 }
1475 }
1476
1477 } catch (e) {
1478 exception_error("catchupRelativeToArticle", e);
1479 }
1480 }
1481
1482 function cdmCollapseArticle(event, id, unmark) {
1483 try {
1484 if (unmark == undefined) unmark = true;
1485
1486 var row = $("RROW-" + id);
1487 var elem = $("CICD-" + id);
1488
1489 if (elem && row) {
1490 var collapse = $$("div#RROW-" + id +
1491 " span[class='collapseBtn']")[0];
1492
1493 Element.hide(elem);
1494 Element.show("CEXC-" + id);
1495 Element.hide(collapse);
1496
1497 if (unmark) {
1498 row.removeClassName("active");
1499
1500 markHeadline(id, false);
1501
1502 if (id == getActiveArticleId()) {
1503 setActiveArticleId(0);
1504 }
1505
1506 updateSelectedPrompt();
1507 }
1508
1509 if (event) Event.stop(event);
1510
1511 PluginHost.run(PluginHost.HOOK_ARTICLE_COLLAPSED, id);
1512
1513 if (row.offsetTop < $("headlines-frame").scrollTop)
1514 scrollToRowId(row.id);
1515
1516 Element.hide("floatingTitle");
1517 $("floatingTitle").setAttribute("rowid", false);
1518 }
1519
1520 } catch (e) {
1521 exception_error("cdmCollapseArticle", e);
1522 }
1523 }
1524
1525 function cdmExpandArticle(id, noexpand) {
1526 try {
1527 console.log("cdmExpandArticle " + id);
1528
1529 if (!$("RROW-" + id)) return false;
1530
1531 var oldrow = $("RROW-" + getActiveArticleId());
1532
1533 var elem = $("CICD-" + getActiveArticleId());
1534
1535 if (id == getActiveArticleId() && Element.visible(elem))
1536 return true;
1537
1538 selectArticles("none");
1539
1540 var old_offset = $("RROW-" + id).offsetTop;
1541
1542 if (getActiveArticleId() && elem && !getInitParam("cdm_expanded")) {
1543 var collapse = $$("div#RROW-" + getActiveArticleId() +
1544 " span[class='collapseBtn']")[0];
1545
1546 Element.hide(elem);
1547 Element.show("CEXC-" + getActiveArticleId());
1548 Element.hide(collapse);
1549 }
1550
1551 if (oldrow) oldrow.removeClassName("active");
1552
1553 setActiveArticleId(id);
1554
1555 elem = $("CICD-" + id);
1556
1557 var collapse = $$("div#RROW-" + id +
1558 " span[class='collapseBtn']")[0];
1559
1560 var cencw = $("CENCW-" + id);
1561
1562 if (!Element.visible(elem) && !noexpand) {
1563 if (cencw) {
1564 cencw.innerHTML = htmlspecialchars_decode(cencw.innerHTML);
1565 cencw.setAttribute('id', '');
1566 Element.show(cencw);
1567 }
1568
1569 Element.show(elem);
1570 Element.hide("CEXC-" + id);
1571 Element.show(collapse);
1572 }
1573
1574 var new_offset = $("RROW-" + id).offsetTop;
1575
1576 if (old_offset > new_offset)
1577 $("headlines-frame").scrollTop -= (old_offset-new_offset);
1578
1579 if (!noexpand)
1580 toggleUnread(id, 0, true);
1581 toggleSelected(id);
1582 $("RROW-" + id).addClassName("active");
1583
1584 PluginHost.run(PluginHost.HOOK_ARTICLE_EXPANDED, id);
1585
1586 } catch (e) {
1587 exception_error("cdmExpandArticle", e);
1588 }
1589
1590 return false;
1591 }
1592
1593 function getArticleUnderPointer() {
1594 return post_under_pointer;
1595 }
1596
1597 function scrollArticle(offset) {
1598 try {
1599 if (!isCdmMode()) {
1600 var ci = $("content-insert");
1601 if (ci) {
1602 ci.scrollTop += offset;
1603 }
1604 } else {
1605 var hi = $("headlines-frame");
1606 if (hi) {
1607 hi.scrollTop += offset;
1608 }
1609
1610 }
1611 } catch (e) {
1612 exception_error("scrollArticle", e);
1613 }
1614 }
1615
1616 function show_labels_in_headlines(transport) {
1617 try {
1618 var data = JSON.parse(transport.responseText);
1619
1620 if (data) {
1621 data['info-for-headlines'].each(function(elem) {
1622 $$(".HLLCTR-" + elem.id).each(function(ctr) {
1623 ctr.innerHTML = elem.labels;
1624 });
1625 });
1626 }
1627 } catch (e) {
1628 exception_error("show_labels_in_headlines", e);
1629 }
1630 }
1631
1632 function dismissArticle(id) {
1633 try {
1634 var elem = $("RROW-" + id);
1635
1636 if (!elem) return;
1637
1638 toggleUnread(id, 0, true);
1639
1640 new Effect.Fade(elem, {duration : 0.5});
1641
1642 // Remove the content, too
1643 var elem_content = $("CICD-" + id);
1644 if (elem_content) {
1645 Element.remove(elem_content);
1646 }
1647
1648 if (id == getActiveArticleId()) {
1649 setActiveArticleId(0);
1650 }
1651
1652 } catch (e) {
1653 exception_error("dismissArticle", e);
1654 }
1655 }
1656
1657 function dismissSelectedArticles() {
1658 try {
1659
1660 var ids = getVisibleArticleIds();
1661 var tmp = [];
1662 var sel = [];
1663
1664 for (var i = 0; i < ids.length; i++) {
1665 var elem = $("RROW-" + ids[i]);
1666
1667 if (elem.className && elem.hasClassName("Selected") &&
1668 ids[i] != getActiveArticleId()) {
1669 new Effect.Fade(elem, {duration : 0.5});
1670 sel.push(ids[i]);
1671
1672 // Remove the content, too
1673 var elem_content = $("CICD-" + ids[i]);
1674 if (elem_content) {
1675 Element.remove(elem_content);
1676 }
1677 } else {
1678 tmp.push(ids[i]);
1679 }
1680 }
1681
1682 if (sel.length > 0)
1683 selectionToggleUnread(false);
1684
1685
1686 } catch (e) {
1687 exception_error("dismissSelectedArticles", e);
1688 }
1689 }
1690
1691 function dismissReadArticles() {
1692 try {
1693
1694 var ids = getVisibleArticleIds();
1695 var tmp = [];
1696
1697 for (var i = 0; i < ids.length; i++) {
1698 var elem = $("RROW-" + ids[i]);
1699
1700 if (elem.className && !elem.hasClassName("Unread") &&
1701 !elem.hasClassName("Selected")) {
1702
1703 new Effect.Fade(elem, {duration : 0.5});
1704
1705 // Remove the content, too
1706 var elem_content = $("CICD-" + ids[i]);
1707 if (elem_content) {
1708 Element.remove(elem_content);
1709 }
1710 } else {
1711 tmp.push(ids[i]);
1712 }
1713 }
1714
1715 } catch (e) {
1716 exception_error("dismissReadArticles", e);
1717 }
1718 }
1719
1720 function getVisibleArticleIds() {
1721 var ids = [];
1722
1723 try {
1724
1725 getLoadedArticleIds().each(function(id) {
1726 var elem = $("RROW-" + id);
1727 if (elem && Element.visible(elem))
1728 ids.push(id);
1729 });
1730
1731 } catch (e) {
1732 exception_error("getVisibleArticleIds", e);
1733 }
1734
1735 return ids;
1736 }
1737
1738 function cdmClicked(event, id) {
1739 try {
1740 //var shift_key = event.shiftKey;
1741
1742 if (!event.ctrlKey) {
1743
1744 if (!getInitParam("cdm_expanded")) {
1745 return cdmExpandArticle(id);
1746 } else {
1747
1748 var elem = $("RROW-" + getActiveArticleId());
1749
1750 if (elem) elem.removeClassName("active");
1751
1752 selectArticles("none");
1753 toggleSelected(id);
1754
1755 var elem = $("RROW-" + id);
1756 var article_is_unread = elem.hasClassName("Unread");
1757
1758 elem.removeClassName("Unread");
1759 elem.addClassName("active");
1760
1761 setActiveArticleId(id);
1762
1763 if (article_is_unread) {
1764 decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
1765 updateFloatingTitle(true);
1766 }
1767
1768 var query = "?op=rpc&method=catchupSelected" +
1769 "&cmode=0&ids=" + param_escape(id);
1770
1771 new Ajax.Request("backend.php", {
1772 parameters: query,
1773 onComplete: function(transport) {
1774 handle_rpc_json(transport);
1775 } });
1776
1777 return !event.shiftKey;
1778 }
1779
1780 } else if (event.target.parents(".cdmHeader").length > 0) {
1781
1782 toggleSelected(id, true);
1783
1784 var elem = $("RROW-" + id);
1785 var article_is_unread = elem.hasClassName("Unread");
1786
1787 if (article_is_unread) {
1788 decrementFeedCounter(getActiveFeedId(), activeFeedIsCat());
1789 }
1790
1791 toggleUnread(id, 0, false);
1792
1793 openArticleInNewWindow(id);
1794 }
1795
1796 var unread_in_buffer = $$("#headlines-frame > div[id*=RROW][class*=Unread]").length
1797 request_counters(unread_in_buffer == 0);
1798
1799 } catch (e) {
1800 exception_error("cdmClicked");
1801 }
1802
1803 return false;
1804 }
1805
1806 function hlClicked(event, id) {
1807 try {
1808 if (event.which == 2) {
1809 view(id);
1810 return true;
1811 } else if (event.ctrlKey) {
1812 toggleSelected(id, true);
1813 toggleUnread(id, 0, false);
1814 openArticleInNewWindow(id);
1815 return false;
1816 } else {
1817 view(id);
1818 return false;
1819 }
1820
1821 } catch (e) {
1822 exception_error("hlClicked");
1823 }
1824 }
1825
1826 function getFirstVisibleHeadlineId() {
1827 var rows = getVisibleArticleIds();
1828 return rows[0];
1829
1830 }
1831
1832 function getLastVisibleHeadlineId() {
1833 var rows = getVisibleArticleIds();
1834 return rows[rows.length-1];
1835 }
1836
1837 function openArticleInNewWindow(id) {
1838 toggleUnread(id, 0, false);
1839 window.open("backend.php?op=article&method=redirect&id=" + id);
1840 }
1841
1842 function isCdmMode() {
1843 return getInitParam("combined_display_mode");
1844 }
1845
1846 function markHeadline(id, marked) {
1847 if (marked == undefined) marked = true;
1848
1849 var row = $("RROW-" + id);
1850 if (row) {
1851 var check = dijit.getEnclosingWidget(
1852 row.getElementsByClassName("rchk")[0]);
1853
1854 if (check) {
1855 check.attr("checked", marked);
1856 }
1857
1858 if (marked)
1859 row.addClassName("Selected");
1860 else
1861 row.removeClassName("Selected");
1862 }
1863 }
1864
1865 function getRelativePostIds(id, limit) {
1866
1867 var tmp = [];
1868
1869 try {
1870
1871 if (!limit) limit = 6; //3
1872
1873 var ids = getVisibleArticleIds();
1874
1875 for (var i = 0; i < ids.length; i++) {
1876 if (ids[i] == id) {
1877 for (var k = 1; k <= limit; k++) {
1878 //if (i > k-1) tmp.push(ids[i-k]);
1879 if (i < ids.length-k) tmp.push(ids[i+k]);
1880 }
1881 break;
1882 }
1883 }
1884
1885 } catch (e) {
1886 exception_error("getRelativePostIds", e);
1887 }
1888
1889 return tmp;
1890 }
1891
1892 function correctHeadlinesOffset(id) {
1893
1894 try {
1895
1896 var container = $("headlines-frame");
1897 var row = $("RROW-" + id);
1898
1899 if (!container || !row) return;
1900
1901 var viewport = container.offsetHeight;
1902
1903 var rel_offset_top = row.offsetTop - container.scrollTop;
1904 var rel_offset_bottom = row.offsetTop + row.offsetHeight - container.scrollTop;
1905
1906 //console.log("Rtop: " + rel_offset_top + " Rbtm: " + rel_offset_bottom);
1907 //console.log("Vport: " + viewport);
1908
1909 if (rel_offset_top <= 0 || rel_offset_top > viewport) {
1910 container.scrollTop = row.offsetTop;
1911 } else if (rel_offset_bottom > viewport) {
1912
1913 /* doesn't properly work with Opera in some cases because
1914 Opera fucks up element scrolling */
1915
1916 container.scrollTop = row.offsetTop + row.offsetHeight - viewport;
1917 }
1918
1919 } catch (e) {
1920 exception_error("correctHeadlinesOffset", e);
1921 }
1922
1923 }
1924
1925 function headlineActionsChange(elem) {
1926 try {
1927 eval(elem.value);
1928 elem.attr('value', 'false');
1929 } catch (e) {
1930 exception_error("headlineActionsChange", e);
1931 }
1932 }
1933
1934 function closeArticlePanel() {
1935
1936 if (dijit.byId("content-insert"))
1937 dijit.byId("headlines-wrap-inner").removeChild(
1938 dijit.byId("content-insert"));
1939 }
1940
1941 function initFloatingMenu() {
1942 try {
1943 if (dijit.byId("floatingMenu"))
1944 dijit.byId("floatingMenu").destroyRecursive();
1945
1946 var menu = new dijit.Menu({
1947 id: "floatingMenu",
1948 targetNodeIds: ["floatingTitle"]
1949 });
1950
1951 var id = $("floatingTitle").getAttribute("rowid").replace("RROW-", "");
1952
1953 headlinesMenuCommon(menu, id);
1954
1955 menu.startup();
1956 } catch (e) {
1957 exception_error("initFloatingMenu", e);
1958 }
1959 }
1960
1961 function headlinesMenuCommon(menu, base_id) {
1962 try {
1963
1964 menu.addChild(new dijit.MenuItem({
1965 label: __("Open original article"),
1966 onClick: function(event) {
1967 openArticleInNewWindow(base_id ? base_id : this.getParent().callerRowId);
1968 }}));
1969
1970 menu.addChild(new dijit.MenuItem({
1971 label: __("Display article URL"),
1972 onClick: function(event) {
1973 displayArticleUrl(base_id ? base_id : this.getParent().callerRowId);
1974 }}));
1975
1976 menu.addChild(new dijit.MenuSeparator());
1977
1978 menu.addChild(new dijit.MenuItem({
1979 label: __("Toggle unread"),
1980 onClick: function(event) {
1981 var ids = getSelectedArticleIds2();
1982 // cast to string
1983 var id = (base_id ? base_id : this.getParent().callerRowId) + "";
1984 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
1985
1986 selectionToggleUnread(undefined, false, true, ids);
1987 }}));
1988
1989 menu.addChild(new dijit.MenuItem({
1990 label: __("Toggle starred"),
1991 onClick: function(event) {
1992 var ids = getSelectedArticleIds2();
1993 // cast to string
1994 var id = (base_id ? base_id : this.getParent().callerRowId) + "";
1995 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
1996
1997 selectionToggleMarked(undefined, false, true, ids);
1998 }}));
1999
2000 menu.addChild(new dijit.MenuItem({
2001 label: __("Toggle published"),
2002 onClick: function(event) {
2003 var ids = getSelectedArticleIds2();
2004 // cast to string
2005 var id = (base_id ? base_id : this.getParent().callerRowId) + "";
2006 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
2007
2008 selectionTogglePublished(undefined, false, true, ids);
2009 }}));
2010
2011 menu.addChild(new dijit.MenuSeparator());
2012
2013 menu.addChild(new dijit.MenuItem({
2014 label: __("Mark above as read"),
2015 onClick: function(event) {
2016 catchupRelativeToArticle(0, base_id ? base_id : this.getParent().callerRowId);
2017 }}));
2018
2019 menu.addChild(new dijit.MenuItem({
2020 label: __("Mark below as read"),
2021 onClick: function(event) {
2022 catchupRelativeToArticle(1, base_id ? base_id : this.getParent().callerRowId);
2023 }}));
2024
2025
2026 var labels = dijit.byId("feedTree").model.getItemsInCategory(-2);
2027
2028 if (labels) {
2029
2030 menu.addChild(new dijit.MenuSeparator());
2031
2032 var labelAddMenu = new dijit.Menu({ownerMenu: menu});
2033 var labelDelMenu = new dijit.Menu({ownerMenu: menu});
2034
2035 labels.each(function(label) {
2036 var id = label.id[0];
2037 var bare_id = id.substr(id.indexOf(":")+1);
2038 var name = label.name[0];
2039
2040 bare_id = feed_to_label_id(bare_id);
2041
2042 labelAddMenu.addChild(new dijit.MenuItem({
2043 label: name,
2044 labelId: bare_id,
2045 onClick: function(event) {
2046 var ids = getSelectedArticleIds2();
2047 // cast to string
2048 var id = (base_id ? base_id : this.getParent().ownerMenu.callerRowId) + "";
2049
2050 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
2051
2052 selectionAssignLabel(this.labelId, ids);
2053 }}));
2054
2055 labelDelMenu.addChild(new dijit.MenuItem({
2056 label: name,
2057 labelId: bare_id,
2058 onClick: function(event) {
2059 var ids = getSelectedArticleIds2();
2060 // cast to string
2061 var id = (base_id ? base_id : this.getParent().ownerMenu.callerRowId) + "";
2062
2063 ids = ids.size() != 0 && ids.indexOf(id) != -1 ? ids : [id];
2064
2065 selectionRemoveLabel(this.labelId, ids);
2066 }}));
2067
2068 });
2069
2070 menu.addChild(new dijit.PopupMenuItem({
2071 label: __("Assign label"),
2072 popup: labelAddMenu,
2073 }));
2074
2075 menu.addChild(new dijit.PopupMenuItem({
2076 label: __("Remove label"),
2077 popup: labelDelMenu,
2078 }));
2079
2080 }
2081
2082
2083 } catch (e) {
2084 exception_error("headlinesMenuCommon", e);
2085 }
2086 }
2087
2088 function initHeadlinesMenu() {
2089 try {
2090 if (dijit.byId("headlinesMenu"))
2091 dijit.byId("headlinesMenu").destroyRecursive();
2092
2093 var ids = [];
2094
2095 if (!isCdmMode()) {
2096 nodes = $$("#headlines-frame > div[id*=RROW]");
2097 } else {
2098 nodes = $$("#headlines-frame span[id*=RTITLE]");
2099 }
2100
2101 nodes.each(function(node) {
2102 ids.push(node.id);
2103 });
2104
2105 var menu = new dijit.Menu({
2106 id: "headlinesMenu",
2107 targetNodeIds: ids,
2108 });
2109
2110 var tmph = dojo.connect(menu, '_openMyself', function (event) {
2111 var callerNode = event.target, match = null, tries = 0;
2112
2113 while (match == null && callerNode && tries <= 3) {
2114 match = callerNode.id.match("^[A-Z]+[-]([0-9]+)$");
2115 callerNode = callerNode.parentNode;
2116 ++tries;
2117 }
2118
2119 if (match) this.callerRowId = parseInt(match[1]);
2120
2121 });
2122
2123 headlinesMenuCommon(menu, false);
2124
2125 menu.startup();
2126
2127 /* vgroup feed title menu */
2128
2129 var nodes = $$("#headlines-frame > div[class='cdmFeedTitle']");
2130 var ids = [];
2131
2132 nodes.each(function(node) {
2133 ids.push(node.id);
2134 });
2135
2136 if (ids.length > 0) {
2137 if (dijit.byId("headlinesFeedTitleMenu"))
2138 dijit.byId("headlinesFeedTitleMenu").destroyRecursive();
2139
2140 var menu = new dijit.Menu({
2141 id: "headlinesFeedTitleMenu",
2142 targetNodeIds: ids,
2143 });
2144
2145 var tmph = dojo.connect(menu, '_openMyself', function (event) {
2146 var callerNode = event.target, match = null, tries = 0;
2147
2148 while (match == null && callerNode && tries <= 3) {
2149 console.log(callerNode.id);
2150
2151 match = callerNode.id.match("^[A-Z]+[-]([0-9]+)$");
2152 callerNode = callerNode.parentNode;
2153 ++tries;
2154
2155 console.log(match[1]);
2156 }
2157
2158 if (match) this.callerRowId = parseInt(match[1]);
2159
2160 });
2161
2162 menu.addChild(new dijit.MenuItem({
2163 label: __("Select articles in group"),
2164 onClick: function(event) {
2165 selectArticles("all",
2166 "#headlines-frame > div[id*=RROW]"+
2167 "[orig-feed-id='"+menu.callerRowId+"']");
2168
2169 }}));
2170
2171 menu.addChild(new dijit.MenuItem({
2172 label: __("Mark group as read"),
2173 onClick: function(event) {
2174 selectArticles("none");
2175 selectArticles("all",
2176 "#headlines-frame > div[id*=RROW]"+
2177 "[orig-feed-id='"+menu.callerRowId+"']");
2178
2179 catchupSelection();
2180 }}));
2181
2182
2183 menu.addChild(new dijit.MenuItem({
2184 label: __("Mark feed as read"),
2185 onClick: function(event) {
2186 catchupFeedInGroup(menu.callerRowId);
2187 }}));
2188
2189 menu.startup();
2190
2191 }
2192
2193 } catch (e) {
2194 exception_error("initHeadlinesMenu", e);
2195 }
2196 }
2197
2198 function cache_set(id, obj) {
2199 //console.log("cache_set: " + id);
2200 if (has_storage)
2201 try {
2202 sessionStorage[id] = obj;
2203 } catch (e) {
2204 sessionStorage.clear();
2205 }
2206 }
2207
2208 function cache_get(id) {
2209 if (has_storage)
2210 return sessionStorage[id];
2211 }
2212
2213 function cache_clear() {
2214 if (has_storage)
2215 sessionStorage.clear();
2216 }
2217
2218 function cache_delete(id) {
2219 if (has_storage)
2220 sessionStorage.removeItem(id);
2221 }
2222
2223 function cancelSearch() {
2224 try {
2225 _search_query = "";
2226 viewCurrentFeed();
2227 } catch (e) {
2228 exception_error("cancelSearch", e);
2229 }
2230 }
2231
2232 function setSelectionScore() {
2233 try {
2234 var ids = getSelectedArticleIds2();
2235
2236 if (ids.length > 0) {
2237 console.log(ids);
2238
2239 var score = prompt(__("Please enter new score for selected articles:"), score);
2240
2241 if (score != undefined) {
2242 var query = "op=article&method=setScore&id=" + param_escape(ids.toString()) +
2243 "&score=" + param_escape(score);
2244
2245 new Ajax.Request("backend.php", {
2246 parameters: query,
2247 onComplete: function(transport) {
2248 var reply = JSON.parse(transport.responseText);
2249 if (reply) {
2250 console.log(ids);
2251
2252 ids.each(function(id) {
2253 var row = $("RROW-" + id);
2254
2255 if (row) {
2256 var pic = row.getElementsByClassName("hlScorePic")[0];
2257
2258 if (pic) {
2259 pic.src = pic.src.replace(/score_.*?\.png/,
2260 reply["score_pic"]);
2261 pic.setAttribute("score", score);
2262 }
2263 }
2264 });
2265 }
2266 } });
2267 }
2268
2269 } else {
2270 alert(__("No articles are selected."));
2271 }
2272 } catch (e) {
2273 exception_error("setSelectionScore", e);
2274 }
2275 }
2276
2277 function changeScore(id, pic) {
2278 try {
2279 var score = pic.getAttribute("score");
2280
2281 var new_score = prompt(__("Please enter new score for this article:"), score);
2282
2283 if (new_score != undefined) {
2284
2285 var query = "op=article&method=setScore&id=" + param_escape(id) +
2286 "&score=" + param_escape(new_score);
2287
2288 new Ajax.Request("backend.php", {
2289 parameters: query,
2290 onComplete: function(transport) {
2291 var reply = JSON.parse(transport.responseText);
2292
2293 if (reply) {
2294 pic.src = pic.src.replace(/score_.*?\.png/, reply["score_pic"]);
2295 pic.setAttribute("score", new_score);
2296 }
2297 } });
2298 }
2299 } catch (e) {
2300 exception_error("changeScore", e);
2301 }
2302 }
2303
2304 function displayArticleUrl(id) {
2305 try {
2306 var query = "op=rpc&method=getlinktitlebyid&id=" + param_escape(id);
2307
2308 new Ajax.Request("backend.php", {
2309 parameters: query,
2310 onComplete: function(transport) {
2311 var reply = JSON.parse(transport.responseText);
2312
2313 if (reply && reply.link) {
2314 prompt(__("Article URL:"), reply.link);
2315 }
2316 } });
2317 } catch (e) {
2318 exception_error("changeScore", e);
2319 }
2320 }
2321
2322 function openSelectedAttachment(elem) {
2323 try {
2324 var url = elem[elem.selectedIndex].value;
2325
2326 if (url) {
2327 window.open(url);
2328 elem.selectedIndex = 0;
2329 }
2330
2331 } catch (e) {
2332 exception_error("openSelectedAttachment", e);
2333 }
2334 }
2335
2336 function scrollToRowId(id) {
2337 try {
2338 var row = $(id);
2339
2340 if (row)
2341 $("headlines-frame").scrollTop = row.offsetTop;
2342
2343 } catch (e) {
2344 exception_error("scrollToRowId", e);
2345 }
2346 }
2347
2348 function updateFloatingTitle(unread_only) {
2349 try {
2350 if (!isCdmMode()) return;
2351
2352 var hf = $("headlines-frame");
2353
2354 var elems = $$("#headlines-frame > div[id*=RROW]");
2355
2356 for (var i = 0; i < elems.length; i++) {
2357
2358 var child = elems[i];
2359
2360 if (child && child.offsetTop + child.offsetHeight > hf.scrollTop) {
2361
2362 var header = child.getElementsByClassName("cdmHeader")[0];
2363
2364 if (unread_only || child.id != $("floatingTitle").getAttribute("rowid")) {
2365 if (child.id != $("floatingTitle").getAttribute("rowid")) {
2366 $("floatingTitle").setAttribute("rowid", child.id);
2367 $("floatingTitle").innerHTML = header.innerHTML;
2368 $("floatingTitle").firstChild.innerHTML = "<img class='anchor markedPic' src='images/page_white_go.png' onclick=\"scrollToRowId('"+child.id+"')\">" + $("floatingTitle").firstChild.innerHTML;
2369
2370 initFloatingMenu();
2371
2372 var cb = $$("#floatingTitle .dijitCheckBox")[0];
2373
2374 if (cb)
2375 cb.parentNode.removeChild(cb);
2376 }
2377
2378 if (child.hasClassName("Unread"))
2379 $("floatingTitle").addClassName("Unread");
2380 else
2381 $("floatingTitle").removeClassName("Unread");
2382
2383 PluginHost.run(PluginHost.HOOK_FLOATING_TITLE, child);
2384 }
2385
2386 if (child.offsetTop < hf.scrollTop - header.offsetHeight &&
2387 child.offsetTop + child.offsetHeight - hf.scrollTop > header.offsetHeight)
2388 Element.show("floatingTitle");
2389 else
2390 Element.hide("floatingTitle");
2391
2392 return;
2393
2394 }
2395 }
2396
2397 } catch (e) {
2398 exception_error("updateFloatingTitle", e);
2399 }
2400 }