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