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