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