]> git.wh0rd.org - tt-rss.git/blame - functions.js
remove rpc_pnotify_callback
[tt-rss.git] / functions.js
CommitLineData
760966c1
AD
1var hotkeys_enabled = true;
2
292a8a12 3function browser_has_opacity() {
605f7d46
AD
4 return navigator.userAgent.match("Gecko") != null ||
5 navigator.userAgent.match("Opera") != null;
292a8a12
AD
6}
7
7719618b 8function exception_error(location, e) {
83f043bb
AD
9 var msg;
10
11 if (e.fileName) {
12 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
13
14 msg = "Exception: " + e.name + ", " + e.message +
15 "\nFunction: " + location + "()" +
16 "\nLocation: " + base_fname + ":" + e.lineNumber;
17 } else {
18 msg = "Exception: " + e + "\nFunction: " + location + "()";
19 }
20
21 alert(msg);
7719618b
AD
22}
23
760966c1
AD
24function disableHotkeys() {
25 hotkeys_enabled = false;
26}
27
28function enableHotkeys() {
29 hotkeys_enabled = true;
30}
31
c0e5a40e
AD
32function xmlhttp_ready(obj) {
33 return obj.readyState == 4 || obj.readyState == 0 || !obj.readyState;
34}
35
9cfc649a
AD
36function notify_callback() {
37 var container = document.getElementById('notify');
38 if (xmlhttp.readyState == 4) {
39 container.innerHTML=xmlhttp.responseText;
40 }
41}
42
43function rpc_notify_callback() {
44 var container = document.getElementById('notify');
45 if (xmlhttp_rpc.readyState == 4) {
46 container.innerHTML=xmlhttp_rpc.responseText;
47 }
48}
49
7726fa02
AD
50function param_escape(arg) {
51 if (typeof encodeURIComponent != 'undefined')
52 return encodeURIComponent(arg);
53 else
54 return escape(arg);
55}
56
57function param_unescape(arg) {
58 if (typeof decodeURIComponent != 'undefined')
59 return decodeURIComponent(arg);
60 else
61 return unescape(arg);
62}
63
508a81e1
AD
64function delay(gap) {
65 var then,now;
66 then=new Date().getTime();
67 now=then;
68 while((now-then)<gap) {
69 now=new Date().getTime();
70 }
71}
7726fa02 72
ce3bf408
AD
73var notify_hide_timerid = false;
74var notify_last_doc = false;
75
59a543f0
AD
76var notify_effect = false;
77
ce3bf408
AD
78function hide_notify() {
79 if (notify_last_doc) {
80 var n = notify_last_doc.getElementById("notify");
292a8a12 81 if (browser_has_opacity()) {
ce3bf408 82 if (notify_opacity >= 0) {
0655a1d5 83 notify_opacity = notify_opacity - 0.1;
ce3bf408 84 n.style.opacity = notify_opacity;
292a8a12 85 notify_hide_timerid = window.setTimeout("hide_notify()", 20);
ce3bf408
AD
86 } else {
87 n.style.display = "none";
292a8a12 88 n.style.opacity = 1;
ce3bf408
AD
89 }
90 } else {
91 n.style.display = "none";
92 }
8dcfffd0 93 }
c05608c2
AD
94}
95
0530ddd8 96function notify_real(msg, doc, no_hide, is_err) {
7726fa02 97
ce3bf408
AD
98 var n = doc.getElementById("notify");
99 var nb = doc.getElementById("notify_body");
7726fa02 100
c05608c2 101 if (!n || !nb) return;
f0601b87 102
0655a1d5
AD
103 if (notify_hide_timerid) {
104 window.clearTimeout(notify_hide_timerid);
105 }
106
107 notify_last_doc = doc;
108 notify_opacity = 1;
109
8dcfffd0 110 if (msg == "") {
0655a1d5
AD
111 if (n.style.display == "block") {
112 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
113 }
114 return;
7726fa02 115 } else {
0ceded7a 116 n.style.display = "block";
8dcfffd0 117 }
7726fa02 118
0530ddd8 119 if (is_err) {
caa53a7c
AD
120 n.style.backgroundColor = "#ffcccc";
121 n.style.color = "black";
0530ddd8
AD
122 n.style.borderColor = "#ff0000";
123 } else {
124 n.style.backgroundColor = "#fff7d5";
125 n.style.borderColor = "#d7c47a";
126 n.style.color = "black";
127 }
128
0ceded7a
AD
129 nb.innerHTML = msg;
130
4d4200a8 131 if (!no_hide) {
292a8a12 132 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
4d4200a8 133 }
ce3bf408
AD
134}
135
0530ddd8
AD
136function p_notify(msg, no_hide, is_err) {
137 notify_real(msg, parent.document, no_hide, is_err);
ce3bf408
AD
138}
139
0530ddd8
AD
140function notify(msg, no_hide, is_err) {
141 notify_real(msg, document, no_hide, is_err);
7726fa02
AD
142}
143
508a81e1 144function printLockingError() {
f0601b87 145 notify("Please wait until operation finishes");}
508a81e1 146
13ad9102
AD
147var seq = "";
148
149function hotkey_handler(e) {
760966c1 150
13ad9102
AD
151 var keycode;
152
760966c1
AD
153 if (!hotkeys_enabled) return;
154
13ad9102
AD
155 if (window.event) {
156 keycode = window.event.keyCode;
157 } else if (e) {
158 keycode = e.which;
159 }
160
161 if (keycode == 13 || keycode == 27) {
162 seq = "";
163 } else {
164 seq = seq + "" + keycode;
165 }
166
2e02b896
AD
167 if (document.getElementById("piggie")) {
168
169 if (seq.match("807371717369")) {
170 seq = "";
171 localPiggieFunction(true);
172 } else {
173 localPiggieFunction(false);
174 }
bb7cface
AD
175 }
176
9cfc649a 177 if (typeof localHotkeyHandler != 'undefined') {
7b433d8c
AD
178 try {
179 localHotkeyHandler(keycode);
180 } catch (e) {
83f043bb 181 exception_error("hotkey_handler", e);
7b433d8c 182 }
9cfc649a
AD
183 }
184
13ad9102
AD
185}
186
e828e31e 187function cleanSelectedList(element) {
f0601b87
AD
188 var content = document.getElementById(element);
189
703b632e
AD
190 if (!document.getElementById("feedCatHolder")) {
191 for (i = 0; i < content.childNodes.length; i++) {
192 var child = content.childNodes[i];
d0bb308e
AD
193 try {
194 child.className = child.className.replace("Selected", "");
195 } catch (e) {
196 //
197 }
703b632e
AD
198 }
199 } else {
200 for (i = 0; i < content.childNodes.length; i++) {
201 var child = content.childNodes[i];
703b632e 202 if (child.id == "feedCatHolder") {
befc807f 203 parent.debug(child.id);
c3f348c2 204 var fcat = child.lastChild;
703b632e 205 for (j = 0; j < fcat.childNodes.length; j++) {
befc807f 206 var feed = fcat.childNodes[j];
703b632e
AD
207 feed.className = feed.className.replace("Selected", "");
208 }
209 }
befc807f 210 }
703b632e 211 }
e828e31e
AD
212}
213
214
215function cleanSelected(element) {
216 var content = document.getElementById(element);
f0601b87
AD
217
218 for (i = 0; i < content.rows.length; i++) {
219 content.rows[i].className = content.rows[i].className.replace("Selected", "");
220 }
f0601b87
AD
221}
222
223function getVisibleUnreadHeadlines() {
224 var content = document.getElementById("headlinesList");
225
226 var rows = new Array();
227
228 for (i = 0; i < content.rows.length; i++) {
229 var row_id = content.rows[i].id.replace("RROW-", "");
230 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
231 rows.push(row_id);
232 }
233 }
234 return rows;
235}
236
237function getVisibleHeadlineIds() {
238
239 var content = document.getElementById("headlinesList");
240
241 var rows = new Array();
242
243 for (i = 0; i < content.rows.length; i++) {
244 var row_id = content.rows[i].id.replace("RROW-", "");
245 if (row_id.length > 0) {
246 rows.push(row_id);
247 }
248 }
249 return rows;
250}
251
252function getFirstVisibleHeadlineId() {
253 var rows = getVisibleHeadlineIds();
254 return rows[0];
255}
256
257function getLastVisibleHeadlineId() {
258 var rows = getVisibleHeadlineIds();
259 return rows[rows.length-1];
260}
261
262function markHeadline(id) {
263 var row = document.getElementById("RROW-" + id);
264 if (row) {
35f3c923
AD
265 var is_active = false;
266
267 if (row.className.match("Active")) {
268 is_active = true;
269 }
270 row.className = row.className.replace("Selected", "");
271 row.className = row.className.replace("Active", "");
272 row.className = row.className.replace("Insensitive", "");
273
274 if (is_active) {
275 row.className = row.className = "Active";
276 }
277
72020095
AD
278 var check = document.getElementById("RCHK-" + id);
279
280 if (check) {
281 check.checked = true;
282 }
283
35f3c923
AD
284 row.className = row.className + "Selected";
285
f0601b87
AD
286 }
287}
288
289function getFeedIds() {
290 var content = document.getElementById("feedsList");
291
292 var rows = new Array();
293
294 for (i = 0; i < content.rows.length; i++) {
295 var id = content.rows[i].id.replace("FEEDR-", "");
296 if (id.length > 0) {
297 rows.push(id);
298 }
299 }
300
301 return rows;
302}
13ad9102 303
76b4eae1
AD
304function setCookie(name, value, lifetime, path, domain, secure) {
305
306 var d = false;
307
308 if (lifetime) {
309 d = new Date();
310 d.setTime(lifetime * 1000);
311 }
312
313 int_setCookie(name, value, d, path, domain, secure);
314
315}
316
317function int_setCookie(name, value, expires, path, domain, secure) {
ac43eba1
AD
318 document.cookie= name + "=" + escape(value) +
319 ((expires) ? "; expires=" + expires.toGMTString() : "") +
320 ((path) ? "; path=" + path : "") +
321 ((domain) ? "; domain=" + domain : "") +
322 ((secure) ? "; secure" : "");
323}
324
76b4eae1
AD
325function delCookie(name, path, domain) {
326 if (getCookie(name)) {
327 document.cookie = name + "=" +
328 ((path) ? ";path=" + path : "") +
329 ((domain) ? ";domain=" + domain : "" ) +
330 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
331 }
332}
333
334
ac43eba1
AD
335function getCookie(name) {
336
337 var dc = document.cookie;
338 var prefix = name + "=";
339 var begin = dc.indexOf("; " + prefix);
340 if (begin == -1) {
341 begin = dc.indexOf(prefix);
342 if (begin != 0) return null;
343 }
344 else {
345 begin += 2;
346 }
347 var end = document.cookie.indexOf(";", begin);
348 if (end == -1) {
349 end = dc.length;
350 }
351 return unescape(dc.substring(begin + prefix.length, end));
352}
353
1a66d16e
AD
354function disableContainerChildren(id, disable, doc) {
355
356 if (!doc) doc = document;
357
358 var container = doc.getElementById(id);
ac43eba1 359
4220b0bd
AD
360 if (!container) {
361 //alert("disableContainerChildren: element " + id + " not found");
362 return;
363 }
364
ac43eba1
AD
365 for (var i = 0; i < container.childNodes.length; i++) {
366 var child = container.childNodes[i];
367
d5224f0d
AD
368 try {
369 child.disabled = disable;
370 } catch (E) {
371
372 }
ac43eba1
AD
373
374 if (disable) {
375 if (child.className && child.className.match("button")) {
376 child.className = "disabledButton";
377 }
378 } else {
379 if (child.className && child.className.match("disabledButton")) {
380 child.className = "button";
381 }
d5224f0d 382 }
ac43eba1
AD
383 }
384
385}
7726fa02 386
e828e31e
AD
387function gotoPreferences() {
388 document.location.href = "prefs.php";
389}
390
391function gotoMain() {
392 document.location.href = "tt-rss.php";
393}
394
8158c57a
AD
395function gotoExportOpml() {
396 document.location.href = "opml.php?op=Export";
397}
86741347
AD
398
399function getActiveFeedId() {
33d13e72
AD
400// return getCookie("ttrss_vf_actfeed");
401 try {
402 debug("gAFID: " + getMainContext().active_feed_id);
403 return getMainContext().active_feed_id;
404 } catch (e) {
405 exception_error("getActiveFeedId", e);
406 }
86741347
AD
407}
408
409function setActiveFeedId(id) {
33d13e72
AD
410// return setCookie("ttrss_vf_actfeed", id);
411 try {
412 getMainContext().active_feed_id = id;
413 } catch (e) {
414 exception_error("setActiveFeedId", e);
415 }
86741347 416}
090e250b 417
a58069db 418var xmlhttp_rpc = Ajax.getTransport();
090e250b 419
ac378ad4 420function parse_counters(reply, scheduled_call) {
1a6a9555 421 try {
33d13e72 422 var f_document = getFeedsContext().document;
ac378ad4
AD
423 var title_obj = getMainContext();
424
425 debug("F_DOC: " + f_document + ", T_OBJ: " + title_obj);
426
1a6a9555 427 for (var l = 0; l < reply.childNodes.length; l++) {
9cbca41f
AD
428 if (!reply.childNodes[l] ||
429 typeof(reply.childNodes[l].getAttribute) == "undefined") {
6043fb7e
AD
430 // where did this come from?
431 continue;
432 }
433
1a6a9555
AD
434 var id = reply.childNodes[l].getAttribute("id");
435 var t = reply.childNodes[l].getAttribute("type");
436 var ctr = reply.childNodes[l].getAttribute("counter");
023fe037
AD
437 var error = reply.childNodes[l].getAttribute("error");
438 var has_img = reply.childNodes[l].getAttribute("hi");
fb1fb4ab 439 var updated = reply.childNodes[l].getAttribute("updated");
1a6a9555
AD
440
441 if (id == "global-unread") {
3bdb368b
AD
442 title_obj.global_unread = ctr;
443 title_obj.updateTitle();
1a6a9555
AD
444 continue;
445 }
446
447 if (t == "category") {
448 var catctr = f_document.getElementById("FCATCTR-" + id);
449 if (catctr) {
450 catctr.innerHTML = "(" + ctr + " unread)";
451 }
452 continue;
453 }
454
455 var feedctr = f_document.getElementById("FEEDCTR-" + id);
456 var feedu = f_document.getElementById("FEEDU-" + id);
457 var feedr = f_document.getElementById("FEEDR-" + id);
023fe037 458 var feed_img = f_document.getElementById("FIMG-" + id);
fb1fb4ab
AD
459 var feedlink = f_document.getElementById("FEEDL-" + id);
460
461 if (updated && feedlink) {
462 if (error) {
463 feedlink.title = "Error: " + error + " (" + updated + ")";
464 } else {
465 feedlink.title = "Updated: " + updated;
466 }
467 }
023fe037 468
1a6a9555 469 if (feedctr && feedu && feedr) {
e8ef3b97
AD
470
471 if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
472 var hf = title_obj.parent.frames["headlines-frame"];
473 hf.location.reload(true);
474 }
1a6a9555
AD
475
476 feedu.innerHTML = ctr;
023fe037 477
426d3c57
AD
478 if (error) {
479 feedr.className = feedr.className.replace("feed", "error");
480 } else if (id > 0) {
481 feedr.className = feedr.className.replace("error", "feed");
023fe037 482 }
1a6a9555
AD
483
484 if (ctr > 0) {
485 feedctr.className = "odd";
486 if (!feedr.className.match("Unread")) {
487 var is_selected = feedr.className.match("Selected");
488
489 feedr.className = feedr.className.replace("Selected", "");
490 feedr.className = feedr.className.replace("Unread", "");
491
492 feedr.className = feedr.className + "Unread";
493
494 if (is_selected) {
495 feedr.className = feedr.className + "Selected";
496 }
497
498 }
499 } else {
500 feedctr.className = "invisible";
501 feedr.className = feedr.className.replace("Unread", "");
502 }
503 }
504 }
505 } catch (e) {
83f043bb 506 exception_error("parse_counters", e);
1a6a9555
AD
507 }
508}
509
4f3a84f4 510function all_counters_callback() {
090e250b 511 if (xmlhttp_rpc.readyState == 4) {
7719618b 512 try {
3866b046 513 if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
7719618b
AD
514 notify("[all_counters_callback] backend did not return valid XML");
515 return;
516 }
894ebcf5 517
7719618b 518 var reply = xmlhttp_rpc.responseXML.firstChild;
280ee9a3 519
ac378ad4 520 parse_counters(reply);
7719618b 521
7719618b
AD
522 } catch (e) {
523 exception_error("all_counters_callback", e);
090e250b
AD
524 }
525 }
526}
527
4f3a84f4 528function update_all_counters(feed) {
090e250b 529 if (xmlhttp_ready(xmlhttp_rpc)) {
8143ae1f 530 var query = "backend.php?op=rpc&subop=getAllCounters";
e47cfe37
AD
531
532 if (feed > 0) {
533 query = query + "&aid=" + feed;
534 }
535
090e250b 536 xmlhttp_rpc.open("GET", query, true);
4f3a84f4 537 xmlhttp_rpc.onreadystatechange=all_counters_callback;
090e250b
AD
538 xmlhttp_rpc.send(null);
539 }
540}
7dc66a61
AD
541
542function popupHelp(tid) {
543 var w = window.open("backend.php?op=help&tid=" + tid,
544 "Popup Help",
545 "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
546}
b6644d29
AD
547
548/** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
549 * * @author Sundar Dorai-Raj
550 * * Email: sdoraira@vt.edu
551 * * This program is free software; you can redistribute it and/or
552 * * modify it under the terms of the GNU General Public License
553 * * as published by the Free Software Foundation; either version 2
554 * * of the License, or (at your option) any later version,
555 * * provided that any use properly credits the author.
556 * * This program is distributed in the hope that it will be useful,
557 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
558 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
559 * * GNU General Public License for more details at http://www.gnu.org * * */
560
561 var numbers=".0123456789";
562 function isNumeric(x) {
563 // is x a String or a character?
564 if(x.length>1) {
565 // remove negative sign
566 x=Math.abs(x)+"";
567 for(j=0;j<x.length;j++) {
568 // call isNumeric recursively for each character
569 number=isNumeric(x.substring(j,j+1));
570 if(!number) return number;
571 }
572 return number;
573 }
574 else {
575 // if x is number return true
576 if(numbers.indexOf(x)>=0) return true;
577 return false;
578 }
579 }
580
3745788e
AD
581
582function hideOrShowFeeds(doc, hide) {
583
3ed751d4
AD
584 if (!doc.styleSheets) return;
585
3745788e
AD
586 var css_rules = doc.styleSheets[0].cssRules;
587
bbf4d0b2
AD
588 if (!css_rules || !css_rules.length) return;
589
3745788e
AD
590 for (i = 0; i < css_rules.length; i++) {
591 var rule = css_rules[i];
592
593 if (rule.selectorText == "ul.feedList li.feed") {
594 if (!hide) {
595 rule.style.display = "block";
596 } else {
597 rule.style.display = "none";
598 }
599 }
600
601 }
602
603}
604
35f3c923
AD
605function selectTableRow(r, do_select) {
606 r.className = r.className.replace("Selected", "");
607
608 if (do_select) {
609 r.className = r.className + "Selected";
610 }
611}
612
6c12c809
AD
613function selectTableRowById(elem_id, check_id, do_select) {
614
615 try {
616
617 var row = document.getElementById(elem_id);
618
619 if (row) {
620 selectTableRow(row, do_select);
621 }
622
623 var check = document.getElementById(check_id);
624
625 if (check) {
626 check.checked = do_select;
627 }
628 } catch (e) {
629 exception_error("selectTableRowById", e);
630 }
631}
632
1572afe5 633function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
649e0af9 634 classcheck, reset_others) {
3745788e 635
35f3c923
AD
636 var content = document.getElementById(content_id);
637
638 if (!content) {
639 alert("[selectTableRows] Element " + content_id + " not found.");
640 return;
641 }
642
643 for (i = 0; i < content.rows.length; i++) {
1572afe5
AD
644 if (!classcheck || content.rows[i].className.match(classcheck)) {
645
646 if (content.rows[i].id.match(prefix)) {
647 selectTableRow(content.rows[i], do_select);
649e0af9
AD
648
649 var row_id = content.rows[i].id.replace(prefix, "");
650 var check = document.getElementById(check_prefix + row_id);
3055bc41 651
649e0af9
AD
652 if (check) {
653 check.checked = do_select;
654 }
655 } else if (reset_others) {
656 selectTableRow(content.rows[i], false);
7d8d10c6
AD
657
658 var row_id = content.rows[i].id.replace(prefix, "");
659 var check = document.getElementById(check_prefix + row_id);
660
661 if (check) {
662 check.checked = false;
663 }
664
1572afe5 665 }
649e0af9
AD
666 } else if (reset_others) {
667 selectTableRow(content.rows[i], false);
7d8d10c6
AD
668
669 var row_id = content.rows[i].id.replace(prefix, "");
670 var check = document.getElementById(check_prefix + row_id);
671
672 if (check) {
673 check.checked = false;
674 }
675
3055bc41 676 }
35f3c923 677 }
295f9b42 678}
91ff844a
AD
679
680function getSelectedTableRowIds(content_id, prefix) {
681
682 var content = document.getElementById(content_id);
683
684 if (!content) {
685 alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
686 return;
687 }
688
689 var sel_rows = new Array();
690
691 for (i = 0; i < content.rows.length; i++) {
1572afe5
AD
692 if (content.rows[i].id.match(prefix) &&
693 content.rows[i].className.match("Selected")) {
694
91ff844a
AD
695 var row_id = content.rows[i].id.replace(prefix + "-", "");
696 sel_rows.push(row_id);
697 }
698 }
699
700 return sel_rows;
701
702}
703
386cbf27
AD
704function toggleSelectRowById(sender, id) {
705 var row = document.getElementById(id);
706
707 if (sender.checked) {
708 if (!row.className.match("Selected")) {
709 row.className = row.className + "Selected";
710 }
711 } else {
712 if (row.className.match("Selected")) {
713 row.className = row.className.replace("Selected", "");
714 }
715 }
716}
717
b92e6209
AD
718function toggleSelectListRow(sender) {
719 var parent_row = sender.parentNode;
720
721 if (sender.checked) {
722 if (!parent_row.className.match("Selected")) {
723 parent_row.className = parent_row.className + "Selected";
724 }
725 } else {
726 if (parent_row.className.match("Selected")) {
727 parent_row.className = parent_row.className.replace("Selected", "");
728 }
729 }
730}
731
386cbf27 732
1572afe5
AD
733function toggleSelectRow(sender) {
734 var parent_row = sender.parentNode.parentNode;
735
736 if (sender.checked) {
737 if (!parent_row.className.match("Selected")) {
738 parent_row.className = parent_row.className + "Selected";
739 }
740 } else {
741 if (parent_row.className.match("Selected")) {
742 parent_row.className = parent_row.className.replace("Selected", "");
743 }
744 }
745}
746
3866b046
AD
747function openExternalUrl(url) {
748 var w = window.open(url);
749}
1572afe5 750
1da76274 751function getRelativeFeedId(list, id, direction, unread_only) {
7b433d8c
AD
752 if (!id) {
753 if (direction == "next") {
754 for (i = 0; i < list.childNodes.length; i++) {
755 var child = list.childNodes[i];
1da76274 756 if (child.id && child.id == "feedCatHolder") {
c3f348c2 757 if (child.lastChild) {
7b433d8c
AD
758 var cr = getRelativeFeedId(child.firstChild, id, direction);
759 if (cr) return cr;
760 }
1da76274 761 } else if (child.id && child.id.match("FEEDR-")) {
7b433d8c
AD
762 return child.id.replace('FEEDR-', '');
763 }
764 }
765 }
766
767 // FIXME select last feed doesn't work when only unread feeds are visible
768
769 if (direction == "prev") {
770 for (i = list.childNodes.length-1; i >= 0; i--) {
771 var child = list.childNodes[i];
772 if (child.id == "feedCatHolder") {
773 if (child.firstChild) {
774 var cr = getRelativeFeedId(child.firstChild, id, direction);
775 if (cr) return cr;
776 }
777 } else if (child.id.match("FEEDR-")) {
778
e8bd0da9 779 if (getInitParam("hide_read_feeds") == 1) {
7b433d8c
AD
780 if (child.className != "feed") {
781 alert(child.className);
782 return child.id.replace('FEEDR-', '');
783 }
784 } else {
785 return child.id.replace('FEEDR-', '');
786 }
787 }
788 }
789 }
790 } else {
791
792 var feed = list.ownerDocument.getElementById("FEEDR-" + getActiveFeedId());
793
e8bd0da9 794 if (getInitParam("hide_read_feeds") == 1) {
1da76274
AD
795 unread_only = true;
796 }
797
7b433d8c
AD
798 if (direction == "next") {
799
1da76274 800 var e = feed;
7b433d8c 801
1da76274 802 while (e) {
7b433d8c 803
1da76274
AD
804 if (e.nextSibling) {
805
806 e = e.nextSibling;
807
808 } else if (e.parentNode.parentNode.nextSibling) {
7b433d8c 809
1da76274 810 var this_cat = e.parentNode.parentNode;
7b433d8c 811
1da76274 812 e = false;
7b433d8c 813
1da76274
AD
814 if (this_cat && this_cat.nextSibling) {
815 while (!e && this_cat.nextSibling) {
816 this_cat = this_cat.nextSibling;
817 if (this_cat.id == "feedCatHolder") {
818 e = this_cat.firstChild.firstChild;
7b433d8c
AD
819 }
820 }
7b433d8c 821 }
1da76274
AD
822
823 } else {
824 e = false;
825 }
826
827 if (e) {
e686782e
AD
828 if (!unread_only || (unread_only && e.className != "feed" &&
829 e.className != "error")) {
1da76274
AD
830 return e.id.replace("FEEDR-", "");
831 }
832 }
7b433d8c 833 }
1da76274 834
7b433d8c
AD
835 } else if (direction == "prev") {
836
1da76274 837 var e = feed;
7b433d8c 838
1da76274 839 while (e) {
7b433d8c 840
1da76274
AD
841 if (e.previousSibling) {
842
843 e = e.previousSibling;
844
845 } else if (e.parentNode.parentNode.previousSibling) {
7b433d8c 846
1da76274 847 var this_cat = e.parentNode.parentNode;
7b433d8c 848
1da76274
AD
849 e = false;
850
851 if (this_cat && this_cat.previousSibling) {
852 while (!e && this_cat.previousSibling) {
853 this_cat = this_cat.previousSibling;
854 if (this_cat.id == "feedCatHolder") {
855 e = this_cat.firstChild.lastChild;
7b433d8c
AD
856 }
857 }
7b433d8c 858 }
1da76274
AD
859
860 } else {
861 e = false;
862 }
863
864 if (e) {
e686782e
AD
865 if (!unread_only || (unread_only && e.className != "feed" &&
866 e.className != "error")) {
1da76274
AD
867 return e.id.replace("FEEDR-", "");
868 }
869 }
870 }
7b433d8c
AD
871 }
872 }
873}
36aab70f
AD
874
875function showBlockElement(id) {
876 var elem = document.getElementById(id);
877
878 if (elem) {
879 elem.style.display = "block";
880 } else {
881 alert("[showBlockElement] can't find element with id " + id);
882 }
883}
884
a9b0bfd5
AD
885function hideParentElement(e) {
886 e.parentNode.style.display = "none";
887}
1b0809ae
AD
888
889function dropboxSelect(e, v) {
890 for (i = 0; i < e.length; i++) {
891 if (e[i].value == v) {
892 e.selectedIndex = i;
893 break;
894 }
895 }
896}
0ee1d1a0
AD
897
898// originally stolen from http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z
899// bugfixed just a little bit :-)
900function getURLParam(strParamName){
901 var strReturn = "";
902 var strHref = window.location.href;
903
904 if (strHref.indexOf("#") == strHref.length-1) {
905 strHref = strHref.substring(0, strHref.length-1);
906 }
907
908 if ( strHref.indexOf("?") > -1 ){
909 var strQueryString = strHref.substr(strHref.indexOf("?"));
910 var aQueryString = strQueryString.split("&");
911 for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
912 if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
913 var aParam = aQueryString[iParam].split("=");
914 strReturn = aParam[1];
915 break;
916 }
917 }
918 }
919 return strReturn;
920}
921
cf1bc085
AD
922function leading_zero(p) {
923 var s = String(p);
924 if (s.length == 1) s = "0" + s;
925 return s;
926}
c38c2b69 927
86b682ce 928function closeInfoBox(cleanup) {
e5d758e3
AD
929 var box = document.getElementById('infoBox');
930 var shadow = document.getElementById('infoBoxShadow');
931
932 if (shadow) {
933 shadow.style.display = "none";
934 } else if (box) {
935 box.style.display = "none";
936 }
937
86b682ce
AD
938 if (cleanup) box.innerHTML = "&nbsp;";
939
e5d758e3 940 enableHotkeys();
c14b5566 941
e5d758e3
AD
942}
943
944
7b5c6012
AD
945function displayDlg(id, param) {
946
947 if (!xmlhttp_ready(xmlhttp)) {
948 printLockingError();
949 return
950 }
951
952 notify("");
953
954 xmlhttp.open("GET", "backend.php?op=dlg&id=" +
955 param_escape(id) + "&param=" + param_escape(param), true);
e5d758e3 956 xmlhttp.onreadystatechange=infobox_callback;
7b5c6012
AD
957 xmlhttp.send(null);
958
959 disableHotkeys();
2371c520 960
7b5c6012
AD
961}
962
e5d758e3 963function infobox_submit_callback() {
7b5c6012 964 if (xmlhttp.readyState == 4) {
e5d758e3 965 closeInfoBox();
7b5c6012
AD
966
967 // called from prefs, reload tab
968 if (active_tab) {
969 selectTab(active_tab, false);
970 }
79f3553b
AD
971
972 notify(xmlhttp.responseText);
973
7b5c6012
AD
974 }
975}
976
e5d758e3 977function infobox_callback() {
7b5c6012 978 if (xmlhttp.readyState == 4) {
e5d758e3
AD
979 var box = document.getElementById('infoBox');
980 var shadow = document.getElementById('infoBoxShadow');
981 if (box) {
982 box.innerHTML=xmlhttp.responseText;
983 if (shadow) {
984 shadow.style.display = "block";
985 } else {
986 box.style.display = "block";
987 }
988 }
989 }
7b5c6012
AD
990}
991
992function qaddFilter() {
993
994 if (!xmlhttp_ready(xmlhttp)) {
995 printLockingError();
996 return
997 }
998
79f3553b 999 var query = Form.serialize("filter_add_form");
7b5c6012 1000
79f3553b
AD
1001 xmlhttp.open("GET", "backend.php?" + query, true);
1002 xmlhttp.onreadystatechange=infobox_submit_callback;
1003 xmlhttp.send(null);
7b5c6012 1004
c14b5566 1005 return true;
7b5c6012
AD
1006}
1007
2371c520
AD
1008function toggleSubmitNotEmpty(e, submit_id) {
1009 try {
1010 document.getElementById(submit_id).disabled = (e.value == "")
1011 } catch (e) {
1012 exception_error("toggleSubmitNotEmpty", e);
1013 }
1014}
1d7bf5a0 1015
605f7d46
AD
1016function isValidURL(s) {
1017 return s.match("http://") != null || s.match("https://") != null;
1018}
07eb9178
AD
1019
1020function qafAdd() {
1021
1022 if (!xmlhttp_ready(xmlhttp)) {
1023 printLockingError();
1024 return
1025 }
1026
1027 notify("Adding feed...");
1028
1029 closeInfoBox();
1030
33d13e72 1031 var feeds_doc = getFeedsContext().document;
07eb9178
AD
1032
1033 feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
1034
1035 var query = Form.serialize("feed_add_form");
1036
1037 xmlhttp.open("GET", "backend.php?" + query, true);
1038 xmlhttp.onreadystatechange=dlg_frefresh_callback;
1039 xmlhttp.send(null);
07eb9178
AD
1040}
1041
86b682ce
AD
1042function filterCR(e)
1043{
1044 var key;
1045
1046 if(window.event)
1047 key = window.event.keyCode; //IE
1048 else
1049 key = e.which; //firefox
1050
1051 if(key == 13)
1052 return false;
1053 else
1054 return true;
1055}
1056
ac378ad4
AD
1057function getMainContext() {
1058 if (parent.window != window) {
1059 return parent.window;
1060 } else {
1061 return this.window;
1062 }
1063}
1064
33d13e72
AD
1065function getFeedsContext() {
1066 try {
1067 return getMainContext().frames["feeds-frame"];
1068 } catch (e) {
1069 exception_error("getFeedsContext", e);
1070 }
1071}
1072
ac378ad4
AD
1073function debug(msg) {
1074 var ctx = getMainContext();
1075
1076 var c = ctx.document.getElementById('debug_output');
1077 if (c && c.style.display == "block") {
1078 while (c.lastChild != 'undefined' && c.childNodes.length > 20) {
1079 c.removeChild(c.lastChild);
1080 }
1081
1082 var d = new Date();
1083 var ts = leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
1084 ":" + leading_zero(d.getSeconds());
1085 c.innerHTML = "<li>[" + ts + "] " + msg + "</li>" + c.innerHTML;
1086 }
1087}
1088
33d13e72
AD
1089function getInitParam(key) {
1090 return getMainContext().init_params[key];
1091}
3ac2b520 1092
33d13e72 1093// TODO: batch mode
e8bd0da9 1094function storeInitParam(key, value, is_client) {
33d13e72
AD
1095 try {
1096 getMainContext().init_params[key] = value;
e8bd0da9
AD
1097 if (!is_client) {
1098 new Ajax.Request("backend.php?op=rpc&subop=storeParam&key=" +
1099 param_escape(key) + "&value=" + param_escape(value));
1100 }
33d13e72
AD
1101 } catch (e) {
1102 exception_error("storeInitParam", e);
1103 }
1104}