1 var hotkeys_enabled = true;
3 var xmlhttp_rpc = Ajax.getTransport();
5 function browser_has_opacity() {
6 return navigator.userAgent.match("Gecko") != null ||
7 navigator.userAgent.match("Opera") != null;
10 function exception_error(location, e, silent) {
14 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
16 msg = "Exception: " + e.name + ", " + e.message +
17 "\nFunction: " + location + "()" +
18 "\nLocation: " + base_fname + ":" + e.lineNumber;
21 msg = "Exception: " + e + "\nFunction: " + location + "()";
24 debug("<b>EXCEPTION: " + msg + "</b>");
31 function disableHotkeys() {
32 hotkeys_enabled = false;
35 function enableHotkeys() {
36 hotkeys_enabled = true;
39 function xmlhttp_ready(obj) {
40 return obj.readyState == 4 || obj.readyState == 0 || !obj.readyState;
43 function notify_callback() {
44 var container = document.getElementById('notify');
45 if (xmlhttp.readyState == 4) {
46 container.innerHTML=xmlhttp.responseText;
50 function rpc_notify_callback() {
51 var container = document.getElementById('notify');
52 if (xmlhttp_rpc.readyState == 4) {
53 container.innerHTML=xmlhttp_rpc.responseText;
57 function param_escape(arg) {
58 if (typeof encodeURIComponent != 'undefined')
59 return encodeURIComponent(arg);
64 function param_unescape(arg) {
65 if (typeof decodeURIComponent != 'undefined')
66 return decodeURIComponent(arg);
73 then=new Date().getTime();
75 while((now-then)<gap) {
76 now=new Date().getTime();
80 var notify_hide_timerid = false;
81 var notify_last_doc = false;
83 var notify_effect = false;
85 function hide_notify() {
86 if (notify_last_doc) {
87 var n = notify_last_doc.getElementById("notify");
88 if (browser_has_opacity()) {
89 if (notify_opacity >= 0) {
90 notify_opacity = notify_opacity - 0.1;
91 n.style.opacity = notify_opacity;
92 notify_hide_timerid = window.setTimeout("hide_notify()", 20);
94 n.style.display = "none";
98 n.style.display = "none";
103 function notify_real(msg, doc, no_hide, is_err) {
105 var n = doc.getElementById("notify");
106 var nb = doc.getElementById("notify_body");
108 if (!n || !nb) return;
110 if (notify_hide_timerid) {
111 window.clearTimeout(notify_hide_timerid);
114 notify_last_doc = doc;
118 if (n.style.display == "block") {
119 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
123 n.style.display = "block";
127 n.style.backgroundColor = "#ffcccc";
128 n.style.color = "black";
129 n.style.borderColor = "#ff0000";
131 n.style.backgroundColor = "#fff7d5";
132 n.style.borderColor = "#d7c47a";
133 n.style.color = "black";
139 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
143 function p_notify(msg, no_hide, is_err) {
144 notify_real(msg, parent.document, no_hide, is_err);
147 function notify(msg, no_hide, is_err) {
148 notify_real(msg, document, no_hide, is_err);
151 function printLockingError() {
152 notify("Please wait until operation finishes");}
156 function hotkey_handler(e) {
162 if (!hotkeys_enabled) return;
165 keycode = window.event.keyCode;
170 if (keycode == 13 || keycode == 27) {
173 seq = seq + "" + keycode;
176 var m_ctx = getMainContext();
177 var f_ctx = getFeedsContext();
178 var h_ctx = getHeadlinesContext();
180 if (keycode == 82) { // r
181 return m_ctx.scheduleFeedUpdate(true);
184 if (keycode == 83) { // r
185 return m_ctx.displayDlg("search", getActiveFeedId());
188 if (keycode == 85) { // u
189 if (getActiveFeedId()) {
190 return f_ctx.viewfeed(getActiveFeedId(), 0, "ForceUpdate");
194 if (keycode == 65) { // a
195 return m_ctx.toggleDispRead();
198 var f_doc = m_ctx.frames["feeds-frame"].document;
199 var feedlist = f_doc.getElementById('feedList');
201 if (keycode == 74) { // j
202 var feed = getActiveFeedId();
203 var new_feed = getRelativeFeedId(feedlist, feed, 'prev');
204 if (new_feed) viewfeed(new_feed, 0, '');
207 if (keycode == 75) { // k
208 var feed = getActiveFeedId();
209 var new_feed = getRelativeFeedId(feedlist, feed, 'next');
210 if (new_feed) viewfeed(new_feed, 0, '');
213 if (keycode == 78 || keycode == 40) { // n, down
214 return h_ctx.moveToPost('next');
217 if (keycode == 80 || keycode == 38) { // p, up
218 return h_ctx.moveToPost('prev');
221 if (document.getElementById("piggie")) {
223 if (seq.match("807371717369")) {
225 localPiggieFunction(true);
227 localPiggieFunction(false);
231 if (typeof localHotkeyHandler != 'undefined') {
233 localHotkeyHandler(keycode);
235 exception_error("hotkey_handler, local:", e);
239 exception_error("hotkey_handler", e);
243 function cleanSelectedList(element) {
244 var content = document.getElementById(element);
246 if (!document.getElementById("feedCatHolder")) {
247 for (i = 0; i < content.childNodes.length; i++) {
248 var child = content.childNodes[i];
250 child.className = child.className.replace("Selected", "");
256 for (i = 0; i < content.childNodes.length; i++) {
257 var child = content.childNodes[i];
258 if (child.id == "feedCatHolder") {
259 parent.debug(child.id);
260 var fcat = child.lastChild;
261 for (j = 0; j < fcat.childNodes.length; j++) {
262 var feed = fcat.childNodes[j];
263 feed.className = feed.className.replace("Selected", "");
271 function cleanSelected(element) {
272 var content = document.getElementById(element);
274 for (i = 0; i < content.rows.length; i++) {
275 content.rows[i].className = content.rows[i].className.replace("Selected", "");
279 function getVisibleUnreadHeadlines() {
280 var content = document.getElementById("headlinesList");
282 var rows = new Array();
284 for (i = 0; i < content.rows.length; i++) {
285 var row_id = content.rows[i].id.replace("RROW-", "");
286 if (row_id.length > 0 && content.rows[i].className.match("Unread")) {
293 function getVisibleHeadlineIds() {
295 var content = document.getElementById("headlinesList");
297 var rows = new Array();
299 for (i = 0; i < content.rows.length; i++) {
300 var row_id = content.rows[i].id.replace("RROW-", "");
301 if (row_id.length > 0) {
308 function getFirstVisibleHeadlineId() {
309 var rows = getVisibleHeadlineIds();
313 function getLastVisibleHeadlineId() {
314 var rows = getVisibleHeadlineIds();
315 return rows[rows.length-1];
318 function markHeadline(id) {
319 var row = document.getElementById("RROW-" + id);
321 var is_active = false;
323 if (row.className.match("Active")) {
326 row.className = row.className.replace("Selected", "");
327 row.className = row.className.replace("Active", "");
328 row.className = row.className.replace("Insensitive", "");
331 row.className = row.className = "Active";
334 var check = document.getElementById("RCHK-" + id);
337 check.checked = true;
340 row.className = row.className + "Selected";
345 function getFeedIds() {
346 var content = document.getElementById("feedsList");
348 var rows = new Array();
350 for (i = 0; i < content.rows.length; i++) {
351 var id = content.rows[i].id.replace("FEEDR-", "");
360 function setCookie(name, value, lifetime, path, domain, secure) {
366 d.setTime(lifetime * 1000);
369 int_setCookie(name, value, d, path, domain, secure);
373 function int_setCookie(name, value, expires, path, domain, secure) {
374 document.cookie= name + "=" + escape(value) +
375 ((expires) ? "; expires=" + expires.toGMTString() : "") +
376 ((path) ? "; path=" + path : "") +
377 ((domain) ? "; domain=" + domain : "") +
378 ((secure) ? "; secure" : "");
381 function delCookie(name, path, domain) {
382 if (getCookie(name)) {
383 document.cookie = name + "=" +
384 ((path) ? ";path=" + path : "") +
385 ((domain) ? ";domain=" + domain : "" ) +
386 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
391 function getCookie(name) {
393 var dc = document.cookie;
394 var prefix = name + "=";
395 var begin = dc.indexOf("; " + prefix);
397 begin = dc.indexOf(prefix);
398 if (begin != 0) return null;
403 var end = document.cookie.indexOf(";", begin);
407 return unescape(dc.substring(begin + prefix.length, end));
410 function disableContainerChildren(id, disable, doc) {
412 if (!doc) doc = document;
414 var container = doc.getElementById(id);
417 //alert("disableContainerChildren: element " + id + " not found");
421 for (var i = 0; i < container.childNodes.length; i++) {
422 var child = container.childNodes[i];
425 child.disabled = disable;
431 if (child.className && child.className.match("button")) {
432 child.className = "disabledButton";
435 if (child.className && child.className.match("disabledButton")) {
436 child.className = "button";
443 function gotoPreferences() {
444 document.location.href = "prefs.php";
447 function gotoMain() {
448 document.location.href = "tt-rss.php";
451 function gotoExportOpml() {
452 document.location.href = "opml.php?op=Export";
455 function getActiveFeedId() {
456 // return getCookie("ttrss_vf_actfeed");
458 debug("gAFID: " + getMainContext().active_feed_id);
459 return getMainContext().active_feed_id;
461 exception_error("getActiveFeedId", e);
465 function setActiveFeedId(id) {
466 // return setCookie("ttrss_vf_actfeed", id);
468 getMainContext().active_feed_id = id;
470 exception_error("setActiveFeedId", e);
474 function parse_counters(reply, scheduled_call) {
476 var f_document = getFeedsContext().document;
477 var title_obj = getMainContext();
479 if (reply.firstChild && reply.firstChild.firstChild) {
480 debug("<b>wrong element passed to parse_counters, adjusting.</b>");
481 reply = reply.firstChild;
484 debug("F_DOC: " + f_document + ", T_OBJ: " + title_obj);
486 for (var l = 0; l < reply.childNodes.length; l++) {
487 if (!reply.childNodes[l] ||
488 typeof(reply.childNodes[l].getAttribute) == "undefined") {
489 // where did this come from?
493 var id = reply.childNodes[l].getAttribute("id");
494 var t = reply.childNodes[l].getAttribute("type");
495 var ctr = reply.childNodes[l].getAttribute("counter");
496 var error = reply.childNodes[l].getAttribute("error");
497 var has_img = reply.childNodes[l].getAttribute("hi");
498 var updated = reply.childNodes[l].getAttribute("updated");
500 if (id == "global-unread") {
501 title_obj.global_unread = ctr;
502 title_obj.updateTitle();
506 if (t == "category") {
507 var catctr = f_document.getElementById("FCATCTR-" + id);
509 catctr.innerHTML = "(" + ctr + " unread)";
514 var feedctr = f_document.getElementById("FEEDCTR-" + id);
515 var feedu = f_document.getElementById("FEEDU-" + id);
516 var feedr = f_document.getElementById("FEEDR-" + id);
517 var feed_img = f_document.getElementById("FIMG-" + id);
518 var feedlink = f_document.getElementById("FEEDL-" + id);
519 var feedupd = f_document.getElementById("FLUPD-" + id);
521 if (updated && feedlink) {
523 feedlink.title = "Error: " + error + " (" + updated + ")";
525 feedlink.title = "Updated: " + updated;
529 if (updated && feedupd) {
531 feedupd.innerHTML = updated + " (Error)";
533 feedupd.innerHTML = updated;
537 if (feedctr && feedu && feedr) {
539 if (feedu.innerHTML != ctr && id == getActiveFeedId() && scheduled_call) {
540 var hf = title_obj.parent.frames["headlines-frame"];
541 hf.location.reload(true);
544 feedu.innerHTML = ctr;
547 feedr.className = feedr.className.replace("feed", "error");
549 feedr.className = feedr.className.replace("error", "feed");
553 feedctr.className = "odd";
554 if (!feedr.className.match("Unread")) {
555 var is_selected = feedr.className.match("Selected");
557 feedr.className = feedr.className.replace("Selected", "");
558 feedr.className = feedr.className.replace("Unread", "");
560 feedr.className = feedr.className + "Unread";
563 feedr.className = feedr.className + "Selected";
568 feedctr.className = "invisible";
569 feedr.className = feedr.className.replace("Unread", "");
574 exception_error("parse_counters", e);
578 function all_counters_callback() {
579 if (xmlhttp_rpc.readyState == 4) {
581 if (!xmlhttp_rpc.responseXML || !xmlhttp_rpc.responseXML.firstChild) {
582 debug("[all_counters_callback] backend did not return valid XML");
586 debug("in all_counters_callback");
588 var reply = xmlhttp_rpc.responseXML.firstChild;
590 var counters = reply.firstChild;
592 parse_counters(counters);
594 var runtime = counters.nextSibling;
597 getMainContext().parse_runtime_info(runtime);
600 if (getInitParam("feeds_sort_by_unread") == 1) {
604 hideOrShowFeeds(document, getInitParam("hide_read_feeds") == 1);
607 exception_error("all_counters_callback", e);
612 function get_feed_entry_unread(doc, elem) {
614 var id = elem.id.replace("FEEDR-", "");
621 return parseInt(doc.getElementById("FEEDU-" + id).innerHTML);
627 function resort_category(doc, node) {
628 debug("resort_category: " + node);
630 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
631 for (i = 0; i < node.childNodes.length; i++) {
632 if (node.childNodes[i].nodeName != "LI") { continue; }
634 if (get_feed_entry_unread(doc, node.childNodes[i]) < 0) {
638 for (j = i+1; j < node.childNodes.length; j++) {
639 if (node.childNodes[j].nodeName != "LI") { continue; }
641 var tmp_val = get_feed_entry_unread(doc, node.childNodes[i]);
642 var cur_val = get_feed_entry_unread(doc, node.childNodes[j]);
644 if (cur_val > tmp_val) {
645 tempnode_i = node.childNodes[i].cloneNode(true);
646 tempnode_j = node.childNodes[j].cloneNode(true);
647 node.replaceChild(tempnode_i, node.childNodes[j]);
648 node.replaceChild(tempnode_j, node.childNodes[i]);
657 function resort_feedlist() {
658 debug("resort_feedlist");
660 var fd = getFeedsContext().document;
662 if (fd.getElementById("feedCatHolder")) {
664 var feeds = fd.getElementById("feedList");
665 var child = feeds.firstChild;
669 if (child.id == "feedCatHolder") {
670 resort_category(fd, child.firstChild);
673 child = child.nextSibling;
677 resort_category(fd, fd.getElementById("feedList"));
681 function update_all_counters(feed) {
682 if (xmlhttp_ready(xmlhttp_rpc)) {
683 var query = "backend.php?op=rpc&subop=getAllCounters";
686 query = query + "&aid=" + feed;
689 xmlhttp_rpc.open("GET", query, true);
690 xmlhttp_rpc.onreadystatechange=all_counters_callback;
691 xmlhttp_rpc.send(null);
695 function popupHelp(tid) {
696 var w = window.open("backend.php?op=help&tid=" + tid,
698 "menubar=no,location=no,resizable=yes,scrollbars=yes,status=no");
701 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
702 * * @author Sundar Dorai-Raj
703 * * Email: sdoraira@vt.edu
704 * * This program is free software; you can redistribute it and/or
705 * * modify it under the terms of the GNU General Public License
706 * * as published by the Free Software Foundation; either version 2
707 * * of the License, or (at your option) any later version,
708 * * provided that any use properly credits the author.
709 * * This program is distributed in the hope that it will be useful,
710 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
711 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
712 * * GNU General Public License for more details at http://www.gnu.org * * */
714 var numbers=".0123456789";
715 function isNumeric(x) {
716 // is x a String or a character?
718 // remove negative sign
720 for(j=0;j<x.length;j++) {
721 // call isNumeric recursively for each character
722 number=isNumeric(x.substring(j,j+1));
723 if(!number) return number;
728 // if x is number return true
729 if(numbers.indexOf(x)>=0) return true;
735 function hideOrShowFeeds(doc, hide) {
737 var fd = getFeedsContext().document;
739 var list = fd.getElementById("feedList");
741 if (fd.getElementById("feedCatHolder")) {
743 var feeds = fd.getElementById("feedList");
744 var child = feeds.firstChild;
748 if (child.id == "feedCatHolder") {
749 hideOrShowFeedsCategory(fd, child.firstChild, hide, child.previousSibling);
752 child = child.nextSibling;
756 hideOrShowFeedsCategory(fd, fd.getElementById("feedList"), hide);
760 function hideOrShowFeedsCategory(doc, node, hide, cat_node) {
762 // debug("hideOrShowFeedsCategory: " + node + " (" + hide + ")");
766 if (node.hasChildNodes() && node.firstChild.nextSibling != false) {
767 for (i = 0; i < node.childNodes.length; i++) {
768 if (node.childNodes[i].nodeName != "LI") { continue; }
770 var has_unread = (node.childNodes[i].className != "feed");
772 // debug(node.childNodes[i].id + " --> " + has_unread);
774 if (hide && !has_unread) {
775 node.childNodes[i].style.display = "none";
779 node.childNodes[i].style.display = "list-item";
789 if (cat_unread == 0) {
791 cat_node.style.display = "none";
793 cat_node.style.display = "list-item";
797 // debug("unread for category: " + cat_unread);
800 function selectTableRow(r, do_select) {
801 r.className = r.className.replace("Selected", "");
804 r.className = r.className + "Selected";
808 function selectTableRowById(elem_id, check_id, do_select) {
812 var row = document.getElementById(elem_id);
815 selectTableRow(row, do_select);
818 var check = document.getElementById(check_id);
821 check.checked = do_select;
824 exception_error("selectTableRowById", e);
828 function selectTableRowsByIdPrefix(content_id, prefix, check_prefix, do_select,
829 classcheck, reset_others) {
831 var content = document.getElementById(content_id);
834 alert("[selectTableRows] Element " + content_id + " not found.");
838 for (i = 0; i < content.rows.length; i++) {
839 if (!classcheck || content.rows[i].className.match(classcheck)) {
841 if (content.rows[i].id.match(prefix)) {
842 selectTableRow(content.rows[i], do_select);
844 var row_id = content.rows[i].id.replace(prefix, "");
845 var check = document.getElementById(check_prefix + row_id);
848 check.checked = do_select;
850 } else if (reset_others) {
851 selectTableRow(content.rows[i], false);
853 var row_id = content.rows[i].id.replace(prefix, "");
854 var check = document.getElementById(check_prefix + row_id);
857 check.checked = false;
861 } else if (reset_others) {
862 selectTableRow(content.rows[i], false);
864 var row_id = content.rows[i].id.replace(prefix, "");
865 var check = document.getElementById(check_prefix + row_id);
868 check.checked = false;
875 function getSelectedTableRowIds(content_id, prefix) {
877 var content = document.getElementById(content_id);
880 alert("[getSelectedTableRowIds] Element " + content_id + " not found.");
884 var sel_rows = new Array();
886 for (i = 0; i < content.rows.length; i++) {
887 if (content.rows[i].id.match(prefix) &&
888 content.rows[i].className.match("Selected")) {
890 var row_id = content.rows[i].id.replace(prefix + "-", "");
891 sel_rows.push(row_id);
899 function toggleSelectRowById(sender, id) {
900 var row = document.getElementById(id);
902 if (sender.checked) {
903 if (!row.className.match("Selected")) {
904 row.className = row.className + "Selected";
907 if (row.className.match("Selected")) {
908 row.className = row.className.replace("Selected", "");
913 function toggleSelectListRow(sender) {
914 var parent_row = sender.parentNode;
916 if (sender.checked) {
917 if (!parent_row.className.match("Selected")) {
918 parent_row.className = parent_row.className + "Selected";
921 if (parent_row.className.match("Selected")) {
922 parent_row.className = parent_row.className.replace("Selected", "");
928 function toggleSelectRow(sender) {
929 var parent_row = sender.parentNode.parentNode;
931 if (sender.checked) {
932 if (!parent_row.className.match("Selected")) {
933 parent_row.className = parent_row.className + "Selected";
936 if (parent_row.className.match("Selected")) {
937 parent_row.className = parent_row.className.replace("Selected", "");
942 function openExternalUrl(url) {
943 var w = window.open(url);
946 function getRelativeFeedId(list, id, direction, unread_only) {
948 if (direction == "next") {
949 for (i = 0; i < list.childNodes.length; i++) {
950 var child = list.childNodes[i];
951 if (child.id && child.id == "feedCatHolder") {
952 if (child.lastChild) {
953 var cr = getRelativeFeedId(child.firstChild, id, direction);
956 } else if (child.id && child.id.match("FEEDR-")) {
957 return child.id.replace('FEEDR-', '');
962 // FIXME select last feed doesn't work when only unread feeds are visible
964 if (direction == "prev") {
965 for (i = list.childNodes.length-1; i >= 0; i--) {
966 var child = list.childNodes[i];
967 if (child.id == "feedCatHolder") {
968 if (child.firstChild) {
969 var cr = getRelativeFeedId(child.firstChild, id, direction);
972 } else if (child.id.match("FEEDR-")) {
974 if (getInitParam("hide_read_feeds") == 1) {
975 if (child.className != "feed") {
976 alert(child.className);
977 return child.id.replace('FEEDR-', '');
980 return child.id.replace('FEEDR-', '');
987 var feed = list.ownerDocument.getElementById("FEEDR-" + getActiveFeedId());
989 if (getInitParam("hide_read_feeds") == 1) {
993 if (direction == "next") {
1003 } else if (e.parentNode.parentNode.nextSibling) {
1005 var this_cat = e.parentNode.parentNode;
1009 if (this_cat && this_cat.nextSibling) {
1010 while (!e && this_cat.nextSibling) {
1011 this_cat = this_cat.nextSibling;
1012 if (this_cat.id == "feedCatHolder") {
1013 e = this_cat.firstChild.firstChild;
1023 if (!unread_only || (unread_only && e.className != "feed" &&
1024 e.className != "error")) {
1025 return e.id.replace("FEEDR-", "");
1030 } else if (direction == "prev") {
1036 if (e.previousSibling) {
1038 e = e.previousSibling;
1040 } else if (e.parentNode.parentNode.previousSibling) {
1042 var this_cat = e.parentNode.parentNode;
1046 if (this_cat && this_cat.previousSibling) {
1047 while (!e && this_cat.previousSibling) {
1048 this_cat = this_cat.previousSibling;
1049 if (this_cat.id == "feedCatHolder") {
1050 e = this_cat.firstChild.lastChild;
1060 if (!unread_only || (unread_only && e.className != "feed" &&
1061 e.className != "error")) {
1062 return e.id.replace("FEEDR-", "");
1070 function showBlockElement(id) {
1071 var elem = document.getElementById(id);
1074 elem.style.display = "block";
1076 alert("[showBlockElement] can't find element with id " + id);
1080 function hideParentElement(e) {
1081 e.parentNode.style.display = "none";
1084 function dropboxSelect(e, v) {
1085 for (i = 0; i < e.length; i++) {
1086 if (e[i].value == v) {
1087 e.selectedIndex = i;
1093 // originally stolen from http://www.11tmr.com/11tmr.nsf/d6plinks/MWHE-695L9Z
1094 // bugfixed just a little bit :-)
1095 function getURLParam(strParamName){
1097 var strHref = window.location.href;
1099 if (strHref.indexOf("#") == strHref.length-1) {
1100 strHref = strHref.substring(0, strHref.length-1);
1103 if ( strHref.indexOf("?") > -1 ){
1104 var strQueryString = strHref.substr(strHref.indexOf("?"));
1105 var aQueryString = strQueryString.split("&");
1106 for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
1107 if (aQueryString[iParam].indexOf(strParamName + "=") > -1 ){
1108 var aParam = aQueryString[iParam].split("=");
1109 strReturn = aParam[1];
1117 function leading_zero(p) {
1119 if (s.length == 1) s = "0" + s;
1123 function closeInfoBox(cleanup) {
1124 var box = document.getElementById('infoBox');
1125 var shadow = document.getElementById('infoBoxShadow');
1128 shadow.style.display = "none";
1130 box.style.display = "none";
1133 if (cleanup) box.innerHTML = " ";
1141 function displayDlg(id, param) {
1143 if (!xmlhttp_ready(xmlhttp)) {
1144 printLockingError();
1150 xmlhttp.open("GET", "backend.php?op=dlg&id=" +
1151 param_escape(id) + "¶m=" + param_escape(param), true);
1152 xmlhttp.onreadystatechange=infobox_callback;
1160 function infobox_submit_callback() {
1161 if (xmlhttp.readyState == 4) {
1164 // called from prefs, reload tab
1166 selectTab(active_tab, false);
1169 notify(xmlhttp.responseText);
1174 function infobox_callback() {
1175 if (xmlhttp.readyState == 4) {
1176 var box = document.getElementById('infoBox');
1177 var shadow = document.getElementById('infoBoxShadow');
1179 box.innerHTML=xmlhttp.responseText;
1181 shadow.style.display = "block";
1183 box.style.display = "block";
1189 function qaddFilter() {
1191 if (!xmlhttp_ready(xmlhttp)) {
1192 printLockingError();
1196 var query = Form.serialize("filter_add_form");
1198 xmlhttp.open("GET", "backend.php?" + query, true);
1199 xmlhttp.onreadystatechange=infobox_submit_callback;
1205 function toggleSubmitNotEmpty(e, submit_id) {
1207 document.getElementById(submit_id).disabled = (e.value == "")
1209 exception_error("toggleSubmitNotEmpty", e);
1213 function isValidURL(s) {
1214 return s.match("http://") != null || s.match("https://") != null;
1219 if (!xmlhttp_ready(xmlhttp)) {
1220 printLockingError();
1224 notify("Adding feed...");
1228 var feeds_doc = getFeedsContext().document;
1230 feeds_doc.location.href = "backend.php?op=error&msg=Loading,%20please wait...";
1232 var query = Form.serialize("feed_add_form");
1234 xmlhttp.open("GET", "backend.php?" + query, true);
1235 xmlhttp.onreadystatechange=dlg_frefresh_callback;
1239 function filterCR(e)
1244 key = window.event.keyCode; //IE
1246 key = e.which; //firefox
1254 function getMainContext() {
1255 if (parent.window != window) {
1256 return parent.window;
1262 function getFeedsContext() {
1264 return getMainContext().frames["feeds-frame"];
1266 exception_error("getFeedsContext", e);
1271 function getHeadlinesContext() {
1273 return getMainContext().frames["headlines-frame"];
1275 exception_error("getHeadlinesContext", e);
1279 var debug_last_class = "even";
1281 function debug(msg) {
1282 var ctx = getMainContext();
1284 if (ctx.debug_last_class == "even") {
1285 ctx.debug_last_class = "odd";
1287 ctx.debug_last_class = "even";
1290 var c = ctx.document.getElementById('debug_output');
1291 if (c && c.style.display == "block") {
1292 while (c.lastChild != 'undefined' && c.childNodes.length > 100) {
1293 c.removeChild(c.lastChild);
1297 var ts = leading_zero(d.getHours()) + ":" + leading_zero(d.getMinutes()) +
1298 ":" + leading_zero(d.getSeconds());
1299 c.innerHTML = "<li class=\"" + ctx.debug_last_class + "\"><span class=\"debugTS\">[" + ts + "]</span> " +
1300 msg + "</li>" + c.innerHTML;
1304 function getInitParam(key) {
1305 return getMainContext().init_params[key];
1308 function storeInitParam(key, value, is_client) {
1311 if (getMainContext().init_params[key] != value) {
1312 debug("storeInitParam: " + key + " => " + value);
1313 //new Ajax.Request("backend.php?op=rpc&subop=storeParam&key=" +
1314 // param_escape(key) + "&value=" + param_escape(value));
1315 var f = getMainContext().document.getElementById("backReqBox");
1316 f.src = "backend.php?op=rpc&subop=storeParam&key=" +
1317 param_escape(key) + "&value=" + param_escape(value);
1320 getMainContext().init_params[key] = value;
1322 exception_error("storeInitParam", e);
1327 function storeInitParams(params, is_client) {
1332 if (getMainContext().init_params[k] != params[k]) {
1333 s += k + "=" + params[k] + ";";
1334 getMainContext().init_params[k] = params[k];
1338 debug("storeInitParams: " + s);
1341 new Ajax.Request("backend.php?op=rpc&subop=storeParams&str=" + s);
1344 exception_error("storeInitParams", e);
1348 function fatalError(code, message) {
1350 var fe = document.getElementById("fatal_error");
1351 var fc = document.getElementById("fatal_error_msg");
1353 fc.innerHTML = "Code " + code + ": " + message;
1355 fe.style.display = "block";
1358 exception_error("fatalError", e);
1362 function getFeedName(id) {
1363 var d = getFeedsContext().document;
1364 var e = d.getElementById("FEEDN-" + id);
1366 return e.innerHTML.stripTags();