1 var hotkeys_enabled = true;
2 var debug_mode_enabled = false;
3 var xmlhttp_rpc = Ajax.getTransport();
5 /* add method to remove element from array */
7 Array.prototype.remove = function(s) {
8 for (var i=0; i < this.length; i++) {
9 if (s == this[i]) this.splice(i, 1);
13 function browser_has_opacity() {
14 return navigator.userAgent.match("Gecko") != null ||
15 navigator.userAgent.match("Opera") != null;
19 return navigator.userAgent.match("MSIE");
23 return navigator.userAgent.match("Opera");
27 return navigator.userAgent.match("KHTML");
30 function is_safari() {
31 return navigator.userAgent.match("Safari");
34 function exception_error(location, e, silent) {
38 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
40 msg = "Exception: " + e.name + ", " + e.message +
41 "\nFunction: " + location + "()" +
42 "\nLocation: " + base_fname + ":" + e.lineNumber;
45 msg = "Exception: " + e + "\nFunction: " + location + "()";
48 debug("<b>EXCEPTION: " + msg + "</b>");
55 function disableHotkeys() {
56 hotkeys_enabled = false;
59 function enableHotkeys() {
60 hotkeys_enabled = true;
63 function xmlhttp_ready(obj) {
64 return obj.readyState == 4 || obj.readyState == 0 || !obj.readyState;
67 function open_article_callback() {
68 if (xmlhttp_rpc.readyState == 4) {
71 if (xmlhttp_rpc.responseXML) {
72 var link = xmlhttp_rpc.responseXML.getElementsByTagName("link")[0];
73 var id = xmlhttp_rpc.responseXML.getElementsByTagName("id")[0];
76 window.open(link.firstChild.nodeValue, "_blank");
79 id = id.firstChild.nodeValue;
80 if (!document.getElementById("headlinesList")) {
81 window.setTimeout("toggleUnread(" + id + ", 0)", 100);
88 exception_error("open_article_callback", e);
93 function logout_callback() {
94 var container = document.getElementById('notify');
95 if (xmlhttp.readyState == 4) {
97 var date = new Date();
98 var timestamp = Math.round(date.getTime() / 1000);
99 window.location.href = "tt-rss.php";
101 exception_error("logout_callback", e);
106 function notify_callback() {
107 var container = document.getElementById('notify');
108 if (xmlhttp.readyState == 4) {
109 container.innerHTML=xmlhttp.responseText;
113 function rpc_notify_callback() {
114 var container = document.getElementById('notify');
115 if (xmlhttp_rpc.readyState == 4) {
116 container.innerHTML=xmlhttp_rpc.responseText;
120 function param_escape(arg) {
121 if (typeof encodeURIComponent != 'undefined')
122 return encodeURIComponent(arg);
127 function param_unescape(arg) {
128 if (typeof decodeURIComponent != 'undefined')
129 return decodeURIComponent(arg);
131 return unescape(arg);
134 function delay(gap) {
136 then=new Date().getTime();
138 while((now-then)<gap) {
139 now=new Date().getTime();
143 var notify_hide_timerid = false;
145 function hide_notify() {
146 var n = document.getElementById("notify");
148 n.style.display = "none";
152 function notify_real(msg, no_hide, n_type) {
154 var n = document.getElementById("notify");
155 var nb = document.getElementById("notify_body");
157 if (!n || !nb) return;
159 if (notify_hide_timerid) {
160 window.clearTimeout(notify_hide_timerid);
164 if (n.style.display == "block") {
165 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
169 n.style.display = "block";
181 if (typeof __ != 'undefined') {
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) {
191 n.className = "notifyError";
192 msg = "<img src='images/sign_excl.png'> " + msg;
193 } else if (n_type == 4) {
194 n.className = "notifyInfo";
195 msg = "<img src='images/sign_info.png'> " + msg;
198 // msg = "<img src='images/live_com_loading.gif'> " + msg;
203 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
207 function notify(msg, no_hide) {
208 notify_real(msg, no_hide, 1);
211 function notify_progress(msg, no_hide) {
212 notify_real(msg, no_hide, 2);
215 function notify_error(msg, no_hide) {
216 notify_real(msg, no_hide, 3);
220 function notify_info(msg, no_hide) {
221 notify_real(msg, no_hide, 4);
224 function printLockingError() {
225 notify_info("Please wait until operation finishes.");
228 function hotkey_handler(e) {
233 var shift_key = false;
236 shift_key = e.shiftKey;
241 if (!hotkeys_enabled) return;
244 keycode = window.event.keyCode;
249 if (keycode == 82) { // r
250 return scheduleFeedUpdate(true);
253 if (keycode == 83) { // s
254 return displayDlg("search", getActiveFeedId());
257 if (keycode == 85) { // u
258 if (getActiveFeedId()) {
259 return viewfeed(getActiveFeedId(), "ForceUpdate");
263 if (keycode == 65) { // a
264 return toggleDispRead();
267 var feedlist = document.getElementById('feedList');
269 if (keycode == 74) { // j
270 var feed = getActiveFeedId();
271 var new_feed = getRelativeFeedId(feedlist, feed, 'prev');
272 if (new_feed) viewfeed(new_feed, '');
275 if (keycode == 75) { // k
276 var feed = getActiveFeedId();
277 var new_feed = getRelativeFeedId(feedlist, feed, 'next');
278 if (new_feed) viewfeed(new_feed, '');
281 if (keycode == 78 || keycode == 40) { // n, down
282 if (typeof moveToPost != 'undefined') {
283 return moveToPost('next');
287 if (keycode == 80 || keycode == 38) { // p, up
288 if (typeof moveToPost != 'undefined') {
289 return moveToPost('prev');
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');
298 document.getElementById('debug_output').style.display = 'none';
301 debug_mode_enabled = !debug_mode_enabled;
304 if (keycode == 190 && shift_key) { // >
308 if (keycode == 188 && shift_key) { // <
312 if (keycode == 191 && shift_key) { // ?
316 if (keycode == 69 && shift_key) { // e
317 return editFeedDlg(getActiveFeedId());
320 if (keycode == 70 && shift_key) { // f
321 if (getActiveFeedId()) {
322 return catchupCurrentFeed();
326 if (keycode == 80 && shift_key) { // p
327 if (getActiveFeedId()) {
328 return catchupPage();
332 if (keycode == 86) { // v
333 if (getActiveArticleId()) {
334 openArticleInNewWindow(getActiveArticleId());
338 if (keycode == 84) { // t
340 var id = getActiveArticleId();
344 var cb = document.getElementById("RCHK-" + id);
347 cb.checked = !cb.checked;
348 toggleSelectRowById(cb, "RROW-" + id);
353 if (keycode == 67) { // c
354 var id = getActiveArticleId();
361 if (typeof localHotkeyHandler != 'undefined') {
363 return localHotkeyHandler(e);
365 exception_error("hotkey_handler, local:", e);
369 debug("KP=" + keycode);
371 exception_error("hotkey_handler", e);
375 function cleanSelectedList(element) {
376 var content = document.getElementById(element);
378 if (!document.getElementById("feedCatHolder")) {
379 for (i = 0; i < content.childNodes.length; i++) {
380 var child = content.childNodes[i];
382 child.className = child.className.replace("Selected", "");
388 for (i = 0; i < content.childNodes.length; i++) {
389 var child = content.childNodes[i];
390 if (child.id == "feedCatHolder") {
392 var fcat = child.lastChild;
393 for (j = 0; j < fcat.childNodes.length; j++) {
394 var feed = fcat.childNodes[j];
395 feed.className = feed.className.replace("Selected", "");
403 function cleanSelected(element) {
404 var content = document.getElementById(element);
406 for (i = 0; i < content.rows.length; i++) {
407 content.rows[i].className = content.rows[i].className.replace("Selected", "");
411 function getVisibleUnreadHeadlines() {
412 var content = document.getElementById("headlinesList");
414 var rows = new Array();
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")) {
425 function getVisibleHeadlineIds() {
427 var content = document.getElementById("headlinesList");
429 var rows = new Array();
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) {
440 function getFirstVisibleHeadlineId() {
441 var rows = getVisibleHeadlineIds();
445 function getLastVisibleHeadlineId() {
446 var rows = getVisibleHeadlineIds();
447 return rows[rows.length-1];
450 function markHeadline(id) {
451 var row = document.getElementById("RROW-" + id);
453 var is_active = false;
455 if (row.className.match("Active")) {
458 row.className = row.className.replace("Selected", "");
459 row.className = row.className.replace("Active", "");
460 row.className = row.className.replace("Insensitive", "");
463 row.className = row.className = "Active";
466 var check = document.getElementById("RCHK-" + id);
469 check.checked = true;
472 row.className = row.className + "Selected";
477 function getFeedIds() {
478 var content = document.getElementById("feedsList");
480 var rows = new Array();
482 for (i = 0; i < content.rows.length; i++) {
483 var id = content.rows[i].id.replace("FEEDR-", "");
492 function setCookie(name, value, lifetime, path, domain, secure) {
498 d.setTime(d.getTime() + (lifetime * 1000));
501 debug("setCookie: " + name + " => " + value + ": " + d);
503 int_setCookie(name, value, d, path, domain, secure);
507 function int_setCookie(name, value, expires, path, domain, secure) {
508 document.cookie= name + "=" + escape(value) +
509 ((expires) ? "; expires=" + expires.toGMTString() : "") +
510 ((path) ? "; path=" + path : "") +
511 ((domain) ? "; domain=" + domain : "") +
512 ((secure) ? "; secure" : "");
515 function 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";
525 function getCookie(name) {
527 var dc = document.cookie;
528 var prefix = name + "=";
529 var begin = dc.indexOf("; " + prefix);
531 begin = dc.indexOf(prefix);
532 if (begin != 0) return null;
537 var end = document.cookie.indexOf(";", begin);
541 return unescape(dc.substring(begin + prefix.length, end));
544 function disableContainerChildren(id, disable, doc) {
546 if (!doc) doc = document;
548 var container = doc.getElementById(id);
551 //alert("disableContainerChildren: element " + id + " not found");
555 for (var i = 0; i < container.childNodes.length; i++) {
556 var child = container.childNodes[i];
559 child.disabled = disable;
565 if (child.className && child.className.match("button")) {
566 child.className = "disabledButton";
569 if (child.className && child.className.match("disabledButton")) {
570 child.className = "button";
577 function gotoPreferences() {
578 document.location.href = "prefs.php";
581 function gotoMain() {
582 document.location.href = "tt-rss.php";
585 function gotoExportOpml() {
586 document.location.href = "opml.php?op=Export";
589 function getActiveFeedId() {
590 // return getCookie("ttrss_vf_actfeed");
592 debug("gAFID: " + active_feed_id);
593 return active_feed_id;
595 exception_error("getActiveFeedId", e);
599 function activeFeedIsCat() {
600 return active_feed_is_cat;
603 function setActiveFeedId(id) {
604 // return setCookie("ttrss_vf_actfeed", id);
606 debug("sAFID(" + id + ")");
609 exception_error("setActiveFeedId", e);
613 function parse_counters(reply, scheduled_call) {
618 if (reply.firstChild && reply.firstChild.firstChild) {
619 debug("<b>wrong element passed to parse_counters, adjusting.</b>");
620 reply = reply.firstChild;
623 for (var l = 0; l < reply.childNodes.length; l++) {
624 if (!reply.childNodes[l] ||
625 typeof(reply.childNodes[l].getAttribute) == "undefined") {
626 // where did this come from?
630 var id = reply.childNodes[l].getAttribute("id");
631 var t = reply.childNodes[l].getAttribute("type");
632 var ctr = reply.childNodes[l].getAttribute("counter");
633 var error = reply.childNodes[l].getAttribute("error");
634 var has_img = reply.childNodes[l].getAttribute("hi");
635 var updated = reply.childNodes[l].getAttribute("updated");
637 if (id == "global-unread") {
643 if (id == "subscribed-feeds") {
648 if (t == "category") {
649 var catctr = document.getElementById("FCATCTR-" + id);
651 catctr.innerHTML = "(" + ctr + ")";
653 catctr.className = "catCtrHasUnread";
655 catctr.className = "catCtrNoUnread";
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);
668 if (updated && feedlink) {
670 feedlink.title = "Error: " + error + " (" + updated + ")";
672 feedlink.title = "Updated: " + updated;
676 if (updated && feedupd) {
678 feedupd.innerHTML = updated + " (Error)";
680 feedupd.innerHTML = updated;
684 if (has_img && feed_img && !is_msie()) {
685 feed_img.src = getInitParam("icons_location") + "/" + id + ".ico";
688 if (feedctr && feedu && feedr) {
690 if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
694 var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
696 feedu.innerHTML = ctr;
699 feedr.className = feedr.className.replace("feed", "error");
701 feedr.className = feedr.className.replace("error", "feed");
705 feedctr.className = "odd";
706 if (!feedr.className.match("Unread")) {
707 var is_selected = feedr.className.match("Selected");
709 feedr.className = feedr.className.replace("Selected", "");
710 feedr.className = feedr.className.replace("Unread", "");
712 feedr.className = feedr.className + "Unread";
715 feedr.className = feedr.className + "Selected";
721 new Effect.Highlight(feedr, {duration: 1, startcolor: "#fff7d5"});
724 feedctr.className = "invisible";
725 feedr.className = feedr.className.replace("Unread", "");
730 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
732 var feeds_stored = number_of_feeds;
734 debug("Feed counters, C: " + feeds_found + ", S:" + feeds_stored);
736 if (feeds_stored != feeds_found) {
737 number_of_feeds = feeds_found;
739 if (feeds_stored != 0) {
740 debug("Subscribed feed number changed, refreshing feedlist");
741 setTimeout('updateFeedList(false, false)', 50);
746 exception_error("parse_counters", e);
750 function parse_counters_reply(xmlhttp, scheduled_call) {
752 if (!xmlhttp.responseXML) {
753 notify_error("Backend did not return valid XML", true);
757 var reply = xmlhttp.responseXML.firstChild;
760 notify_error("Backend did not return expected XML object", true);
765 var error_code = false;
766 var error_msg = false;
768 if (reply.firstChild) {
769 error_code = reply.firstChild.getAttribute("error-code");
770 error_msg = reply.firstChild.getAttribute("error-msg");
774 error_code = reply.getAttribute("error-code");
775 error_msg = reply.getAttribute("error-msg");
778 if (error_code && error_code != 0) {
779 debug("refetch_callback: got error code " + error_code);
780 return fatalError(error_code, error_msg);
783 var counters = reply.firstChild;
785 parse_counters(counters, scheduled_call);
787 var runtime_info = counters.nextSibling;
789 parse_runtime_info(runtime_info);
791 if (getInitParam("feeds_sort_by_unread") == 1) {
795 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
799 function all_counters_callback() {
800 if (xmlhttp_rpc.readyState == 4) {
802 /* if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
803 debug("[all_counters_callback] backend did not return valid XML");
807 debug("in all_counters_callback : " + xmlhttp_rpc.responseXML);
809 var reply = xmlhttp_rpc.responseXML.firstChild;
811 var counters = reply.firstChild;
813 parse_counters(counters);
815 var runtime = counters.nextSibling;
818 parse_runtime_info(runtime);
821 if (getInitParam("feeds_sort_by_unread") == 1) {
825 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1); */
827 debug("in all_counters_callback");
829 parse_counters_reply(xmlhttp_rpc);
832 exception_error("all_counters_callback", e);
837 function get_feed_entry_unread(doc, elem) {
839 var id = elem.id.replace("FEEDR-", "");
846 return parseInt(doc.getElementById("FEEDU-" + id).innerHTML);
852 function resort_category(doc, node) {
853 debug("resort_category: " + node);
855 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
856 for (i = 0; i < node.childNodes.length; i++) {
857 if (node.childNodes[i].nodeName != "LI") { continue; }
859 if (get_feed_entry_unread(doc, node.childNodes[i]) < 0) {
863 for (j = i+1; j < node.childNodes.length; j++) {
864 if (node.childNodes[j].nodeName != "LI") { continue; }
866 var tmp_val = get_feed_entry_unread(doc, node.childNodes[i]);
867 var cur_val = get_feed_entry_unread(doc, node.childNodes[j]);
869 if (cur_val > tmp_val) {
870 tempnode_i = node.childNodes[i].cloneNode(true);
871 tempnode_j = node.childNodes[j].cloneNode(true);
872 node.replaceChild(tempnode_i, node.childNodes[j]);
873 node.replaceChild(tempnode_j, node.childNodes[i]);
882 function resort_feedlist() {
883 debug("resort_feedlist");
887 if (fd.getElementById("feedCatHolder")) {
889 var feeds = fd.getElementById("feedList");
890 var child = feeds.firstChild;
894 if (child.id == "feedCatHolder") {
895 resort_category(fd, child.firstChild);
898 child = child.nextSibling;
902 resort_category(fd, fd.getElementById("feedList"));
906 function update_all_counters(feed) {
907 if (xmlhttp_ready(xmlhttp_rpc)) {
908 var query = "backend.php?op=rpc&subop=getAllCounters";
911 query = query + "&aid=" + feed;
914 if (tagsAreDisplayed()) {
915 query = query + "&omode=lt";
917 query = query + "&omode=flc";
920 debug("update_all_counters QUERY: " + query);
922 var date = new Date();
923 var timestamp = Math.round(date.getTime() / 1000);
924 query = query + "&ts=" + timestamp
926 xmlhttp_rpc.open("GET", query, true);
927 xmlhttp_rpc.onreadystatechange=all_counters_callback;
928 xmlhttp_rpc.send(null);
932 function popupHelp(tid) {
933 var w = window.open("backend.php?op=help&tid=" + tid,
935 "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
938 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
939 * * @author Sundar Dorai-Raj
940 * * Email: sdoraira@vt.edu
941 * * This program is free software; you can redistribute it and/or
942 * * modify it under the terms of the GNU General Public License
943 * * as published by the Free Software Foundation; either version 2
944 * * of the License, or (at your option) any later version,
945 * * provided that any use properly credits the author.
946 * * This program is distributed in the hope that it will be useful,
947 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
948 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
949 * * GNU General Public License for more details at http://www.gnu.org * * */
951 var numbers=".0123456789";
952 function isNumeric(x) {
953 // is x a String or a character?
955 // remove negative sign
957 for(j=0;j<x.length;j++) {
958 // call isNumeric recursively for each character
959 number=isNumeric(x.substring(j,j+1));
960 if(!number) return number;
965 // if x is number return true
966 if(numbers.indexOf(x)>=0) return true;
972 function hideOrShowFeeds(doc, hide) {
974 debug("hideOrShowFeeds: " + doc + ", " + hide);
978 var list = fd.getElementById("feedList");
980 if (fd.getElementById("feedCatHolder")) {
982 var feeds = fd.getElementById("feedList");
983 var child = feeds.firstChild;
987 if (child.id == "feedCatHolder") {
988 hideOrShowFeedsCategory(fd, child.firstChild, hide, child.previousSibling);
991 child = child.nextSibling;
995 hideOrShowFeedsCategory(fd, fd.getElementById("feedList"), hide);
999 function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
1001 // debug("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
1006 debug("hideOrShowFeeds: passed node is null, aborting");
1010 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
1011 for (i = 0; i < node.childNodes.length; i++) {
1012 if (node.childNodes[i].nodeName != "LI") { continue; }
1014 if (node.childNodes[i].style != undefined) {
1016 var has_unread = (node.childNodes[i].className != "feed" &&
1017 node.childNodes[i].className != "label" &&
1018 node.childNodes[i].className != "virt" &&
1019 node.childNodes[i].className != "tag");
1021 // debug(node.childNodes[i].id + " --> " + has_unread);
1023 if (hide && !has_unread) {
1024 //node.childNodes[i].style.display = "none";
1025 Effect.Fade(node.childNodes[i], {duration : 0.3});
1029 node.childNodes[i].style.display = "list-item";
1030 //Effect.Appear(node.childNodes[i], {duration : 0.3});
1034 node.childNodes[i].style.display = "list-item";
1036 //Effect.Appear(node.childNodes[i], {duration : 0.3});
1037 //Effect.Highlight(node.childNodes[i]);
1043 if (cat_unread == 0) {
1044 if (cat_node.style == undefined) {
1045 debug("ERROR: supplied cat_node " + cat_node +
1046 " has no styles. WTF?");
1050 //cat_node.style.display = "none";
1051 Effect.Fade(cat_node, {duration : 0.3});
1053 cat_node.style.display = "list-item";
1057 cat_node.style.display = "list-item";
1063 // debug("unread for category: " + cat_unread);
1066 function selectTableRow(r, do_select) {
1067 r.className = r.className.replace("Selected", "");
1070 r.className = r.className + "Selected";
1074 function selectTableRowById(elem_id, check_id, do_select) {
1078 var row = document.getElementById(elem_id);
1081 selectTableRow(row, do_select);
1084 var check = document.getElementById(check_id);
1087 check.checked = do_select;
1090 exception_error("selectTableRowById", e);
1094 function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
1095 classcheck, reset_others) {
1097 var content = document.getElementById(content_id);
1100 alert("[selectTableRows] Element " + content_id + " not found.");
1104 for (i = 0; i < content.rows.length; i++) {
1105 if (!classcheck || content.rows[i].className.match(classcheck)) {
1107 if (content.rows[i].id.match(prefix)) {
1108 selectTableRow(content.rows[i], do_select);
1110 var row_id = content.rows[i].id.replace(prefix, "");
1111 var check = document.getElementById(check_prefix + row_id);
1114 check.checked = do_select;
1116 } else if (reset_others) {
1117 selectTableRow(content.rows[i], false);
1119 var row_id = content.rows[i].id.replace(prefix, "");
1120 var check = document.getElementById(check_prefix + row_id);
1123 check.checked = false;
1127 } else if (reset_others) {
1128 selectTableRow(content.rows[i], false);
1130 var row_id = content.rows[i].id.replace(prefix, "");
1131 var check = document.getElementById(check_prefix + row_id);
1134 check.checked = false;
1141 function getSelectedTableRowIds(content_id, prefix) {
1143 var content = document.getElementById(content_id);
1146 alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
1150 var sel_rows = new Array();
1152 for (i = 0; i < content.rows.length; i++) {
1153 if (content.rows[i].id.match(prefix) &&
1154 content.rows[i].className.match("Selected")) {
1156 var row_id = content.rows[i].id.replace(prefix + "-", "");
1157 sel_rows.push(row_id);
1165 function toggleSelectRowById(sender, id) {
1166 var row = document.getElementById(id);
1168 if (sender.checked) {
1169 if (!row.className.match("Selected")) {
1170 row.className = row.className + "Selected";
1173 if (row.className.match("Selected")) {
1174 row.className = row.className.replace("Selected", "");
1179 function toggleSelectListRow(sender) {
1180 var parent_row = sender.parentNode;
1182 if (sender.checked) {
1183 if (!parent_row.className.match("Selected")) {
1184 parent_row.className = parent_row.className + "Selected";
1187 if (parent_row.className.match("Selected")) {
1188 parent_row.className = parent_row.className.replace("Selected", "");
1193 function tSR(sender) {
1194 return toggleSelectRow(sender);
1197 function toggleSelectRow(sender) {
1198 var parent_row = sender.parentNode.parentNode;
1200 if (sender.checked) {
1201 if (!parent_row.className.match("Selected")) {
1202 parent_row.className = parent_row.className + "Selected";
1205 if (parent_row.className.match("Selected")) {
1206 parent_row.className = parent_row.className.replace("Selected", "");
1211 function openExternalUrl(url) {
1212 var w = window.open(url);
1215 function getRelativeFeedId(list, id, direction, unread_only) {
1216 var rows = list.getElementsByTagName("LI");
1217 var feeds = new Array();
1219 for (var i = 0; i < rows.length; i++) {
1220 if (rows[i].id.match("FEEDR-")) {
1222 if (rows[i].id == "FEEDR-" + id || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
1225 (rows[i].className.match("Unread") || rows[i].id == "FEEDR-" + id)) {
1226 feeds.push(rows[i].id.replace("FEEDR-", ""));
1233 if (direction == "next") {
1234 return feeds.shift();
1239 if (direction == "next") {
1240 var idx = feeds.indexOf(id);
1241 if (idx != -1 && idx < feeds.length) {
1242 return feeds[idx+1];
1244 return getRelativeFeedId(list, false, direction, unread_only);
1247 var idx = feeds.indexOf(id);
1249 return feeds[idx-1];
1251 return getRelativeFeedId(list, false, direction, unread_only);
1258 if (direction == "next") {
1259 for (i = 0; i < list.childNodes.length; i++) {
1260 var child = list.childNodes[i];
1261 if (child.id && child.id == "feedCatHolder") {
1262 if (child.lastChild) {
1263 var cr = getRelativeFeedId(child.firstChild, id, direction, unread_only);
1266 } else if (child.id && child.id.match("FEEDR-")) {
1267 return child.id.replace('FEEDR-', '');
1272 // FIXME select last feed doesn't work when only unread feeds are visible
1274 if (direction == "prev") {
1275 for (i = list.childNodes.length-1; i >= 0; i--) {
1276 var child = list.childNodes[i];
1277 if (child.id == "feedCatHolder" && Element.visible(child)) {
1278 if (child.firstChild) {
1279 var cr = getRelativeFeedId(child.firstChild, id, direction);
1282 } else if (child.id.match("FEEDR-")) {
1284 if (getInitParam("hide_read_feeds") == 1) {
1285 if (child.className != "feed") {
1286 // alert(child.className);
1287 return child.id.replace('FEEDR-', '');
1290 return child.id.replace('FEEDR-', '');
1297 var feed = list.ownerDocument.getElementById("FEEDR-" + id);
1299 if (getInitParam("hide_read_feeds") == 1) {
1303 if (direction == "next") {
1309 if (e.nextSibling) {
1313 } else if (e.parentNode.parentNode.nextSibling) {
1315 var this_cat = e.parentNode.parentNode;
1319 if (this_cat && this_cat.nextSibling) {
1320 while (!e && this_cat.nextSibling) {
1321 this_cat = this_cat.nextSibling;
1322 if (this_cat.id == "feedCatHolder") {
1323 e = this_cat.firstChild.firstChild;
1333 if (!unread_only || (unread_only && e.className != "feed" &&
1334 e.className.match("feed"))) {
1335 if (e.parentNode.parentNode &&
1336 Element.visible(e.parentNode.parentNode)) {
1337 return e.id.replace("FEEDR-", "");
1343 } else if (direction == "prev") {
1349 if (e.previousSibling) {
1351 e = e.previousSibling;
1353 } else if (e.parentNode.parentNode.previousSibling) {
1355 var this_cat = e.parentNode.parentNode;
1359 if (this_cat && this_cat.previousSibling) {
1360 while (!e && this_cat.previousSibling) {
1361 this_cat = this_cat.previousSibling;
1362 if (this_cat.id == "feedCatHolder") {
1363 e = this_cat.firstChild.lastChild;
1373 if (!unread_only || (unread_only && e.className != "feed" &&
1374 e.className.match("feed"))) {
1375 if (e.parentNode.parentNode &&
1376 Element.visible(e.parentNode.parentNode)) {
1377 return e.id.replace("FEEDR-", "");
1386 function showBlockElement(id, h_id) {
1387 var elem = document.getElementById(id);
1390 elem.style.display = "block";
1393 elem = document.getElementById(h_id);
1395 elem.style.display = "none";
1399 alert("[showBlockElement] can't find element with id " + id);
1403 function appearBlockElement_afh(effect) {
1407 function checkboxToggleElement(elem, id) {
1409 Effect.SlideDown(id, {duration : 0.5});
1411 Effect.SlideUp(id, {duration : 0.5});
1415 function appearBlockElement(id, h_id) {
1419 Effect.SlideDown(id, {duration : 1.0, afterFinish: appearBlockElement_afh});
1421 exception_error("appearBlockElement", e);
1427 function hideParentElement(e) {
1428 e.parentNode.style.display = "none";
1431 function dropboxSelect(e, v) {
1432 for (i = 0; i < e.length; i++) {
1433 if (e[i].value == v) {
1434 e.selectedIndex = i;
1440 // originally stolen from http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z
1441 // bugfixed just a little bit :-)
1442 function getURLParam(strParamName){
1444 var strHref = window.location.href;
1446 if (strHref.indexOf("#") == strHref.length-1) {
1447 strHref = strHref.substring(0, strHref.length-1);
1450 if ( strHref.indexOf("?") > -1 ){
1451 var strQueryString = strHref.substr(strHref.indexOf("?"));
1452 var aQueryString = strQueryString.split("&");
1453 for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
1454 if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
1455 var aParam = aQueryString[iParam].split("=");
1456 strReturn = aParam[1];
1464 function leading_zero(p) {
1466 if (s.length == 1) s = "0" + s;
1470 function closeInfoBox(cleanup) {
1472 if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
1473 var overlay = document.getElementById("dialog_overlay");
1475 overlay.style.display = "none";
1479 var box = document.getElementById('infoBox');
1480 var shadow = document.getElementById('infoBoxShadow');
1483 shadow.style.display = "none";
1485 box.style.display = "none";
1488 if (cleanup) box.innerHTML = " ";
1496 function displayDlg(id, param) {
1498 if (!xmlhttp_ready(xmlhttp)) {
1499 printLockingError();
1503 notify_progress("Loading, please wait...", true);
1505 xmlhttp.open("GET", "backend.php?op=dlg&id=" +
1506 param_escape(id) + "¶m=" + param_escape(param), true);
1507 xmlhttp.onreadystatechange=infobox_callback;
1515 function infobox_submit_callback() {
1516 if (xmlhttp.readyState == 4) {
1520 // called from prefs, reload tab
1522 selectTab(active_tab, false);
1526 if (xmlhttp.responseText) {
1527 notify_info(xmlhttp.responseText);
1533 function infobox_callback() {
1534 if (xmlhttp.readyState == 4) {
1538 if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
1539 var overlay = document.getElementById("dialog_overlay");
1541 overlay.style.display = "block";
1545 var box = document.getElementById('infoBox');
1546 var shadow = document.getElementById('infoBoxShadow');
1550 new Draggable(shadow);
1553 box.innerHTML=xmlhttp.responseText;
1555 shadow.style.display = "block";
1557 box.style.display = "block";
1561 /* FIXME this needs to be moved out somewhere */
1563 if (document.getElementById("tags_choices")) {
1564 new Ajax.Autocompleter('tags_str', 'tags_choices',
1565 "backend.php?op=rpc&subop=completeTags",
1566 { tokens: ',', paramName: "search" });
1571 exception_error("infobox_callback", e);
1576 function helpbox_callback() {
1577 if (xmlhttp.readyState == 4) {
1578 var box = document.getElementById('helpBox');
1579 var shadow = document.getElementById('helpBoxShadow');
1581 box.innerHTML=xmlhttp.responseText;
1583 shadow.style.display = "block";
1585 box.style.display = "block";
1592 function addFilter() {
1594 if (!xmlhttp_ready(xmlhttp)) {
1595 printLockingError();
1599 var form = document.forms['filter_add_form'];
1600 var reg_exp = form.reg_exp.value;
1602 if (reg_exp == "") {
1603 alert(__("Can't add filter: nothing to match on."));
1607 var query = Form.serialize("filter_add_form");
1609 xmlhttp.open("GET", "backend.php?" + query, true);
1610 xmlhttp.onreadystatechange=infobox_submit_callback;
1616 function toggleSubmitNotEmpty(e, submit_id) {
1618 document.getElementById(submit_id).disabled = (e.value == "")
1620 exception_error("toggleSubmitNotEmpty", e);
1624 function isValidURL(s) {
1625 return s.match("http://") != null || s.match("https://") != null || s.match("feed://") != null;
1628 function qaddFeed() {
1630 if (!xmlhttp_ready(xmlhttp)) {
1631 printLockingError();
1635 var form = document.forms['feed_add_form'];
1636 var feed_url = form.feed_url.value;
1638 if (feed_url == "") {
1639 alert(__("Can't subscribe: no feed URL given."));
1643 notify_progress(__("Subscribing to feed..."), true);
1647 var feeds_doc = document;
1649 // feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
1651 var query = Form.serialize("feed_add_form");
1653 debug("subscribe q: " + query);
1655 /* xmlhttp.open("GET", "backend.php?" + query, true);
1656 xmlhttp.onreadystatechange=dlg_frefresh_callback;
1657 xmlhttp.send(null); */
1659 xmlhttp.open("POST", "backend.php", true);
1660 xmlhttp.onreadystatechange=dlg_frefresh_callback;
1661 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1662 xmlhttp.send(query);
1667 function filterCR(e, f)
1672 key = window.event.keyCode; //IE
1674 key = e.which; //firefox
1677 if (typeof f != 'undefined') {
1688 function getMainContext() {
1692 function getFeedsContext() {
1696 function getContentContext() {
1700 function getHeadlinesContext() {
1704 var debug_last_class = "even";
1706 function debug(msg) {
1708 if (debug_last_class == "even") {
1709 debug_last_class = "odd";
1711 debug_last_class = "even";
1714 var c = document.getElementById('debug_output');
1715 if (c && c.style.display == "block") {
1716 while (c.lastChild != 'undefined' && c.childNodes.length > 100) {
1717 c.removeChild(c.lastChild);
1721 var ts = leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
1722 ":" + leading_zero(d.getSeconds());
1723 c.innerHTML = "<li class=\"" + debug_last_class + "\"><span class=\"debugTS\">[" + ts + "]</span> " +
1724 msg + "</li>" + c.innerHTML;
1728 function getInitParam(key) {
1729 return init_params[key];
1732 function storeInitParam(key, value) {
1733 debug("<b>storeInitParam is OBSOLETE: " + key + " => " + value + "</b>");
1734 init_params[key] = value;
1737 function fatalError(code, message) {
1741 window.location.href = "tt-rss.php";
1742 } else if (code == 5) {
1743 window.location.href = "update.php";
1745 var fe = document.getElementById("fatal_error");
1746 var fc = document.getElementById("fatal_error_msg");
1748 if (message == "") message = "Unknown error";
1750 fc.innerHTML = "<img src='images/sign_excl.png'> " + message + " (Code " + code + ")";
1752 fe.style.display = "block";
1756 exception_error("fatalError", e);
1760 function getFeedName(id, is_cat) {
1761 var d = getFeedsContext().document;
1766 e = d.getElementById("FCATN-" + id);
1768 e = d.getElementById("FEEDN-" + id);
1771 return e.innerHTML.stripTags();
1777 function viewContentUrl(url) {
1778 getContentContext().location = url;
1781 function filterDlgCheckAction(sender) {
1785 var action = sender[sender.selectedIndex].value;
1787 var form = document.forms["filter_add_form"];
1790 form = document.forms["filter_edit_form"];
1794 debug("filterDlgCheckAction: can't find form!");
1798 var action_param = form.action_param;
1800 if (!action_param) {
1801 debug("filterDlgCheckAction: can't find action param!");
1805 // if selected action supports parameters, enable params field
1807 action_param.disabled = false;
1809 action_param.disabled = true;
1813 exception_error(e, "filterDlgCheckAction");
1818 function explainError(code) {
1819 return displayDlg("explainError", code);
1822 function logoutUser() {
1824 if (xmlhttp_ready(xmlhttp_rpc)) {
1826 notify_progress("Logging out, please wait...", true);
1828 xmlhttp_rpc.open("GET", "backend.php?op=rpc&subop=logout", true);
1829 xmlhttp_rpc.onreadystatechange=logout_callback;
1830 xmlhttp_rpc.send(null);
1832 printLockingError();
1835 exception_error("logoutUser", e);
1839 // this only searches loaded headlines list, not in CDM
1840 function getRelativePostIds(id) {
1842 debug("getRelativePostIds: " + id);
1844 var ids = new Array();
1845 var container = document.getElementById("headlinesList");
1848 var rows = container.rows;
1850 for (var i = 0; i < rows.length; i++) {
1851 var r_id = rows[i].id.replace("RROW-", "");
1854 if (i > 0) ids.push(rows[i-1].id.replace("RROW-", ""));
1855 if (i > 1) ids.push(rows[i-2].id.replace("RROW-", ""));
1856 if (i > 2) ids.push(rows[i-3].id.replace("RROW-", ""));
1858 if (i < rows.length-1) ids.push(rows[i+1].id.replace("RROW-", ""));
1859 if (i < rows.length-2) ids.push(rows[i+2].id.replace("RROW-", ""));
1860 if (i < rows.length-3) ids.push(rows[i+3].id.replace("RROW-", ""));
1870 function openArticleInNewWindow(id) {
1873 if (!xmlhttp_ready(xmlhttp_rpc)) {
1874 printLockingError();
1878 debug("openArticleInNewWindow: " + id);
1880 var query = "backend.php?op=rpc&subop=getArticleLink&id=" + id;
1884 xmlhttp_rpc.open("GET", query, true);
1885 xmlhttp_rpc.onreadystatechange=open_article_callback;
1886 xmlhttp_rpc.send(null);
1889 exception_error("openArticleInNewWindow", e);