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(transport) {
70 if (transport.responseXML) {
71 var link = transport.responseXML.getElementsByTagName("link")[0];
72 var id = transport.responseXML.getElementsByTagName("id")[0];
75 window.open(link.firstChild.nodeValue, "_blank");
78 id = id.firstChild.nodeValue;
79 if (!document.getElementById("headlinesList")) {
80 window.setTimeout("toggleUnread(" + id + ", 0)", 100);
87 exception_error("open_article_callback", e);
91 function param_escape(arg) {
92 if (typeof encodeURIComponent != 'undefined')
93 return encodeURIComponent(arg);
98 function param_unescape(arg) {
99 if (typeof decodeURIComponent != 'undefined')
100 return decodeURIComponent(arg);
102 return unescape(arg);
105 function delay(gap) {
107 then=new Date().getTime();
109 while((now-then)<gap) {
110 now=new Date().getTime();
114 var notify_hide_timerid = false;
116 function hide_notify() {
117 var n = document.getElementById("notify");
119 n.style.display = "none";
123 function notify_real(msg, no_hide, n_type) {
125 var n = document.getElementById("notify");
126 var nb = document.getElementById("notify_body");
128 if (!n || !nb) return;
130 if (notify_hide_timerid) {
131 window.clearTimeout(notify_hide_timerid);
135 if (n.style.display == "block") {
136 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
140 n.style.display = "block";
152 if (typeof __ != 'undefined') {
157 n.className = "notify";
158 } else if (n_type == 2) {
159 n.className = "notifyProgress";
160 msg = "<img src='images/indicator_white.gif'> " + msg;
161 } else if (n_type == 3) {
162 n.className = "notifyError";
163 msg = "<img src='images/sign_excl.gif'> " + msg;
164 } else if (n_type == 4) {
165 n.className = "notifyInfo";
166 msg = "<img src='images/sign_info.gif'> " + msg;
169 // msg = "<img src='images/live_com_loading.gif'> " + msg;
174 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
178 function notify(msg, no_hide) {
179 notify_real(msg, no_hide, 1);
182 function notify_progress(msg, no_hide) {
183 notify_real(msg, no_hide, 2);
186 function notify_error(msg, no_hide) {
187 notify_real(msg, no_hide, 3);
191 function notify_info(msg, no_hide) {
192 notify_real(msg, no_hide, 4);
195 function printLockingError() {
196 notify_info("Please wait until operation finishes.");
199 function hotkey_handler(e) {
204 var shift_key = false;
207 shift_key = e.shiftKey;
212 if (!hotkeys_enabled) return;
215 keycode = window.event.keyCode;
220 if (keycode == 82) { // r
221 return scheduleFeedUpdate(true);
224 if (keycode == 83) { // s
225 return displayDlg("search", getActiveFeedId());
228 if (keycode == 85) { // u
229 if (getActiveFeedId()) {
230 return viewfeed(getActiveFeedId(), "ForceUpdate");
234 if (keycode == 65) { // a
235 return toggleDispRead();
238 var feedlist = document.getElementById('feedList');
240 if (keycode == 74) { // j
241 var feed = getActiveFeedId();
242 var new_feed = getRelativeFeedId(feedlist, feed, 'prev');
243 if (new_feed) viewfeed(new_feed, '');
246 if (keycode == 75) { // k
247 var feed = getActiveFeedId();
248 var new_feed = getRelativeFeedId(feedlist, feed, 'next');
249 if (new_feed) viewfeed(new_feed, '');
252 if (keycode == 78 || keycode == 40) { // n, down
253 if (typeof moveToPost != 'undefined') {
254 return moveToPost('next');
258 if (keycode == 80 || keycode == 38) { // p, up
259 if (typeof moveToPost != 'undefined') {
260 return moveToPost('prev');
264 if (keycode == 68 && shift_key) { // d
265 if (!debug_mode_enabled) {
266 document.getElementById('debug_output').style.display = 'block';
267 debug('debug mode activated');
269 document.getElementById('debug_output').style.display = 'none';
272 debug_mode_enabled = !debug_mode_enabled;
275 if (keycode == 190 && shift_key) { // >
279 if (keycode == 188 && shift_key) { // <
283 if (keycode == 191 && shift_key) { // ?
287 if (keycode == 69 && shift_key) { // e
288 return editFeedDlg(getActiveFeedId());
291 if (keycode == 70 && shift_key) { // f
292 if (getActiveFeedId()) {
293 return catchupCurrentFeed();
297 if (keycode == 80 && shift_key) { // p
298 if (getActiveFeedId()) {
299 return catchupPage();
303 if (keycode == 86) { // v
304 if (getActiveArticleId()) {
305 openArticleInNewWindow(getActiveArticleId());
309 if (keycode == 84) { // t
311 var id = getActiveArticleId();
315 var cb = document.getElementById("RCHK-" + id);
318 cb.checked = !cb.checked;
319 toggleSelectRowById(cb, "RROW-" + id);
324 if (keycode == 67) { // c
325 var id = getActiveArticleId();
332 if (typeof localHotkeyHandler != 'undefined') {
334 return localHotkeyHandler(e);
336 exception_error("hotkey_handler, local:", e);
340 debug("KP=" + keycode);
342 exception_error("hotkey_handler", e);
346 function cleanSelectedList(element) {
347 var content = document.getElementById(element);
349 if (!document.getElementById("feedCatHolder")) {
350 for (i = 0; i < content.childNodes.length; i++) {
351 var child = content.childNodes[i];
353 child.className = child.className.replace("Selected", "");
359 for (i = 0; i < content.childNodes.length; i++) {
360 var child = content.childNodes[i];
361 if (child.id == "feedCatHolder") {
363 var fcat = child.lastChild;
364 for (j = 0; j < fcat.childNodes.length; j++) {
365 var feed = fcat.childNodes[j];
366 feed.className = feed.className.replace("Selected", "");
374 function cleanSelected(element) {
375 var content = document.getElementById(element);
377 for (i = 0; i < content.rows.length; i++) {
378 content.rows[i].className = content.rows[i].className.replace("Selected", "");
382 function getVisibleUnreadHeadlines() {
383 var content = document.getElementById("headlinesList");
385 var rows = new Array();
387 for (i = 0; i < content.rows.length; i++) {
388 var row_id = content.rows[i].id.replace("RROW-", "");
389 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
396 function getVisibleHeadlineIds() {
398 var content = document.getElementById("headlinesList");
400 var rows = new Array();
402 for (i = 0; i < content.rows.length; i++) {
403 var row_id = content.rows[i].id.replace("RROW-", "");
404 if (row_id.length > 0) {
411 function getFirstVisibleHeadlineId() {
412 var rows = getVisibleHeadlineIds();
416 function getLastVisibleHeadlineId() {
417 var rows = getVisibleHeadlineIds();
418 return rows[rows.length-1];
421 function markHeadline(id) {
422 var row = document.getElementById("RROW-" + id);
424 var is_active = false;
426 if (row.className.match("Active")) {
429 row.className = row.className.replace("Selected", "");
430 row.className = row.className.replace("Active", "");
431 row.className = row.className.replace("Insensitive", "");
434 row.className = row.className = "Active";
437 var check = document.getElementById("RCHK-" + id);
440 check.checked = true;
443 row.className = row.className + "Selected";
448 function getFeedIds() {
449 var content = document.getElementById("feedsList");
451 var rows = new Array();
453 for (i = 0; i < content.rows.length; i++) {
454 var id = content.rows[i].id.replace("FEEDR-", "");
463 function setCookie(name, value, lifetime, path, domain, secure) {
469 d.setTime(d.getTime() + (lifetime * 1000));
472 debug("setCookie: " + name + " => " + value + ": " + d);
474 int_setCookie(name, value, d, path, domain, secure);
478 function int_setCookie(name, value, expires, path, domain, secure) {
479 document.cookie= name + "=" + escape(value) +
480 ((expires) ? "; expires=" + expires.toGMTString() : "") +
481 ((path) ? "; path=" + path : "") +
482 ((domain) ? "; domain=" + domain : "") +
483 ((secure) ? "; secure" : "");
486 function delCookie(name, path, domain) {
487 if (getCookie(name)) {
488 document.cookie = name + "=" +
489 ((path) ? ";path=" + path : "") +
490 ((domain) ? ";domain=" + domain : "" ) +
491 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
496 function getCookie(name) {
498 var dc = document.cookie;
499 var prefix = name + "=";
500 var begin = dc.indexOf("; " + prefix);
502 begin = dc.indexOf(prefix);
503 if (begin != 0) return null;
508 var end = document.cookie.indexOf(";", begin);
512 return unescape(dc.substring(begin + prefix.length, end));
515 function disableContainerChildren(id, disable, doc) {
517 if (!doc) doc = document;
519 var container = doc.getElementById(id);
522 //alert("disableContainerChildren: element " + id + " not found");
526 for (var i = 0; i < container.childNodes.length; i++) {
527 var child = container.childNodes[i];
530 child.disabled = disable;
536 if (child.className && child.className.match("button")) {
537 child.className = "disabledButton";
540 if (child.className && child.className.match("disabledButton")) {
541 child.className = "button";
548 function gotoPreferences() {
549 document.location.href = "prefs.php";
552 function gotoMain() {
553 document.location.href = "tt-rss.php";
556 function gotoExportOpml() {
557 document.location.href = "opml.php?op=Export";
560 function getActiveFeedId() {
561 // return getCookie("ttrss_vf_actfeed");
563 debug("gAFID: " + active_feed_id);
564 return active_feed_id;
566 exception_error("getActiveFeedId", e);
570 function activeFeedIsCat() {
571 return active_feed_is_cat;
574 function setActiveFeedId(id) {
575 // return setCookie("ttrss_vf_actfeed", id);
577 debug("sAFID(" + id + ")");
580 exception_error("setActiveFeedId", e);
584 function parse_counters(reply, scheduled_call) {
589 var elems = reply.getElementsByTagName("counter");
591 for (var l = 0; l < elems.length; l++) {
593 var id = elems[l].getAttribute("id");
594 var t = elems[l].getAttribute("type");
595 var ctr = elems[l].getAttribute("counter");
596 var error = elems[l].getAttribute("error");
597 var has_img = elems[l].getAttribute("hi");
598 var updated = elems[l].getAttribute("updated");
599 var title = elems[l].getAttribute("title");
601 if (id == "global-unread") {
607 if (id == "subscribed-feeds") {
612 if (t == "category") {
613 var catctr = document.getElementById("FCATCTR-" + id);
615 catctr.innerHTML = "(" + ctr + ")";
617 catctr.className = "catCtrHasUnread";
619 catctr.className = "catCtrNoUnread";
625 var feedctr = document.getElementById("FEEDCTR-" + id);
626 var feedu = document.getElementById("FEEDU-" + id);
627 var feedr = document.getElementById("FEEDR-" + id);
628 var feed_img = document.getElementById("FIMG-" + id);
629 var feedlink = document.getElementById("FEEDL-" + id);
630 var feedupd = document.getElementById("FLUPD-" + id);
632 if (updated && feedlink) {
634 feedlink.title = "Error: " + error + " (" + updated + ")";
636 feedlink.title = "Updated: " + updated;
640 if (updated && feedupd) {
642 feedupd.innerHTML = updated + " (Error)";
644 feedupd.innerHTML = updated;
648 if (has_img && feed_img && !is_msie()) {
649 if (!feed_img.src.match(id + ".ico")) {
650 feed_img.src = getInitParam("icons_location") + "/" + id + ".ico";
654 if (feedlink && title) {
655 feedlink.innerHTML = title;
658 if (feedctr && feedu && feedr) {
660 if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
664 var row_needs_hl = (ctr > 0 && ctr > parseInt(feedu.innerHTML));
666 feedu.innerHTML = ctr;
669 feedr.className = feedr.className.replace("feed", "error");
671 feedr.className = feedr.className.replace("error", "feed");
675 feedctr.className = "odd";
676 if (!feedr.className.match("Unread")) {
677 var is_selected = feedr.className.match("Selected");
679 feedr.className = feedr.className.replace("Selected", "");
680 feedr.className = feedr.className.replace("Unread", "");
682 feedr.className = feedr.className + "Unread";
685 feedr.className = feedr.className + "Selected";
691 new Effect.Highlight(feedr, {duration: 1, startcolor: "#fff7d5",
692 queue: { position:'end', scope: 'EFQ-' + id, limit: 1 } } );
695 feedctr.className = "invisible";
696 feedr.className = feedr.className.replace("Unread", "");
701 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
703 var feeds_stored = number_of_feeds;
705 debug("Feed counters, C: " + feeds_found + ", S:" + feeds_stored);
707 if (feeds_stored != feeds_found) {
708 number_of_feeds = feeds_found;
710 if (feeds_stored != 0 && feeds_found != 0) {
711 debug("Subscribed feed number changed, refreshing feedlist");
712 setTimeout('updateFeedList(false, false)', 50);
717 exception_error("parse_counters", e);
721 function parse_counters_reply(transport, scheduled_call) {
723 if (!transport.responseXML) {
724 notify_error("Backend did not return valid XML", true);
728 var reply = transport.responseXML.firstChild;
731 notify_error("Backend did not return expected XML object", true);
736 var error_code = false;
737 var error_msg = false;
739 if (reply.firstChild) {
740 error_code = reply.firstChild.getAttribute("error-code");
741 error_msg = reply.firstChild.getAttribute("error-msg");
745 error_code = reply.getAttribute("error-code");
746 error_msg = reply.getAttribute("error-msg");
749 if (error_code && error_code != 0) {
750 debug("refetch_callback: got error code " + error_code);
751 return fatalError(error_code, error_msg);
754 var counters = reply.getElementsByTagName("counters")[0];
756 parse_counters(counters, scheduled_call);
758 var runtime_info = reply.getElementsByTagName("runtime-info")[0];
760 parse_runtime_info(runtime_info);
762 if (getInitParam("feeds_sort_by_unread") == 1) {
766 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
770 function all_counters_callback2(transport) {
772 debug("<b>all_counters_callback2 IN: " + transport + "</b>");
773 parse_counters_reply(transport);
774 debug("<b>all_counters_callback2 OUT: " + transport + "</b>");
777 exception_error("all_counters_callback2", e);
781 function get_feed_unread(id) {
783 return parseInt(document.getElementById("FEEDU-" + id).innerHTML);
785 exception_error("get_feed_unread", e, true);
790 function get_feed_entry_unread(doc, elem) {
792 var id = elem.id.replace("FEEDR-", "");
799 return parseInt(doc.getElementById("FEEDU-" + id).innerHTML);
805 function resort_category(doc, node) {
806 debug("resort_category: " + node);
808 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
809 for (i = 0; i < node.childNodes.length; i++) {
810 if (node.childNodes[i].nodeName != "LI") { continue; }
812 if (get_feed_entry_unread(doc, node.childNodes[i]) < 0) {
816 for (j = i+1; j < node.childNodes.length; j++) {
817 if (node.childNodes[j].nodeName != "LI") { continue; }
819 var tmp_val = get_feed_entry_unread(doc, node.childNodes[i]);
820 var cur_val = get_feed_entry_unread(doc, node.childNodes[j]);
822 if (cur_val > tmp_val) {
823 tempnode_i = node.childNodes[i].cloneNode(true);
824 tempnode_j = node.childNodes[j].cloneNode(true);
825 node.replaceChild(tempnode_i, node.childNodes[j]);
826 node.replaceChild(tempnode_j, node.childNodes[i]);
835 function resort_feedlist() {
836 debug("resort_feedlist");
840 if (fd.getElementById("feedCatHolder")) {
842 var feeds = fd.getElementById("feedList");
843 var child = feeds.firstChild;
847 if (child.id == "feedCatHolder") {
848 resort_category(fd, child.firstChild);
851 child = child.nextSibling;
855 resort_category(fd, fd.getElementById("feedList"));
859 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
860 * * @author Sundar Dorai-Raj
861 * * Email: sdoraira@vt.edu
862 * * This program is free software; you can redistribute it and/or
863 * * modify it under the terms of the GNU General Public License
864 * * as published by the Free Software Foundation; either version 2
865 * * of the License, or (at your option) any later version,
866 * * provided that any use properly credits the author.
867 * * This program is distributed in the hope that it will be useful,
868 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
869 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
870 * * GNU General Public License for more details at http://www.gnu.org * * */
872 var numbers=".0123456789";
873 function isNumeric(x) {
874 // is x a String or a character?
876 // remove negative sign
878 for(j=0;j<x.length;j++) {
879 // call isNumeric recursively for each character
880 number=isNumeric(x.substring(j,j+1));
881 if(!number) return number;
886 // if x is number return true
887 if(numbers.indexOf(x)>=0) return true;
893 function hideOrShowFeeds(doc, hide) {
895 debug("hideOrShowFeeds: " + doc + ", " + hide);
899 var list = fd.getElementById("feedList");
901 if (fd.getElementById("feedCatHolder")) {
903 var feeds = fd.getElementById("feedList");
904 var child = feeds.firstChild;
908 if (child.id == "feedCatHolder") {
909 hideOrShowFeedsCategory(fd, child.firstChild, hide, child.previousSibling);
912 child = child.nextSibling;
916 hideOrShowFeedsCategory(fd, fd.getElementById("feedList"), hide);
920 function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
922 // debug("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
927 debug("hideOrShowFeeds: passed node is null, aborting");
931 // debug("cat: " + node.id);
933 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
934 for (i = 0; i < node.childNodes.length; i++) {
935 if (node.childNodes[i].nodeName != "LI") { continue; }
937 if (node.childNodes[i].style != undefined) {
939 var has_unread = (node.childNodes[i].className != "feed" &&
940 node.childNodes[i].className != "label" &&
941 !(!getInitParam("hide_read_shows_special") &&
942 node.childNodes[i].className == "virt") &&
943 node.childNodes[i].className != "error" &&
944 node.childNodes[i].className != "tag");
946 // debug(node.childNodes[i].id + " --> " + has_unread);
948 if (hide && !has_unread) {
949 //node.childNodes[i].style.display = "none";
950 var id = node.childNodes[i].id;
951 Effect.Fade(node.childNodes[i], {duration : 0.3,
952 queue: { position: 'end', scope: 'FFADE-' + id, limit: 1 }});
956 node.childNodes[i].style.display = "list-item";
957 //Effect.Appear(node.childNodes[i], {duration : 0.3});
961 node.childNodes[i].style.display = "list-item";
963 //Effect.Appear(node.childNodes[i], {duration : 0.3});
964 //Effect.Highlight(node.childNodes[i]);
970 // debug("end cat: " + node.id + " unread " + cat_unread);
972 if (cat_unread == 0) {
973 if (cat_node.style == undefined) {
974 debug("ERROR: supplied cat_node " + cat_node +
975 " has no styles. WTF?");
979 //cat_node.style.display = "none";
980 Effect.Fade(cat_node, {duration : 0.3,
981 queue: { position: 'end', scope: 'CFADE-' + node.id, limit: 1 }});
983 cat_node.style.display = "list-item";
987 cat_node.style.display = "list-item";
993 // debug("unread for category: " + cat_unread);
996 function selectTableRow(r, do_select) {
997 r.className = r.className.replace("Selected", "");
1000 r.className = r.className + "Selected";
1004 function selectTableRowById(elem_id, check_id, do_select) {
1008 var row = document.getElementById(elem_id);
1011 selectTableRow(row, do_select);
1014 var check = document.getElementById(check_id);
1017 check.checked = do_select;
1020 exception_error("selectTableRowById", e);
1024 function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
1025 classcheck, reset_others) {
1027 var content = document.getElementById(content_id);
1030 alert("[selectTableRows] Element " + content_id + " not found.");
1034 for (i = 0; i < content.rows.length; i++) {
1035 if (!classcheck || content.rows[i].className.match(classcheck)) {
1037 if (content.rows[i].id.match(prefix)) {
1038 selectTableRow(content.rows[i], do_select);
1040 var row_id = content.rows[i].id.replace(prefix, "");
1041 var check = document.getElementById(check_prefix + row_id);
1044 check.checked = do_select;
1046 } else if (reset_others) {
1047 selectTableRow(content.rows[i], false);
1049 var row_id = content.rows[i].id.replace(prefix, "");
1050 var check = document.getElementById(check_prefix + row_id);
1053 check.checked = false;
1057 } else if (reset_others) {
1058 selectTableRow(content.rows[i], false);
1060 var row_id = content.rows[i].id.replace(prefix, "");
1061 var check = document.getElementById(check_prefix + row_id);
1064 check.checked = false;
1071 function getSelectedTableRowIds(content_id, prefix) {
1073 var content = document.getElementById(content_id);
1076 alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
1080 var sel_rows = new Array();
1082 for (i = 0; i < content.rows.length; i++) {
1083 if (content.rows[i].id.match(prefix) &&
1084 content.rows[i].className.match("Selected")) {
1086 var row_id = content.rows[i].id.replace(prefix + "-", "");
1087 sel_rows.push(row_id);
1095 function toggleSelectRowById(sender, id) {
1096 var row = document.getElementById(id);
1098 if (sender.checked) {
1099 if (!row.className.match("Selected")) {
1100 row.className = row.className + "Selected";
1103 if (row.className.match("Selected")) {
1104 row.className = row.className.replace("Selected", "");
1109 function toggleSelectListRow(sender) {
1110 var parent_row = sender.parentNode;
1112 if (sender.checked) {
1113 if (!parent_row.className.match("Selected")) {
1114 parent_row.className = parent_row.className + "Selected";
1117 if (parent_row.className.match("Selected")) {
1118 parent_row.className = parent_row.className.replace("Selected", "");
1123 function tSR(sender) {
1124 return toggleSelectRow(sender);
1127 function toggleSelectRow(sender) {
1128 var parent_row = sender.parentNode.parentNode;
1130 if (sender.checked) {
1131 if (!parent_row.className.match("Selected")) {
1132 parent_row.className = parent_row.className + "Selected";
1135 if (parent_row.className.match("Selected")) {
1136 parent_row.className = parent_row.className.replace("Selected", "");
1141 function getRelativeFeedId(list, id, direction, unread_only) {
1142 var rows = list.getElementsByTagName("LI");
1143 var feeds = new Array();
1145 for (var i = 0; i < rows.length; i++) {
1146 if (rows[i].id.match("FEEDR-")) {
1148 if (rows[i].id == "FEEDR-" + id || (Element.visible(rows[i]) && Element.visible(rows[i].parentNode))) {
1151 (rows[i].className.match("Unread") || rows[i].id == "FEEDR-" + id)) {
1152 feeds.push(rows[i].id.replace("FEEDR-", ""));
1159 if (direction == "next") {
1160 return feeds.shift();
1165 if (direction == "next") {
1166 var idx = feeds.indexOf(id);
1167 if (idx != -1 && idx < feeds.length) {
1168 return feeds[idx+1];
1170 return getRelativeFeedId(list, false, direction, unread_only);
1173 var idx = feeds.indexOf(id);
1175 return feeds[idx-1];
1177 return getRelativeFeedId(list, false, direction, unread_only);
1184 function showBlockElement(id, h_id) {
1185 var elem = document.getElementById(id);
1188 elem.style.display = "block";
1191 elem = document.getElementById(h_id);
1193 elem.style.display = "none";
1197 alert("[showBlockElement] can't find element with id " + id);
1201 function appearBlockElement_afh(effect) {
1205 function checkboxToggleElement(elem, id) {
1207 Effect.SlideDown(id, {duration : 0.5});
1209 Effect.SlideUp(id, {duration : 0.5});
1213 function appearBlockElement(id, h_id) {
1219 Effect.SlideDown(id, {duration : 1.0, afterFinish: appearBlockElement_afh});
1221 exception_error("appearBlockElement", e);
1226 function hideParentElement(e) {
1227 e.parentNode.style.display = "none";
1230 function dropboxSelect(e, v) {
1231 for (i = 0; i < e.length; i++) {
1232 if (e[i].value == v) {
1233 e.selectedIndex = i;
1239 // originally stolen from http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z
1240 // bugfixed just a little bit :-)
1241 function getURLParam(strParamName){
1243 var strHref = window.location.href;
1245 if (strHref.indexOf("#") == strHref.length-1) {
1246 strHref = strHref.substring(0, strHref.length-1);
1249 if ( strHref.indexOf("?") > -1 ){
1250 var strQueryString = strHref.substr(strHref.indexOf("?"));
1251 var aQueryString = strQueryString.split("&");
1252 for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
1253 if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
1254 var aParam = aQueryString[iParam].split("=");
1255 strReturn = aParam[1];
1263 function leading_zero(p) {
1265 if (s.length == 1) s = "0" + s;
1269 function closeInfoBox(cleanup) {
1271 if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
1272 var overlay = document.getElementById("dialog_overlay");
1274 overlay.style.display = "none";
1278 var box = document.getElementById('infoBox');
1279 var shadow = document.getElementById('infoBoxShadow');
1282 shadow.style.display = "none";
1284 box.style.display = "none";
1287 if (cleanup) box.innerHTML = " ";
1295 function displayDlg(id, param) {
1297 notify_progress("Loading, please wait...", true);
1301 var query = "backend.php?op=dlg&id=" +
1302 param_escape(id) + "¶m=" + param_escape(param);
1304 new Ajax.Request(query, {
1305 onComplete: function (transport) {
1306 infobox_callback2(transport);
1312 function infobox_submit_callback2(transport) {
1316 // called from prefs, reload tab
1318 selectTab(active_tab, false);
1322 if (transport.responseText) {
1323 notify_info(transport.responseText);
1327 function infobox_callback2(transport) {
1330 debug("infobox_callback2");
1332 if (!is_msie() && !getInitParam("infobox_disable_overlay")) {
1333 var overlay = document.getElementById("dialog_overlay");
1335 overlay.style.display = "block";
1339 var box = document.getElementById('infoBox');
1340 var shadow = document.getElementById('infoBoxShadow');
1343 /* if (!is_safari()) {
1344 new Draggable(shadow);
1347 box.innerHTML=transport.responseText;
1349 shadow.style.display = "block";
1351 box.style.display = "block";
1355 /* FIXME this needs to be moved out somewhere */
1357 if (document.getElementById("tags_choices")) {
1358 new Ajax.Autocompleter('tags_str', 'tags_choices',
1359 "backend.php?op=rpc&subop=completeTags",
1360 { tokens: ',', paramName: "search" });
1365 exception_error("infobox_callback2", e);
1369 function createFilter() {
1371 var form = document.forms['filter_add_form'];
1372 var reg_exp = form.reg_exp.value;
1374 if (reg_exp == "") {
1375 alert(__("Can't add filter: nothing to match on."));
1379 var query = Form.serialize("filter_add_form");
1381 new Ajax.Request("backend.php?" + query, {
1382 onComplete: function (transport) {
1383 infobox_submit_callback2(transport);
1389 function toggleSubmitNotEmpty(e, submit_id) {
1391 document.getElementById(submit_id).disabled = (e.value == "")
1393 exception_error("toggleSubmitNotEmpty", e);
1397 function isValidURL(s) {
1398 return s.match("http://") != null || s.match("https://") != null || s.match("feed://") != null;
1401 function subscribeToFeed() {
1403 var form = document.forms['feed_add_form'];
1404 var feed_url = form.feed_url.value;
1406 if (feed_url == "") {
1407 alert(__("Can't subscribe: no feed URL given."));
1411 notify_progress(__("Subscribing to feed..."), true);
1415 var feeds_doc = document;
1417 // feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
1419 var query = Form.serialize("feed_add_form");
1421 debug("subscribe q: " + query);
1423 new Ajax.Request("backend.php", {
1425 onComplete: function(transport) {
1426 dlg_frefresh_callback(transport);
1432 function filterCR(e, f)
1437 key = window.event.keyCode; //IE
1439 key = e.which; //firefox
1442 if (typeof f != 'undefined') {
1453 function getMainContext() {
1457 function getFeedsContext() {
1461 function getContentContext() {
1465 function getHeadlinesContext() {
1469 var debug_last_class = "even";
1471 function debug(msg) {
1473 if (debug_last_class == "even") {
1474 debug_last_class = "odd";
1476 debug_last_class = "even";
1479 var c = document.getElementById('debug_output');
1480 if (c && c.style.display == "block") {
1481 while (c.lastChild != 'undefined' && c.childNodes.length > 100) {
1482 c.removeChild(c.lastChild);
1486 var ts = leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
1487 ":" + leading_zero(d.getSeconds());
1488 c.innerHTML = "<li class=\"" + debug_last_class + "\"><span class=\"debugTS\">[" + ts + "]</span> " +
1489 msg + "</li>" + c.innerHTML;
1493 function getInitParam(key) {
1494 return init_params[key];
1497 function storeInitParam(key, value) {
1498 debug("<b>storeInitParam is OBSOLETE: " + key + " => " + value + "</b>");
1499 init_params[key] = value;
1502 function fatalError(code, message) {
1506 window.location.href = "tt-rss.php";
1507 } else if (code == 5) {
1508 window.location.href = "update.php";
1510 var fe = document.getElementById("fatal_error");
1511 var fc = document.getElementById("fatal_error_msg");
1513 if (message == "") message = "Unknown error";
1515 fc.innerHTML = "<img src='images/sign_excl.gif'> " + message + " (Code " + code + ")";
1517 fe.style.display = "block";
1521 exception_error("fatalError", e);
1525 function getFeedName(id, is_cat) {
1526 var d = getFeedsContext().document;
1531 e = d.getElementById("FCATN-" + id);
1533 e = d.getElementById("FEEDN-" + id);
1536 return e.innerHTML.stripTags();
1542 function viewContentUrl(url) {
1543 getContentContext().location = url;
1546 function filterDlgCheckAction(sender) {
1550 var action = sender[sender.selectedIndex].value;
1552 var form = document.forms["filter_add_form"];
1555 form = document.forms["filter_edit_form"];
1559 debug("filterDlgCheckAction: can't find form!");
1563 var action_param = form.action_param;
1565 if (!action_param) {
1566 debug("filterDlgCheckAction: can't find action param!");
1570 // if selected action supports parameters, enable params field
1572 action_param.disabled = false;
1574 action_param.disabled = true;
1578 exception_error(e, "filterDlgCheckAction");
1583 function explainError(code) {
1584 return displayDlg("explainError", code);
1587 // this only searches loaded headlines list, not in CDM
1588 function getRelativePostIds(id) {
1590 debug("getRelativePostIds: " + id);
1592 var ids = new Array();
1593 var container = document.getElementById("headlinesList");
1596 var rows = container.rows;
1598 for (var i = 0; i < rows.length; i++) {
1599 var r_id = rows[i].id.replace("RROW-", "");
1602 if (i > 0) ids.push(rows[i-1].id.replace("RROW-", ""));
1603 if (i > 1) ids.push(rows[i-2].id.replace("RROW-", ""));
1604 if (i > 2) ids.push(rows[i-3].id.replace("RROW-", ""));
1606 if (i < rows.length-1) ids.push(rows[i+1].id.replace("RROW-", ""));
1607 if (i < rows.length-2) ids.push(rows[i+2].id.replace("RROW-", ""));
1608 if (i < rows.length-3) ids.push(rows[i+3].id.replace("RROW-", ""));
1618 function openArticleInNewWindow(id) {
1620 debug("openArticleInNewWindow: " + id);
1622 var query = "backend.php?op=rpc&subop=getArticleLink&id=" + id;
1626 new Ajax.Request(query, {
1627 onComplete: function(transport) {
1628 open_article_callback(transport);
1633 exception_error("openArticleInNewWindow", e);
1637 /* http://textsnippets.com/posts/show/835 */
1639 Position.GetWindowSize = function(w) {
1641 var width = w.innerWidth || (w.document.documentElement.clientWidth || w.document.body.clientWidth);
1642 var height = w.innerHeight || (w.document.documentElement.clientHeight || w.document.body.clientHeight);
1643 return [width, height]
1646 /* http://textsnippets.com/posts/show/836 */
1648 Position.Center = function(element, parent) {
1650 var d = Element.getDimensions(element);
1655 var ws = Position.GetWindowSize();
1659 pw = parent.offsetWidth;
1660 ph = parent.offsetHeight;
1662 element.style.top = (ph/2) - (h/2) - Position.deltaY + "px";
1663 element.style.left = (pw/2) - (w/2) - Position.deltaX + "px";
1667 function labeltest_callback(transport) {
1669 var container = document.getElementById('label_test_result');
1671 container.innerHTML = transport.responseText;
1672 if (!Element.visible(container)) {
1673 Effect.SlideDown(container, { duration : 0.5 });
1678 exception_error("labeltest_callback", e);
1682 function labelTest() {
1685 var container = document.getElementById('label_test_result');
1687 var form = document.forms['label_edit_form'];
1689 var sql_exp = form.sql_exp.value;
1690 var description = form.description.value;
1692 notify_progress("Loading, please wait...");
1694 var query = "backend.php?op=pref-labels&subop=test&expr=" +
1695 param_escape(sql_exp) + "&descr=" + param_escape(description);
1697 new Ajax.Request(query, {
1698 onComplete: function (transport) {
1699 labeltest_callback(transport);
1705 exception_error("labelTest", e);
1709 function isCdmMode() {
1710 return !document.getElementById("headlinesList");
1713 function getSelectedArticleIds2() {
1714 var rows = new Array();
1715 var cdm_mode = isCdmMode();
1718 rows = cdmGetSelectedArticles();
1720 rows = getSelectedTableRowIds("headlinesList", "RROW", "RCHK");
1723 var ids = new Array();
1725 for (var i = 0; i < rows.length; i++) {
1726 var chk = document.getElementById("RCHK-" + rows[i]);
1727 if (chk && chk.checked) {
1735 function displayHelpInfobox(topic_id) {
1737 var url = "backend.php?op=help&tid=" + param_escape(topic_id);
1739 var w = window.open(url, "ttrss_help",
1740 "status=0,toolbar=0,location=0,width=450,height=500,scrollbars=1,menubar=0");