]> git.wh0rd.org - tt-rss.git/blob - functions.js
do not auto-hide notify box when subscribing to feed
[tt-rss.git] / functions.js
1 var hotkeys_enabled = true;
2 var debug_mode_enabled = false;
3 var xmlhttp_rpc = Ajax.getTransport();
4
5 /* add method to remove element from array */
6
7 Array.prototype.remove = function(s) {
8 for (var i=0; i < this.length; i++) {
9 if (s == this[i]) this.splice(i, 1);
10 }
11 }
12
13 function browser_has_opacity() {
14 return navigator.userAgent.match("Gecko") != null ||
15 navigator.userAgent.match("Opera") != null;
16 }
17
18 function is_msie() {
19 return navigator.userAgent.match("MSIE");
20 }
21
22 function is_opera() {
23 return navigator.userAgent.match("Opera");
24 }
25
26 function is_khtml() {
27 return navigator.userAgent.match("KHTML");
28 }
29
30 function is_safari() {
31 return navigator.userAgent.match("Safari");
32 }
33
34 function exception_error(location, e, silent) {
35 var msg;
36
37 if (e.fileName) {
38 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
39
40 msg = "Exception: " + e.name + ", " + e.message +
41 "\nFunction: " + location + "()" +
42 "\nLocation: " + base_fname + ":" + e.lineNumber;
43
44 } else {
45 msg = "Exception: " + e + "\nFunction: " + location + "()";
46 }
47
48 debug("<b>EXCEPTION: " + msg + "</b>");
49
50 if (!silent) {
51 alert(msg);
52 }
53 }
54
55 function disableHotkeys() {
56 hotkeys_enabled = false;
57 }
58
59 function enableHotkeys() {
60 hotkeys_enabled = true;
61 }
62
63 function xmlhttp_ready(obj) {
64 return obj.readyState == 4 || obj.readyState == 0 || !obj.readyState;
65 }
66
67 function logout_callback() {
68 var container = document.getElementById('notify');
69 if (xmlhttp.readyState == 4) {
70 try {
71 var date = new Date();
72 var timestamp = Math.round(date.getTime() / 1000);
73 window.location.href = "tt-rss.php";
74 } catch (e) {
75 exception_error("logout_callback", e);
76 }
77 }
78 }
79
80 function notify_callback() {
81 var container = document.getElementById('notify');
82 if (xmlhttp.readyState == 4) {
83 container.innerHTML=xmlhttp.responseText;
84 }
85 }
86
87 function rpc_notify_callback() {
88 var container = document.getElementById('notify');
89 if (xmlhttp_rpc.readyState == 4) {
90 container.innerHTML=xmlhttp_rpc.responseText;
91 }
92 }
93
94 function param_escape(arg) {
95 if (typeof encodeURIComponent != 'undefined')
96 return encodeURIComponent(arg);
97 else
98 return escape(arg);
99 }
100
101 function param_unescape(arg) {
102 if (typeof decodeURIComponent != 'undefined')
103 return decodeURIComponent(arg);
104 else
105 return unescape(arg);
106 }
107
108 function delay(gap) {
109 var then,now;
110 then=new Date().getTime();
111 now=then;
112 while((now-then)<gap) {
113 now=new Date().getTime();
114 }
115 }
116
117 var notify_hide_timerid = false;
118
119 function hide_notify() {
120 var n = document.getElementById("notify");
121 if (n) {
122 n.style.display = "none";
123 }
124 }
125
126 function notify_real(msg, no_hide, n_type) {
127
128 var n = document.getElementById("notify");
129 var nb = document.getElementById("notify_body");
130
131 if (!n || !nb) return;
132
133 if (notify_hide_timerid) {
134 window.clearTimeout(notify_hide_timerid);
135 }
136
137 if (msg == "") {
138 if (n.style.display == "block") {
139 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
140 }
141 return;
142 } else {
143 n.style.display = "block";
144 }
145
146 /* types:
147
148 1 - generic
149 2 - progress
150 3 - error
151 4 - info
152
153 */
154
155 if (typeof __ != 'undefined') {
156 msg = __(msg);
157 }
158
159 if (n_type == 1) {
160 n.className = "notify";
161 } else if (n_type == 2) {
162 n.className = "notifyProgress";
163 msg = "<img src='images/indicator_white.gif'> " + msg;
164 } else if (n_type == 3) {
165 n.className = "notifyError";
166 msg = "<img src='images/sign_excl.png'> " + msg;
167 } else if (n_type == 4) {
168 n.className = "notifyInfo";
169 msg = "<img src='images/sign_info.png'> " + msg;
170 }
171
172 // msg = "<img src='images/live_com_loading.gif'> " + msg;
173
174 nb.innerHTML = msg;
175
176 if (!no_hide) {
177 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
178 }
179 }
180
181 function notify(msg, no_hide) {
182 notify_real(msg, no_hide, 1);
183 }
184
185 function notify_progress(msg, no_hide) {
186 notify_real(msg, no_hide, 2);
187 }
188
189 function notify_error(msg, no_hide) {
190 notify_real(msg, no_hide, 3);
191
192 }
193
194 function notify_info(msg, no_hide) {
195 notify_real(msg, no_hide, 4);
196 }
197
198 function printLockingError() {
199 notify_info("Please wait until operation finishes.");
200 }
201
202 function hotkey_handler(e) {
203
204 try {
205
206 var keycode;
207 var shift_key = false;
208
209 try {
210 shift_key = e.shiftKey;
211 } catch (e) {
212
213 }
214
215 if (!hotkeys_enabled) return;
216
217 if (window.event) {
218 keycode = window.event.keyCode;
219 } else if (e) {
220 keycode = e.which;
221 }
222
223 if (keycode == 82) { // r
224 return scheduleFeedUpdate(true);
225 }
226
227 if (keycode == 83) { // s
228 return displayDlg("search", getActiveFeedId());
229 }
230
231 if (keycode == 85) { // u
232 if (getActiveFeedId()) {
233 return viewfeed(getActiveFeedId(), "ForceUpdate");
234 }
235 }
236
237 if (keycode == 65) { // a
238 return toggleDispRead();
239 }
240
241 var feedlist = document.getElementById('feedList');
242
243 if (keycode == 74) { // j
244 var feed = getActiveFeedId();
245 var new_feed = getRelativeFeedId(feedlist, feed, 'prev');
246 if (new_feed) viewfeed(new_feed, '');
247 }
248
249 if (keycode == 75) { // k
250 var feed = getActiveFeedId();
251 var new_feed = getRelativeFeedId(feedlist, feed, 'next');
252 if (new_feed) viewfeed(new_feed, '');
253 }
254
255 if (keycode == 78 || keycode == 40) { // n, down
256 if (typeof moveToPost != 'undefined') {
257 return moveToPost('next');
258 }
259 }
260
261 if (keycode == 80 || keycode == 38) { // p, up
262 if (typeof moveToPost != 'undefined') {
263 return moveToPost('prev');
264 }
265 }
266
267 if (keycode == 68 && shift_key) { // d
268 if (!debug_mode_enabled) {
269 document.getElementById('debug_output').style.display = 'block';
270 debug('debug mode activated');
271 } else {
272 document.getElementById('debug_output').style.display = 'none';
273 }
274
275 debug_mode_enabled = !debug_mode_enabled;
276 }
277
278 if (keycode == 190 && shift_key) { // >
279 viewFeedGoPage(1);
280 }
281
282 if (keycode == 188 && shift_key) { // <
283 viewFeedGoPage(-1);
284 }
285
286 if (keycode == 191 && shift_key) { // ?
287 viewFeedGoPage(0);
288 }
289
290 if (keycode == 69 && shift_key) { // e
291 return editFeedDlg(getActiveFeedId());
292 }
293
294 if (keycode == 70 && shift_key) { // f
295 if (getActiveFeedId()) {
296 return catchupCurrentFeed();
297 }
298 }
299
300 if (keycode == 80 && shift_key) { // p
301 if (getActiveFeedId()) {
302 return catchupPage();
303 }
304 }
305
306 if (typeof localHotkeyHandler != 'undefined') {
307 try {
308 return localHotkeyHandler(e);
309 } catch (e) {
310 exception_error("hotkey_handler, local:", e);
311 }
312 }
313
314 debug("KP=" + keycode);
315 } catch (e) {
316 exception_error("hotkey_handler", e);
317 }
318 }
319
320 function cleanSelectedList(element) {
321 var content = document.getElementById(element);
322
323 if (!document.getElementById("feedCatHolder")) {
324 for (i = 0; i < content.childNodes.length; i++) {
325 var child = content.childNodes[i];
326 try {
327 child.className = child.className.replace("Selected", "");
328 } catch (e) {
329 //
330 }
331 }
332 } else {
333 for (i = 0; i < content.childNodes.length; i++) {
334 var child = content.childNodes[i];
335 if (child.id == "feedCatHolder") {
336 debug(child.id);
337 var fcat = child.lastChild;
338 for (j = 0; j < fcat.childNodes.length; j++) {
339 var feed = fcat.childNodes[j];
340 feed.className = feed.className.replace("Selected", "");
341 }
342 }
343 }
344 }
345 }
346
347
348 function cleanSelected(element) {
349 var content = document.getElementById(element);
350
351 for (i = 0; i < content.rows.length; i++) {
352 content.rows[i].className = content.rows[i].className.replace("Selected", "");
353 }
354 }
355
356 function getVisibleUnreadHeadlines() {
357 var content = document.getElementById("headlinesList");
358
359 var rows = new Array();
360
361 for (i = 0; i < content.rows.length; i++) {
362 var row_id = content.rows[i].id.replace("RROW-", "");
363 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
364 rows.push(row_id);
365 }
366 }
367 return rows;
368 }
369
370 function getVisibleHeadlineIds() {
371
372 var content = document.getElementById("headlinesList");
373
374 var rows = new Array();
375
376 for (i = 0; i < content.rows.length; i++) {
377 var row_id = content.rows[i].id.replace("RROW-", "");
378 if (row_id.length > 0) {
379 rows.push(row_id);
380 }
381 }
382 return rows;
383 }
384
385 function getFirstVisibleHeadlineId() {
386 var rows = getVisibleHeadlineIds();
387 return rows[0];
388 }
389
390 function getLastVisibleHeadlineId() {
391 var rows = getVisibleHeadlineIds();
392 return rows[rows.length-1];
393 }
394
395 function markHeadline(id) {
396 var row = document.getElementById("RROW-" + id);
397 if (row) {
398 var is_active = false;
399
400 if (row.className.match("Active")) {
401 is_active = true;
402 }
403 row.className = row.className.replace("Selected", "");
404 row.className = row.className.replace("Active", "");
405 row.className = row.className.replace("Insensitive", "");
406
407 if (is_active) {
408 row.className = row.className = "Active";
409 }
410
411 var check = document.getElementById("RCHK-" + id);
412
413 if (check) {
414 check.checked = true;
415 }
416
417 row.className = row.className + "Selected";
418
419 }
420 }
421
422 function getFeedIds() {
423 var content = document.getElementById("feedsList");
424
425 var rows = new Array();
426
427 for (i = 0; i < content.rows.length; i++) {
428 var id = content.rows[i].id.replace("FEEDR-", "");
429 if (id.length > 0) {
430 rows.push(id);
431 }
432 }
433
434 return rows;
435 }
436
437 function setCookie(name, value, lifetime, path, domain, secure) {
438
439 var d = false;
440
441 if (lifetime) {
442 d = new Date();
443 d.setTime(d.getTime() + (lifetime * 1000));
444 }
445
446 debug("setCookie: " + name + " => " + value + ": " + d);
447
448 int_setCookie(name, value, d, path, domain, secure);
449
450 }
451
452 function int_setCookie(name, value, expires, path, domain, secure) {
453 document.cookie= name + "=" + escape(value) +
454 ((expires) ? "; expires=" + expires.toGMTString() : "") +
455 ((path) ? "; path=" + path : "") +
456 ((domain) ? "; domain=" + domain : "") +
457 ((secure) ? "; secure" : "");
458 }
459
460 function delCookie(name, path, domain) {
461 if (getCookie(name)) {
462 document.cookie = name + "=" +
463 ((path) ? ";path=" + path : "") +
464 ((domain) ? ";domain=" + domain : "" ) +
465 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
466 }
467 }
468
469
470 function getCookie(name) {
471
472 var dc = document.cookie;
473 var prefix = name + "=";
474 var begin = dc.indexOf("; " + prefix);
475 if (begin == -1) {
476 begin = dc.indexOf(prefix);
477 if (begin != 0) return null;
478 }
479 else {
480 begin += 2;
481 }
482 var end = document.cookie.indexOf(";", begin);
483 if (end == -1) {
484 end = dc.length;
485 }
486 return unescape(dc.substring(begin + prefix.length, end));
487 }
488
489 function disableContainerChildren(id, disable, doc) {
490
491 if (!doc) doc = document;
492
493 var container = doc.getElementById(id);
494
495 if (!container) {
496 //alert("disableContainerChildren: element " + id + " not found");
497 return;
498 }
499
500 for (var i = 0; i < container.childNodes.length; i++) {
501 var child = container.childNodes[i];
502
503 try {
504 child.disabled = disable;
505 } catch (E) {
506
507 }
508
509 if (disable) {
510 if (child.className && child.className.match("button")) {
511 child.className = "disabledButton";
512 }
513 } else {
514 if (child.className && child.className.match("disabledButton")) {
515 child.className = "button";
516 }
517 }
518 }
519
520 }
521
522 function gotoPreferences() {
523 document.location.href = "prefs.php";
524 }
525
526 function gotoMain() {
527 document.location.href = "tt-rss.php";
528 }
529
530 function gotoExportOpml() {
531 document.location.href = "opml.php?op=Export";
532 }
533
534 function getActiveFeedId() {
535 // return getCookie("ttrss_vf_actfeed");
536 try {
537 debug("gAFID: " + active_feed_id);
538 return active_feed_id;
539 } catch (e) {
540 exception_error("getActiveFeedId", e);
541 }
542 }
543
544 function activeFeedIsCat() {
545 return active_feed_is_cat;
546 }
547
548 function setActiveFeedId(id) {
549 // return setCookie("ttrss_vf_actfeed", id);
550 try {
551 debug("sAFID(" + id + ")");
552 active_feed_id = id;
553 } catch (e) {
554 exception_error("setActiveFeedId", e);
555 }
556 }
557
558 function parse_counters(reply, scheduled_call) {
559 try {
560
561 var feeds_found = 0;
562
563 if (reply.firstChild && reply.firstChild.firstChild) {
564 debug("<b>wrong element passed to parse_counters, adjusting.</b>");
565 reply = reply.firstChild;
566 }
567
568 for (var l = 0; l < reply.childNodes.length; l++) {
569 if (!reply.childNodes[l] ||
570 typeof(reply.childNodes[l].getAttribute) == "undefined") {
571 // where did this come from?
572 continue;
573 }
574
575 var id = reply.childNodes[l].getAttribute("id");
576 var t = reply.childNodes[l].getAttribute("type");
577 var ctr = reply.childNodes[l].getAttribute("counter");
578 var error = reply.childNodes[l].getAttribute("error");
579 var has_img = reply.childNodes[l].getAttribute("hi");
580 var updated = reply.childNodes[l].getAttribute("updated");
581
582 if (id == "global-unread") {
583 global_unread = ctr;
584 updateTitle();
585 continue;
586 }
587
588 if (id == "subscribed-feeds") {
589 feeds_found = ctr;
590 continue;
591 }
592
593 if (t == "category") {
594 var catctr = document.getElementById("FCATCTR-" + id);
595 if (catctr) {
596 catctr.innerHTML = "(" + ctr + ")";
597 if (ctr > 0) {
598 catctr.className = "catCtrHasUnread";
599 } else {
600 catctr.className = "catCtrNoUnread";
601 }
602 }
603 continue;
604 }
605
606 var feedctr = document.getElementById("FEEDCTR-" + id);
607 var feedu = document.getElementById("FEEDU-" + id);
608 var feedr = document.getElementById("FEEDR-" + id);
609 var feed_img = document.getElementById("FIMG-" + id);
610 var feedlink = document.getElementById("FEEDL-" + id);
611 var feedupd = document.getElementById("FLUPD-" + id);
612
613 if (updated && feedlink) {
614 if (error) {
615 feedlink.title = "Error: " + error + " (" + updated + ")";
616 } else {
617 feedlink.title = "Updated: " + updated;
618 }
619 }
620
621 if (updated && feedupd) {
622 if (error) {
623 feedupd.innerHTML = updated + " (Error)";
624 } else {
625 feedupd.innerHTML = updated;
626 }
627 }
628
629 if (feedctr && feedu && feedr) {
630
631 if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
632 viewCurrentFeed();
633 }
634
635 feedu.innerHTML = ctr;
636
637 if (error) {
638 feedr.className = feedr.className.replace("feed", "error");
639 } else if (id > 0) {
640 feedr.className = feedr.className.replace("error", "feed");
641 }
642
643 if (ctr > 0) {
644 feedctr.className = "odd";
645 if (!feedr.className.match("Unread")) {
646 var is_selected = feedr.className.match("Selected");
647
648 feedr.className = feedr.className.replace("Selected", "");
649 feedr.className = feedr.className.replace("Unread", "");
650
651 feedr.className = feedr.className + "Unread";
652
653 if (is_selected) {
654 feedr.className = feedr.className + "Selected";
655 }
656
657 }
658 } else {
659 feedctr.className = "invisible";
660 feedr.className = feedr.className.replace("Unread", "");
661 }
662 }
663 }
664
665 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
666
667 var feeds_stored = number_of_feeds;
668
669 debug("Feed counters, C: " + feeds_found + ", S:" + feeds_stored);
670
671 if (feeds_stored != feeds_found) {
672 number_of_feeds = feeds_found;
673
674 if (feeds_stored != 0) {
675 debug("Subscribed feed number changed, refreshing feedlist");
676 setTimeout('updateFeedList(false, false)', 50);
677 }
678 }
679
680 } catch (e) {
681 exception_error("parse_counters", e);
682 }
683 }
684
685 function parse_counters_reply(xmlhttp, scheduled_call) {
686
687 if (!xmlhttp.responseXML) {
688 notify_error("Backend did not return valid XML", true);
689 return;
690 }
691
692 var reply = xmlhttp.responseXML.firstChild;
693
694 if (!reply) {
695 notify_error("Backend did not return expected XML object", true);
696 updateTitle("");
697 return;
698 }
699
700 var error_code = false;
701 var error_msg = false;
702
703 if (reply.firstChild) {
704 error_code = reply.firstChild.getAttribute("error-code");
705 error_msg = reply.firstChild.getAttribute("error-msg");
706 }
707
708 if (!error_code) {
709 error_code = reply.getAttribute("error-code");
710 error_msg = reply.getAttribute("error-msg");
711 }
712
713 if (error_code && error_code != 0) {
714 debug("refetch_callback: got error code " + error_code);
715 return fatalError(error_code, error_msg);
716 }
717
718 var counters = reply.firstChild;
719
720 parse_counters(counters, scheduled_call);
721
722 var runtime_info = counters.nextSibling;
723
724 parse_runtime_info(runtime_info);
725
726 if (getInitParam("feeds_sort_by_unread") == 1) {
727 resort_feedlist();
728 }
729
730 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
731
732 }
733
734 function all_counters_callback() {
735 if (xmlhttp_rpc.readyState == 4) {
736 try {
737 /* if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
738 debug("[all_counters_callback] backend did not return valid XML");
739 return;
740 }
741
742 debug("in all_counters_callback : " + xmlhttp_rpc.responseXML);
743
744 var reply = xmlhttp_rpc.responseXML.firstChild;
745
746 var counters = reply.firstChild;
747
748 parse_counters(counters);
749
750 var runtime = counters.nextSibling;
751
752 if (runtime) {
753 parse_runtime_info(runtime);
754 }
755
756 if (getInitParam("feeds_sort_by_unread") == 1) {
757 resort_feedlist();
758 }
759
760 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1); */
761
762 debug("in all_counters_callback");
763
764 parse_counters_reply(xmlhttp_rpc);
765
766 } catch (e) {
767 exception_error("all_counters_callback", e);
768 }
769 }
770 }
771
772 function get_feed_entry_unread(doc, elem) {
773
774 var id = elem.id.replace("FEEDR-", "");
775
776 if (id <= 0) {
777 return -1;
778 }
779
780 try {
781 return parseInt(doc.getElementById("FEEDU-" + id).innerHTML);
782 } catch (e) {
783 return -1;
784 }
785 }
786
787 function resort_category(doc, node) {
788 debug("resort_category: " + node);
789
790 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
791 for (i = 0; i < node.childNodes.length; i++) {
792 if (node.childNodes[i].nodeName != "LI") { continue; }
793
794 if (get_feed_entry_unread(doc, node.childNodes[i]) < 0) {
795 continue;
796 }
797
798 for (j = i+1; j < node.childNodes.length; j++) {
799 if (node.childNodes[j].nodeName != "LI") { continue; }
800
801 var tmp_val = get_feed_entry_unread(doc, node.childNodes[i]);
802 var cur_val = get_feed_entry_unread(doc, node.childNodes[j]);
803
804 if (cur_val > tmp_val) {
805 tempnode_i = node.childNodes[i].cloneNode(true);
806 tempnode_j = node.childNodes[j].cloneNode(true);
807 node.replaceChild(tempnode_i, node.childNodes[j]);
808 node.replaceChild(tempnode_j, node.childNodes[i]);
809 }
810 }
811
812 }
813 }
814
815 }
816
817 function resort_feedlist() {
818 debug("resort_feedlist");
819
820 var fd = document;
821
822 if (fd.getElementById("feedCatHolder")) {
823
824 var feeds = fd.getElementById("feedList");
825 var child = feeds.firstChild;
826
827 while (child) {
828
829 if (child.id == "feedCatHolder") {
830 resort_category(fd, child.firstChild);
831 }
832
833 child = child.nextSibling;
834 }
835
836 } else {
837 resort_category(fd, fd.getElementById("feedList"));
838 }
839 }
840
841 function update_all_counters(feed) {
842 if (xmlhttp_ready(xmlhttp_rpc)) {
843 var query = "backend.php?op=rpc&subop=getAllCounters";
844
845 if (feed > 0) {
846 query = query + "&aid=" + feed;
847 }
848
849 if (tagsAreDisplayed()) {
850 query = query + "&omode=lt";
851 } else {
852 query = query + "&omode=flc";
853 }
854
855 debug("update_all_counters QUERY: " + query);
856
857 var date = new Date();
858 var timestamp = Math.round(date.getTime() / 1000);
859 query = query + "&ts=" + timestamp
860
861 xmlhttp_rpc.open("GET", query, true);
862 xmlhttp_rpc.onreadystatechange=all_counters_callback;
863 xmlhttp_rpc.send(null);
864 }
865 }
866
867 function popupHelp(tid) {
868 var w = window.open("backend.php?op=help&tid=" + tid,
869 "Popup Help",
870 "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
871 }
872
873 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
874 * * @author Sundar Dorai-Raj
875 * * Email: sdoraira@vt.edu
876 * * This program is free software; you can redistribute it and/or
877 * * modify it under the terms of the GNU General Public License
878 * * as published by the Free Software Foundation; either version 2
879 * * of the License, or (at your option) any later version,
880 * * provided that any use properly credits the author.
881 * * This program is distributed in the hope that it will be useful,
882 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
883 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
884 * * GNU General Public License for more details at http://www.gnu.org * * */
885
886 var numbers=".0123456789";
887 function isNumeric(x) {
888 // is x a String or a character?
889 if(x.length>1) {
890 // remove negative sign
891 x=Math.abs(x)+"";
892 for(j=0;j<x.length;j++) {
893 // call isNumeric recursively for each character
894 number=isNumeric(x.substring(j,j+1));
895 if(!number) return number;
896 }
897 return number;
898 }
899 else {
900 // if x is number return true
901 if(numbers.indexOf(x)>=0) return true;
902 return false;
903 }
904 }
905
906
907 function hideOrShowFeeds(doc, hide) {
908
909 debug("hideOrShowFeeds: " + doc + ", " + hide);
910
911 var fd = document;
912
913 var list = fd.getElementById("feedList");
914
915 if (fd.getElementById("feedCatHolder")) {
916
917 var feeds = fd.getElementById("feedList");
918 var child = feeds.firstChild;
919
920 while (child) {
921
922 if (child.id == "feedCatHolder") {
923 hideOrShowFeedsCategory(fd, child.firstChild, hide, child.previousSibling);
924 }
925
926 child = child.nextSibling;
927 }
928
929 } else {
930 hideOrShowFeedsCategory(fd, fd.getElementById("feedList"), hide);
931 }
932 }
933
934 function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
935
936 // debug("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
937
938 var cat_unread = 0;
939
940 if (!node) {
941 debug("hideOrShowFeeds: passed node is null, aborting");
942 return;
943 }
944
945 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
946 for (i = 0; i < node.childNodes.length; i++) {
947 if (node.childNodes[i].nodeName != "LI") { continue; }
948
949 if (node.childNodes[i].style != undefined) {
950
951 var has_unread = (node.childNodes[i].className != "feed");
952
953 // debug(node.childNodes[i].id + " --> " + has_unread);
954
955 if (hide && !has_unread) {
956 node.childNodes[i].style.display = "none";
957 }
958
959 if (!hide) {
960 node.childNodes[i].style.display = "list-item";
961 }
962
963 if (has_unread) {
964 node.childNodes[i].style.display = "list-item";
965 cat_unread++;
966 }
967 }
968 }
969 }
970
971 if (cat_unread == 0) {
972 if (cat_node.style == undefined) {
973 debug("ERROR: supplied cat_node " + cat_node +
974 " has no styles. WTF?");
975 return;
976 }
977 if (hide) {
978 cat_node.style.display = "none";
979 } else {
980 cat_node.style.display = "list-item";
981 }
982 } else {
983 try {
984 cat_node.style.display = "list-item";
985 } catch (e) {
986 debug(e);
987 }
988 }
989
990 // debug("unread for category: " + cat_unread);
991 }
992
993 function selectTableRow(r, do_select) {
994 r.className = r.className.replace("Selected", "");
995
996 if (do_select) {
997 r.className = r.className + "Selected";
998 }
999 }
1000
1001 function selectTableRowById(elem_id, check_id, do_select) {
1002
1003 try {
1004
1005 var row = document.getElementById(elem_id);
1006
1007 if (row) {
1008 selectTableRow(row, do_select);
1009 }
1010
1011 var check = document.getElementById(check_id);
1012
1013 if (check) {
1014 check.checked = do_select;
1015 }
1016 } catch (e) {
1017 exception_error("selectTableRowById", e);
1018 }
1019 }
1020
1021 function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
1022 classcheck, reset_others) {
1023
1024 var content = document.getElementById(content_id);
1025
1026 if (!content) {
1027 alert("[selectTableRows] Element " + content_id + " not found.");
1028 return;
1029 }
1030
1031 for (i = 0; i < content.rows.length; i++) {
1032 if (!classcheck || content.rows[i].className.match(classcheck)) {
1033
1034 if (content.rows[i].id.match(prefix)) {
1035 selectTableRow(content.rows[i], do_select);
1036
1037 var row_id = content.rows[i].id.replace(prefix, "");
1038 var check = document.getElementById(check_prefix + row_id);
1039
1040 if (check) {
1041 check.checked = do_select;
1042 }
1043 } else if (reset_others) {
1044 selectTableRow(content.rows[i], false);
1045
1046 var row_id = content.rows[i].id.replace(prefix, "");
1047 var check = document.getElementById(check_prefix + row_id);
1048
1049 if (check) {
1050 check.checked = false;
1051 }
1052
1053 }
1054 } else if (reset_others) {
1055 selectTableRow(content.rows[i], false);
1056
1057 var row_id = content.rows[i].id.replace(prefix, "");
1058 var check = document.getElementById(check_prefix + row_id);
1059
1060 if (check) {
1061 check.checked = false;
1062 }
1063
1064 }
1065 }
1066 }
1067
1068 function getSelectedTableRowIds(content_id, prefix) {
1069
1070 var content = document.getElementById(content_id);
1071
1072 if (!content) {
1073 alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
1074 return;
1075 }
1076
1077 var sel_rows = new Array();
1078
1079 for (i = 0; i < content.rows.length; i++) {
1080 if (content.rows[i].id.match(prefix) &&
1081 content.rows[i].className.match("Selected")) {
1082
1083 var row_id = content.rows[i].id.replace(prefix + "-", "");
1084 sel_rows.push(row_id);
1085 }
1086 }
1087
1088 return sel_rows;
1089
1090 }
1091
1092 function toggleSelectRowById(sender, id) {
1093 var row = document.getElementById(id);
1094
1095 if (sender.checked) {
1096 if (!row.className.match("Selected")) {
1097 row.className = row.className + "Selected";
1098 }
1099 } else {
1100 if (row.className.match("Selected")) {
1101 row.className = row.className.replace("Selected", "");
1102 }
1103 }
1104 }
1105
1106 function toggleSelectListRow(sender) {
1107 var parent_row = sender.parentNode;
1108
1109 if (sender.checked) {
1110 if (!parent_row.className.match("Selected")) {
1111 parent_row.className = parent_row.className + "Selected";
1112 }
1113 } else {
1114 if (parent_row.className.match("Selected")) {
1115 parent_row.className = parent_row.className.replace("Selected", "");
1116 }
1117 }
1118 }
1119
1120 function tSR(sender) {
1121 return toggleSelectRow(sender);
1122 }
1123
1124 function toggleSelectRow(sender) {
1125 var parent_row = sender.parentNode.parentNode;
1126
1127 if (sender.checked) {
1128 if (!parent_row.className.match("Selected")) {
1129 parent_row.className = parent_row.className + "Selected";
1130 }
1131 } else {
1132 if (parent_row.className.match("Selected")) {
1133 parent_row.className = parent_row.className.replace("Selected", "");
1134 }
1135 }
1136 }
1137
1138 function openExternalUrl(url) {
1139 var w = window.open(url);
1140 }
1141
1142 function getRelativeFeedId(list, id, direction, unread_only) {
1143 if (!id) {
1144 if (direction == "next") {
1145 for (i = 0; i < list.childNodes.length; i++) {
1146 var child = list.childNodes[i];
1147 if (child.id && child.id == "feedCatHolder") {
1148 if (child.lastChild) {
1149 var cr = getRelativeFeedId(child.firstChild, id, direction, unread_only);
1150 if (cr) return cr;
1151 }
1152 } else if (child.id && child.id.match("FEEDR-")) {
1153 return child.id.replace('FEEDR-', '');
1154 }
1155 }
1156 }
1157
1158 // FIXME select last feed doesn't work when only unread feeds are visible
1159
1160 if (direction == "prev") {
1161 for (i = list.childNodes.length-1; i >= 0; i--) {
1162 var child = list.childNodes[i];
1163 if (child.id == "feedCatHolder" && child.className != "invisible") {
1164 if (child.firstChild) {
1165 var cr = getRelativeFeedId(child.firstChild, id, direction);
1166 if (cr) return cr;
1167 }
1168 } else if (child.id.match("FEEDR-")) {
1169
1170 if (getInitParam("hide_read_feeds") == 1) {
1171 if (child.className != "feed") {
1172 // alert(child.className);
1173 return child.id.replace('FEEDR-', '');
1174 }
1175 } else {
1176 return child.id.replace('FEEDR-', '');
1177 }
1178 }
1179 }
1180 }
1181 } else {
1182
1183 var feed = list.ownerDocument.getElementById("FEEDR-" + id);
1184
1185 if (getInitParam("hide_read_feeds") == 1) {
1186 unread_only = true;
1187 }
1188
1189 if (direction == "next") {
1190
1191 var e = feed;
1192
1193 while (e) {
1194
1195 if (e.nextSibling) {
1196
1197 e = e.nextSibling;
1198
1199 } else if (e.parentNode.parentNode.nextSibling) {
1200
1201 var this_cat = e.parentNode.parentNode;
1202
1203 e = false;
1204
1205 if (this_cat && this_cat.nextSibling) {
1206 while (!e && this_cat.nextSibling) {
1207 this_cat = this_cat.nextSibling;
1208 if (this_cat.id == "feedCatHolder") {
1209 e = this_cat.firstChild.firstChild;
1210 }
1211 }
1212 }
1213
1214 } else {
1215 e = false;
1216 }
1217
1218 if (e) {
1219 if (!unread_only || (unread_only && e.className != "feed" &&
1220 e.className.match("feed"))) {
1221 if (e.parentNode.parentNode && e.parentNode.parentNode.className
1222 != "invisible") {
1223 return e.id.replace("FEEDR-", "");
1224 }
1225 }
1226 }
1227 }
1228
1229 } else if (direction == "prev") {
1230
1231 var e = feed;
1232
1233 while (e) {
1234
1235 if (e.previousSibling) {
1236
1237 e = e.previousSibling;
1238
1239 } else if (e.parentNode.parentNode.previousSibling) {
1240
1241 var this_cat = e.parentNode.parentNode;
1242
1243 e = false;
1244
1245 if (this_cat && this_cat.previousSibling) {
1246 while (!e && this_cat.previousSibling) {
1247 this_cat = this_cat.previousSibling;
1248 if (this_cat.id == "feedCatHolder") {
1249 e = this_cat.firstChild.lastChild;
1250 }
1251 }
1252 }
1253
1254 } else {
1255 e = false;
1256 }
1257
1258 if (e) {
1259 if (!unread_only || (unread_only && e.className != "feed" &&
1260 e.className.match("feed"))) {
1261 if (e.parentNode.parentNode && e.parentNode.parentNode.className
1262 != "invisible") {
1263 return e.id.replace("FEEDR-", "");
1264 }
1265 }
1266 }
1267 }
1268 }
1269 }
1270 }
1271
1272 function showBlockElement(id, h_id) {
1273 var elem = document.getElementById(id);
1274
1275 if (elem) {
1276 elem.style.display = "block";
1277
1278 if (h_id) {
1279 elem = document.getElementById(h_id);
1280 if (elem) {
1281 elem.style.display = "none";
1282 }
1283 }
1284 } else {
1285 alert("[showBlockElement] can't find element with id " + id);
1286 }
1287 }
1288
1289 function hideParentElement(e) {
1290 e.parentNode.style.display = "none";
1291 }
1292
1293 function dropboxSelect(e, v) {
1294 for (i = 0; i < e.length; i++) {
1295 if (e[i].value == v) {
1296 e.selectedIndex = i;
1297 break;
1298 }
1299 }
1300 }
1301
1302 // originally stolen from http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z
1303 // bugfixed just a little bit :-)
1304 function getURLParam(strParamName){
1305 var strReturn = "";
1306 var strHref = window.location.href;
1307
1308 if (strHref.indexOf("#") == strHref.length-1) {
1309 strHref = strHref.substring(0, strHref.length-1);
1310 }
1311
1312 if ( strHref.indexOf("?") > -1 ){
1313 var strQueryString = strHref.substr(strHref.indexOf("?"));
1314 var aQueryString = strQueryString.split("&");
1315 for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
1316 if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
1317 var aParam = aQueryString[iParam].split("=");
1318 strReturn = aParam[1];
1319 break;
1320 }
1321 }
1322 }
1323 return strReturn;
1324 }
1325
1326 function leading_zero(p) {
1327 var s = String(p);
1328 if (s.length == 1) s = "0" + s;
1329 return s;
1330 }
1331
1332 function closeInfoBox(cleanup) {
1333
1334 if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
1335 var overlay = document.getElementById("dialog_overlay");
1336 if (overlay) {
1337 overlay.style.display = "none";
1338 }
1339 }
1340
1341 var box = document.getElementById('infoBox');
1342 var shadow = document.getElementById('infoBoxShadow');
1343
1344 if (shadow) {
1345 shadow.style.display = "none";
1346 } else if (box) {
1347 box.style.display = "none";
1348 }
1349
1350 if (cleanup) box.innerHTML = "&nbsp;";
1351
1352 enableHotkeys();
1353
1354 return false;
1355 }
1356
1357
1358 function displayDlg(id, param) {
1359
1360 if (!xmlhttp_ready(xmlhttp)) {
1361 printLockingError();
1362 return
1363 }
1364
1365 notify_progress("Loading, please wait...");
1366
1367 xmlhttp.open("GET", "backend.php?op=dlg&id=" +
1368 param_escape(id) + "&param=" + param_escape(param), true);
1369 xmlhttp.onreadystatechange=infobox_callback;
1370 xmlhttp.send(null);
1371
1372 disableHotkeys();
1373
1374 return false;
1375 }
1376
1377 function infobox_submit_callback() {
1378 if (xmlhttp.readyState == 4) {
1379 closeInfoBox();
1380
1381 try {
1382 // called from prefs, reload tab
1383 if (active_tab) {
1384 selectTab(active_tab, false);
1385 }
1386 } catch (e) { }
1387
1388 if (xmlhttp.responseText) {
1389 notify_info(xmlhttp.responseText);
1390 }
1391
1392 }
1393 }
1394
1395 function infobox_callback() {
1396 if (xmlhttp.readyState == 4) {
1397
1398 if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
1399 var overlay = document.getElementById("dialog_overlay");
1400 if (overlay) {
1401 overlay.style.display = "block";
1402 }
1403 }
1404
1405 var box = document.getElementById('infoBox');
1406 var shadow = document.getElementById('infoBoxShadow');
1407 if (box) {
1408 box.innerHTML=xmlhttp.responseText;
1409 if (shadow) {
1410 shadow.style.display = "block";
1411 } else {
1412 box.style.display = "block";
1413 }
1414 }
1415 notify("");
1416 }
1417 }
1418
1419 function helpbox_callback() {
1420 if (xmlhttp.readyState == 4) {
1421 var box = document.getElementById('helpBox');
1422 var shadow = document.getElementById('helpBoxShadow');
1423 if (box) {
1424 box.innerHTML=xmlhttp.responseText;
1425 if (shadow) {
1426 shadow.style.display = "block";
1427 } else {
1428 box.style.display = "block";
1429 }
1430 }
1431 notify("");
1432 }
1433 }
1434
1435 function addFilter() {
1436
1437 if (!xmlhttp_ready(xmlhttp)) {
1438 printLockingError();
1439 return
1440 }
1441
1442 var form = document.forms['filter_add_form'];
1443 var reg_exp = form.reg_exp.value;
1444
1445 if (reg_exp == "") {
1446 alert("Can't add filter: nothing to match on.");
1447 return false;
1448 }
1449
1450 var query = Form.serialize("filter_add_form");
1451
1452 xmlhttp.open("GET", "backend.php?" + query, true);
1453 xmlhttp.onreadystatechange=infobox_submit_callback;
1454 xmlhttp.send(null);
1455
1456 return true;
1457 }
1458
1459 function toggleSubmitNotEmpty(e, submit_id) {
1460 try {
1461 document.getElementById(submit_id).disabled = (e.value == "")
1462 } catch (e) {
1463 exception_error("toggleSubmitNotEmpty", e);
1464 }
1465 }
1466
1467 function isValidURL(s) {
1468 return s.match("http://") != null || s.match("https://") != null || s.match("feed://") != null;
1469 }
1470
1471 function qaddFeed() {
1472
1473 if (!xmlhttp_ready(xmlhttp)) {
1474 printLockingError();
1475 return
1476 }
1477
1478 var form = document.forms['feed_add_form'];
1479 var feed_url = form.feed_url.value;
1480
1481 if (feed_url == "") {
1482 alert("Can't subscribe: no feed URL given.");
1483 return false;
1484 }
1485
1486 notify_progress(__("Subscribing to feed..."), true);
1487
1488 closeInfoBox();
1489
1490 var feeds_doc = document;
1491
1492 // feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
1493
1494 var query = Form.serialize("feed_add_form");
1495
1496 debug("subscribe q: " + query);
1497
1498 /* xmlhttp.open("GET", "backend.php?" + query, true);
1499 xmlhttp.onreadystatechange=dlg_frefresh_callback;
1500 xmlhttp.send(null); */
1501
1502 xmlhttp.open("POST", "backend.php", true);
1503 xmlhttp.onreadystatechange=dlg_frefresh_callback;
1504 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1505 xmlhttp.send(query);
1506
1507 return false;
1508 }
1509
1510 function filterCR(e, f)
1511 {
1512 var key;
1513
1514 if(window.event)
1515 key = window.event.keyCode; //IE
1516 else
1517 key = e.which; //firefox
1518
1519 if (key == 13) {
1520 if (typeof f != 'undefined') {
1521 f();
1522 return false;
1523 } else {
1524 return false;
1525 }
1526 } else {
1527 return true;
1528 }
1529 }
1530
1531 function getMainContext() {
1532 return this.window;
1533 }
1534
1535 function getFeedsContext() {
1536 return this.window;
1537 }
1538
1539 function getContentContext() {
1540 return this.window;
1541 }
1542
1543 function getHeadlinesContext() {
1544 return this.window;
1545 }
1546
1547 var debug_last_class = "even";
1548
1549 function debug(msg) {
1550
1551 if (debug_last_class == "even") {
1552 debug_last_class = "odd";
1553 } else {
1554 debug_last_class = "even";
1555 }
1556
1557 var c = document.getElementById('debug_output');
1558 if (c && c.style.display == "block") {
1559 while (c.lastChild != 'undefined' && c.childNodes.length > 100) {
1560 c.removeChild(c.lastChild);
1561 }
1562
1563 var d = new Date();
1564 var ts = leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
1565 ":" + leading_zero(d.getSeconds());
1566 c.innerHTML = "<li class=\"" + debug_last_class + "\"><span class=\"debugTS\">[" + ts + "]</span> " +
1567 msg + "</li>" + c.innerHTML;
1568 }
1569 }
1570
1571 function getInitParam(key) {
1572 return init_params[key];
1573 }
1574
1575 function storeInitParam(key, value) {
1576 debug("<b>storeInitParam is OBSOLETE: " + key + " => " + value + "</b>");
1577 init_params[key] = value;
1578 }
1579
1580 function fatalError(code, message) {
1581 try {
1582
1583 if (code == 6) {
1584 window.location.href = "tt-rss.php";
1585 } else if (code == 5) {
1586 window.location.href = "update.php";
1587 } else {
1588 var fe = document.getElementById("fatal_error");
1589 var fc = document.getElementById("fatal_error_msg");
1590
1591 if (message == "") message = "Unknown error";
1592
1593 fc.innerHTML = "<img src='images/sign_excl.png'> " + message + " (Code " + code + ")";
1594
1595 fe.style.display = "block";
1596 }
1597
1598 } catch (e) {
1599 exception_error("fatalError", e);
1600 }
1601 }
1602
1603 function getFeedName(id, is_cat) {
1604 var d = getFeedsContext().document;
1605
1606 var e;
1607
1608 if (is_cat) {
1609 e = d.getElementById("FCATN-" + id);
1610 } else {
1611 e = d.getElementById("FEEDN-" + id);
1612 }
1613 if (e) {
1614 return e.innerHTML.stripTags();
1615 } else {
1616 return null;
1617 }
1618 }
1619
1620 function viewContentUrl(url) {
1621 getContentContext().location = url;
1622 }
1623
1624 function filterDlgCheckAction(sender) {
1625
1626 try {
1627
1628 var action = sender[sender.selectedIndex].value;
1629
1630 var form = document.forms["filter_add_form"];
1631
1632 if (!form) {
1633 form = document.forms["filter_edit_form"];
1634 }
1635
1636 if (!form) {
1637 debug("filterDlgCheckAction: can't find form!");
1638 return;
1639 }
1640
1641 var action_param = form.action_param;
1642
1643 if (!action_param) {
1644 debug("filterDlgCheckAction: can't find action param!");
1645 return;
1646 }
1647
1648 // if selected action supports parameters, enable params field
1649 if (action == 4) {
1650 action_param.disabled = false;
1651 } else {
1652 action_param.disabled = true;
1653 }
1654
1655 } catch (e) {
1656 exception_error(e, "filterDlgCheckAction");
1657 }
1658
1659 }
1660
1661 function explainError(code) {
1662 return displayDlg("explainError", code);
1663 }
1664
1665 function logoutUser() {
1666 try {
1667 if (xmlhttp_ready(xmlhttp_rpc)) {
1668
1669 notify_progress("Logging out, please wait...", true);
1670
1671 xmlhttp_rpc.open("GET", "backend.php?op=rpc&subop=logout", true);
1672 xmlhttp_rpc.onreadystatechange=logout_callback;
1673 xmlhttp_rpc.send(null);
1674 } else {
1675 printLockingError();
1676 }
1677 } catch (e) {
1678 exception_error("logoutUser", e);
1679 }
1680 }
1681
1682 // this only searches loaded headlines list, not in CDM
1683 function getRelativePostIds(id) {
1684
1685 debug("getRelativePostIds: " + id);
1686
1687 var ids = new Array();
1688 var container = document.getElementById("headlinesList");
1689
1690 if (container) {
1691 var rows = container.rows;
1692
1693 for (var i = 0; i < rows.length; i++) {
1694 var r_id = rows[i].id.replace("RROW-", "");
1695
1696 if (r_id == id) {
1697 if (i > 0) ids.push(rows[i-1].id.replace("RROW-", ""));
1698 if (i > 1) ids.push(rows[i-2].id.replace("RROW-", ""));
1699 if (i > 2) ids.push(rows[i-3].id.replace("RROW-", ""));
1700
1701 if (i < rows.length-1) ids.push(rows[i+1].id.replace("RROW-", ""));
1702 if (i < rows.length-2) ids.push(rows[i+2].id.replace("RROW-", ""));
1703 if (i < rows.length-3) ids.push(rows[i+3].id.replace("RROW-", ""));
1704
1705 return ids;
1706 }
1707 }
1708 }
1709
1710 return false;
1711 }