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