1 var notify_silent = false;
2 var loading_progress = 0;
3 var sanity_check_done = false;
6 Ajax.Base.prototype.initialize = Ajax.Base.prototype.initialize.wrap(
7 function (callOriginal, options) {
9 if (getInitParam("csrf_token") != undefined) {
10 Object.extend(options, options || { });
12 if (Object.isString(options.parameters))
13 options.parameters = options.parameters.toQueryParams();
14 else if (Object.isHash(options.parameters))
15 options.parameters = options.parameters.toObject();
17 options.parameters["csrf_token"] = getInitParam("csrf_token");
20 return callOriginal(options);
24 /* add method to remove element from array */
26 Array.prototype.remove = function(s) {
27 for (var i=0; i < this.length; i++) {
28 if (s == this[i]) this.splice(i, 1);
32 /* create console.log if it doesn't exist */
34 if (!window.console) console = {};
35 console.log = console.log || function(msg) { };
36 console.warn = console.warn || function(msg) { };
37 console.error = console.error || function(msg) { };
39 function exception_error(location, e, ext_info) {
40 var msg = format_exception_error(location, e);
42 if (!ext_info) ext_info = false;
47 if (ext_info.responseText) {
48 ext_info = ext_info.responseText;
52 var content = "<div class=\"fatalError\">" +
53 "<pre>" + msg + "</pre>";
55 content += "<form name=\"exceptionForm\" id=\"exceptionForm\" target=\"_blank\" "+
56 "action=\"http://tt-rss.org/report.php\" method=\"POST\">";
58 content += "<textarea style=\"display : none\" name=\"message\">" + msg + "</textarea>";
59 content += "<textarea style=\"display : none\" name=\"params\">N/A</textarea>";
62 content += "<div><b>Additional information:</b></div>" +
63 "<textarea name=\"xinfo\" readonly=\"1\">" + ext_info + "</textarea>";
66 content += "<div><b>Stack trace:</b></div>" +
67 "<textarea name=\"stack\" readonly=\"1\">" + e.stack + "</textarea>";
73 content += "<div class='dlgButtons'>";
75 content += "<button dojoType=\"dijit.form.Button\""+
76 "onclick=\"dijit.byId('exceptionDlg').report()\">" +
77 __('Report to tt-rss.org') + "</button> ";
78 content += "<button dojoType=\"dijit.form.Button\" "+
79 "onclick=\"dijit.byId('exceptionDlg').hide()\">" +
80 __('Close') + "</button>";
83 if (dijit.byId("exceptionDlg"))
84 dijit.byId("exceptionDlg").destroyRecursive();
86 var dialog = new dijit.Dialog({
88 title: "Unhandled exception",
89 style: "width: 600px",
91 if (confirm(__("Are you sure to report this exception to tt-rss.org? The report will include your browser information. Your IP would be saved in the database."))) {
93 document.forms['exceptionForm'].params.value = $H({
94 browserName: navigator.appName,
95 browserVersion: navigator.appVersion,
96 browserPlatform: navigator.platform,
97 browserCookies: navigator.cookieEnabled,
100 document.forms['exceptionForm'].submit();
114 function format_exception_error(location, e) {
118 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
120 msg = "Exception: " + e.name + ", " + e.message +
121 "\nFunction: " + location + "()" +
122 "\nLocation: " + base_fname + ":" + e.lineNumber;
124 } else if (e.description) {
125 msg = "Exception: " + e.description + "\nFunction: " + location + "()";
127 msg = "Exception: " + e + "\nFunction: " + location + "()";
130 console.error("EXCEPTION: " + msg);
135 function param_escape(arg) {
136 if (typeof encodeURIComponent != 'undefined')
137 return encodeURIComponent(arg);
142 function param_unescape(arg) {
143 if (typeof decodeURIComponent != 'undefined')
144 return decodeURIComponent(arg);
146 return unescape(arg);
149 var notify_hide_timerid = false;
151 function hide_notify() {
154 n.style.display = "none";
158 function notify_silent_next() {
159 notify_silent = true;
162 function notify_real(msg, no_hide, n_type) {
165 notify_silent = false;
170 var nb = $("notify_body");
172 if (!n || !nb) return;
174 if (notify_hide_timerid) {
175 window.clearTimeout(notify_hide_timerid);
179 if (n.style.display == "block") {
180 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
184 n.style.display = "block";
196 if (typeof __ != 'undefined') {
201 n.className = "notify";
202 } else if (n_type == 2) {
203 n.className = "notifyProgress";
204 msg = "<img src='"+getInitParam("sign_progress")+"'> " + msg;
205 } else if (n_type == 3) {
206 n.className = "notifyError";
207 msg = "<img src='"+getInitParam("sign_excl")+"'> " + msg;
208 } else if (n_type == 4) {
209 n.className = "notifyInfo";
210 msg = "<img src='"+getInitParam("sign_info")+"'> " + msg;
213 // msg = "<img src='images/live_com_loading.gif'> " + msg;
218 notify_hide_timerid = window.setTimeout("hide_notify()", 3000);
222 function notify(msg, no_hide) {
223 notify_real(msg, no_hide, 1);
226 function notify_progress(msg, no_hide) {
227 notify_real(msg, no_hide, 2);
230 function notify_error(msg, no_hide) {
231 notify_real(msg, no_hide, 3);
235 function notify_info(msg, no_hide) {
236 notify_real(msg, no_hide, 4);
239 function setCookie(name, value, lifetime, path, domain, secure) {
245 d.setTime(d.getTime() + (lifetime * 1000));
248 console.log("setCookie: " + name + " => " + value + ": " + d);
250 int_setCookie(name, value, d, path, domain, secure);
254 function int_setCookie(name, value, expires, path, domain, secure) {
255 document.cookie= name + "=" + escape(value) +
256 ((expires) ? "; expires=" + expires.toGMTString() : "") +
257 ((path) ? "; path=" + path : "") +
258 ((domain) ? "; domain=" + domain : "") +
259 ((secure) ? "; secure" : "");
262 function delCookie(name, path, domain) {
263 if (getCookie(name)) {
264 document.cookie = name + "=" +
265 ((path) ? ";path=" + path : "") +
266 ((domain) ? ";domain=" + domain : "" ) +
267 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
272 function getCookie(name) {
274 var dc = document.cookie;
275 var prefix = name + "=";
276 var begin = dc.indexOf("; " + prefix);
278 begin = dc.indexOf(prefix);
279 if (begin != 0) return null;
284 var end = document.cookie.indexOf(";", begin);
288 return unescape(dc.substring(begin + prefix.length, end));
291 function gotoPreferences() {
292 document.location.href = "prefs.php";
295 function gotoMain() {
296 document.location.href = "index.php";
299 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
300 * * @author Sundar Dorai-Raj
301 * * Email: sdoraira@vt.edu
302 * * This program is free software; you can redistribute it and/or
303 * * modify it under the terms of the GNU General Public License
304 * * as published by the Free Software Foundation; either version 2
305 * * of the License, or (at your option) any later version,
306 * * provided that any use properly credits the author.
307 * * This program is distributed in the hope that it will be useful,
308 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
309 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
310 * * GNU General Public License for more details at http://www.gnu.org * * */
312 var numbers=".0123456789";
313 function isNumeric(x) {
314 // is x a String or a character?
316 // remove negative sign
318 for(var j=0;j<x.length;j++) {
319 // call isNumeric recursively for each character
320 number=isNumeric(x.substring(j,j+1));
321 if(!number) return number;
326 // if x is number return true
327 if(numbers.indexOf(x)>=0) return true;
333 function toggleSelectRowById(sender, id) {
335 return toggleSelectRow(sender, row);
338 function toggleSelectListRow(sender) {
339 var row = sender.parentNode;
340 return toggleSelectRow(sender, row);
343 /* this is for dijit Checkbox */
344 function toggleSelectListRow2(sender) {
345 var row = sender.domNode.parentNode;
346 return toggleSelectRow(sender, row);
349 function tSR(sender, row) {
350 return toggleSelectRow(sender, row);
353 /* this is for dijit Checkbox */
354 function toggleSelectRow2(sender, row) {
356 if (!row) row = sender.domNode.parentNode.parentNode;
358 if (sender.checked && !row.hasClassName('Selected'))
359 row.addClassName('Selected');
361 row.removeClassName('Selected');
365 function toggleSelectRow(sender, row) {
367 if (!row) row = sender.parentNode.parentNode;
369 if (sender.checked && !row.hasClassName('Selected'))
370 row.addClassName('Selected');
372 row.removeClassName('Selected');
375 function checkboxToggleElement(elem, id) {
377 Effect.Appear(id, {duration : 0.5});
379 Effect.Fade(id, {duration : 0.5});
383 function dropboxSelect(e, v) {
384 for (var i = 0; i < e.length; i++) {
385 if (e[i].value == v) {
392 function getURLParam(param){
393 return String(window.location.href).parseQuery()[param];
396 function closeInfoBox(cleanup) {
398 dialog = dijit.byId("infoBox");
400 if (dialog) dialog.hide();
403 //exception_error("closeInfoBox", e);
409 function displayDlg(id, param, callback) {
411 notify_progress("Loading, please wait...", true);
413 var query = "?op=dlg&method=" +
414 param_escape(id) + "¶m=" + param_escape(param);
416 new Ajax.Request("backend.php", {
418 onComplete: function (transport) {
419 infobox_callback2(transport);
420 if (callback) callback(transport);
426 function infobox_callback2(transport) {
430 if (dijit.byId("infoBox")) {
431 dialog = dijit.byId("infoBox");
434 //console.log("infobox_callback2");
437 var title = transport.responseXML.getElementsByTagName("title")[0];
439 title = title.firstChild.nodeValue;
441 var content = transport.responseXML.getElementsByTagName("content")[0];
443 content = content.firstChild.nodeValue;
446 dialog = new dijit.Dialog({
449 style: "width: 600px",
450 onCancel: function() {
453 onExecute: function() {
456 onClose: function() {
461 dialog.attr('title', title);
462 dialog.attr('content', content);
469 exception_error("infobox_callback2", e);
473 function filterCR(e, f)
478 key = window.event.keyCode; //IE
480 key = e.which; //firefox
483 if (typeof f != 'undefined') {
494 function getInitParam(key) {
495 return init_params[key];
498 function setInitParam(key, value) {
499 init_params[key] = value;
502 function fatalError(code, msg, ext_info) {
506 window.location.href = "index.php";
507 } else if (code == 5) {
508 window.location.href = "db-updater.php";
511 if (msg == "") msg = "Unknown error";
514 if (ext_info.responseText) {
515 ext_info = ext_info.responseText;
519 if (ERRORS && ERRORS[code] && !msg) {
523 var content = "<div><b>Error code:</b> " + code + "</div>" +
524 "<p>" + msg + "</p>";
527 content = content + "<div><b>Additional information:</b></div>" +
528 "<textarea style='width: 100%' readonly=\"1\">" +
529 ext_info + "</textarea>";
532 var dialog = new dijit.Dialog({
533 title: "Fatal error",
534 style: "width: 600px",
544 exception_error("fatalError", e);
548 function filterDlgCheckType(sender) {
552 var ftype = sender.value;
554 // if selected filter type is 5 (Date) enable the modifier dropbox
556 Element.show("filterDlg_dateModBox");
557 Element.show("filterDlg_dateChkBox");
559 Element.hide("filterDlg_dateModBox");
560 Element.hide("filterDlg_dateChkBox");
565 exception_error("filterDlgCheckType", e);
570 function filterDlgCheckAction(sender) {
574 var action = sender.value;
576 var action_param = $("filterDlg_paramBox");
579 console.log("filterDlgCheckAction: can't find action param box!");
583 // if selected action supports parameters, enable params field
584 if (action == 4 || action == 6 || action == 7) {
585 new Effect.Appear(action_param, {duration : 0.5});
587 Element.show(dijit.byId("filterDlg_actionParam").domNode);
588 Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
590 Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
591 Element.hide(dijit.byId("filterDlg_actionParam").domNode);
594 Element.hide(action_param);
598 exception_error("filterDlgCheckAction", e);
603 function filterDlgCheckDate() {
605 var dialog = dijit.byId("filterEditDlg");
607 var reg_exp = dialog.attr('value').reg_exp;
609 var query = "?op=rpc&method=checkDate&date=" + reg_exp;
611 new Ajax.Request("backend.php", {
613 onComplete: function(transport) {
615 var reply = JSON.parse(transport.responseText);
617 if (reply['result'] == true) {
618 alert(__("Date syntax appears to be correct:") + " " + reply['date']);
621 alert(__("Date syntax is incorrect."));
628 exception_error("filterDlgCheckDate", e);
632 function explainError(code) {
633 return displayDlg("explainError", code);
636 function loading_set_progress(p) {
638 loading_progress += p;
640 if (dijit.byId("loading_bar"))
641 dijit.byId("loading_bar").update({progress: loading_progress});
643 if (loading_progress >= 90)
647 exception_error("loading_set_progress", e);
651 function remove_splash() {
653 if (Element.visible("overlay")) {
654 console.log("about to remove splash, OMG!");
655 Element.hide("overlay");
656 console.log("removed splash!");
660 function transport_error_check(transport) {
662 if (transport.responseXML) {
663 var error = transport.responseXML.getElementsByTagName("error")[0];
666 var code = error.getAttribute("error-code");
667 var msg = error.getAttribute("error-msg");
669 fatalError(code, msg);
675 exception_error("check_for_error_xml", e);
680 function strip_tags(s) {
681 return s.replace(/<\/?[^>]+(>|$)/g, "");
684 function truncate_string(s, length) {
685 if (!length) length = 30;
686 var tmp = s.substring(0, length);
687 if (s.length > length) tmp += "…";
691 function hotkey_prefix_timeout() {
694 var date = new Date();
695 var ts = Math.round(date.getTime() / 1000);
697 if (hotkey_prefix_pressed && ts - hotkey_prefix_pressed >= 5) {
698 console.log("hotkey_prefix seems to be stuck, aborting");
699 hotkey_prefix_pressed = false;
700 hotkey_prefix = false;
701 Element.hide('cmdline');
704 setTimeout("hotkey_prefix_timeout()", 1000);
707 exception_error("hotkey_prefix_timeout", e);
711 function hideAuxDlg() {
713 Element.hide('auxDlg');
715 exception_error("hideAuxDlg", e);
720 function uploadIconHandler(rc) {
724 notify_info("Upload complete.");
725 if (inPreferences()) {
728 setTimeout('updateFeedList(false, false)', 50);
732 notify_error("Upload failed: icon is too big.");
735 notify_error("Upload failed.");
740 exception_error("uploadIconHandler", e);
744 function removeFeedIcon(id) {
748 if (confirm(__("Remove stored feed icon?"))) {
749 var query = "backend.php?op=pref-feeds&method=removeicon&feed_id=" + param_escape(id);
753 notify_progress("Removing feed icon...", true);
755 new Ajax.Request("backend.php", {
757 onComplete: function(transport) {
758 notify_info("Feed icon removed.");
759 if (inPreferences()) {
762 setTimeout('updateFeedList(false, false)', 50);
769 exception_error("removeFeedIcon", e);
773 function uploadFeedIcon() {
777 var file = $("icon_file");
779 if (file.value.length == 0) {
780 alert(__("Please select an image file to upload."));
782 if (confirm(__("Upload new icon for this feed?"))) {
783 notify_progress("Uploading, please wait...", true);
791 exception_error("uploadFeedIcon", e);
795 function addLabel(select, callback) {
799 var caption = prompt(__("Please enter label caption:"), "");
801 if (caption != undefined) {
804 alert(__("Can't create label: missing caption."));
808 var query = "?op=pref-labels&method=add&caption=" +
809 param_escape(caption);
812 query += "&output=select";
814 notify_progress("Loading, please wait...", true);
816 if (inPreferences() && !select) active_tab = "labelConfig";
818 new Ajax.Request("backend.php", {
820 onComplete: function(transport) {
823 } else if (inPreferences()) {
833 exception_error("addLabel", e);
837 function quickAddFeed() {
839 var query = "backend.php?op=dlg&method=quickAddFeed";
841 if (dijit.byId("feedAddDlg"))
842 dijit.byId("feedAddDlg").destroyRecursive();
844 var dialog = new dijit.Dialog({
846 title: __("Subscribe to Feed"),
847 style: "width: 600px",
848 execute: function() {
849 if (this.validate()) {
850 console.log(dojo.objectToQuery(this.attr('value')));
852 var feed_url = this.attr('value').feed;
854 Element.show("feed_add_spinner");
856 new Ajax.Request("backend.php", {
857 parameters: dojo.objectToQuery(this.attr('value')),
858 onComplete: function(transport) {
861 var reply = JSON.parse(transport.responseText);
863 var rc = reply['result'];
866 Element.hide("feed_add_spinner");
868 console.log("GOT RC: " + rc);
870 switch (parseInt(rc['code'])) {
873 notify_info(__("Subscribed to %s").replace("%s", feed_url));
878 alert(__("Specified URL seems to be invalid."));
881 alert(__("Specified URL doesn't seem to contain any feeds."));
884 notify_progress("Searching for feed urls...", true);
886 new Ajax.Request("backend.php", {
887 parameters: 'op=rpc&method=extractfeedurls&url=' + param_escape(feed_url),
888 onComplete: function(transport, dialog, feed_url) {
892 var reply = JSON.parse(transport.responseText);
894 var feeds = reply['urls'];
896 console.log(transport.responseText);
898 var select = dijit.byId("feedDlg_feedContainerSelect");
900 while (select.getOptions().length > 0)
901 select.removeOption(0);
904 for (var feedUrl in feeds) {
905 select.addOption({value: feedUrl, label: feeds[feedUrl]});
909 // if (count > 5) count = 5;
910 // select.size = count;
912 Effect.Appear('feedDlg_feedsContainer', {duration : 0.5});
917 alert(__("Couldn't download the specified URL: %s").
918 replace("%s", rc['message']));
921 alert(__("You are already subscribed to this feed."));
926 exception_error("subscribeToFeed", e, transport);
937 exception_error("quickAddFeed", e);
941 function quickAddFilter() {
943 var query = "backend.php?op=dlg&method=quickAddFilter";
945 if (dijit.byId("feedEditDlg"))
946 dijit.byId("feedEditDlg").destroyRecursive();
948 if (dijit.byId("filterEditDlg"))
949 dijit.byId("filterEditDlg").destroyRecursive();
951 dialog = new dijit.Dialog({
953 title: __("Create Filter"),
954 style: "width: 600px",
956 if (this.validate()) {
958 var query = "?op=rpc&method=verifyRegexp®_exp=" +
959 param_escape(dialog.attr('value').reg_exp);
961 notify_progress("Verifying regular expression...");
963 new Ajax.Request("backend.php", {
965 onComplete: function(transport) {
966 var reply = JSON.parse(transport.responseText);
971 if (!reply['status']) {
972 alert("Invalid regular expression.");
976 if (dijit.byId("filterTestDlg"))
977 dijit.byId("filterTestDlg").destroyRecursive();
979 tdialog = new dijit.Dialog({
981 title: __("Filter Test Results"),
982 style: "width: 600px",
983 href: "backend.php?savemode=test&" +
984 dojo.objectToQuery(dialog.attr('value')),
993 execute: function() {
994 if (this.validate()) {
996 var query = "?op=rpc&method=verifyRegexp®_exp=" +
997 param_escape(dialog.attr('value').reg_exp);
999 notify_progress("Verifying regular expression...");
1001 new Ajax.Request("backend.php", {
1003 onComplete: function(transport) {
1004 var reply = JSON.parse(transport.responseText);
1009 if (!reply['status']) {
1010 alert("Invalid regular expression.");
1013 notify_progress("Saving data...", true);
1015 console.log(dojo.objectToQuery(dialog.attr('value')));
1017 new Ajax.Request("backend.php", {
1018 parameters: dojo.objectToQuery(dialog.attr('value')),
1019 onComplete: function(transport) {
1021 notify_info(transport.responseText);
1022 if (inPreferences()) {
1035 var lh = dojo.connect(dialog, "onLoad",
1037 dojo.disconnect(lh);
1038 var title = $("PTITLE-FULL-" + active_post_id);
1041 $("filterDlg_regExp").value = title.innerHTML;
1046 exception_error("quickAddFilter", e);
1050 function resetPubSub(feed_id, title) {
1052 var msg = __("Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update.").replace("%s", title);
1054 if (title == undefined || confirm(msg)) {
1055 notify_progress("Loading, please wait...");
1057 var query = "?op=pref-feeds&quiet=1&method=resetPubSub&ids=" + feed_id;
1059 new Ajax.Request("backend.php", {
1061 onComplete: function(transport) {
1062 dijit.byId("pubsubReset_Btn").attr('disabled', true);
1063 notify_info("Subscription reset.");
1071 function unsubscribeFeed(feed_id, title) {
1073 var msg = __("Unsubscribe from %s?").replace("%s", title);
1075 if (title == undefined || confirm(msg)) {
1076 notify_progress("Removing feed...");
1078 var query = "?op=pref-feeds&quiet=1&method=remove&ids=" + feed_id;
1080 new Ajax.Request("backend.php", {
1082 onComplete: function(transport) {
1084 if (dijit.byId("feedEditDlg")) dijit.byId("feedEditDlg").hide();
1086 if (inPreferences()) {
1089 if (feed_id == getActiveFeedId())
1090 setTimeout("viewfeed(-5)", 100);
1100 function backend_sanity_check_callback(transport) {
1104 if (sanity_check_done) {
1105 fatalError(11, "Sanity check request received twice. This can indicate "+
1106 "presence of Firebug or some other disrupting extension. "+
1107 "Please disable it and try again.");
1111 var reply = JSON.parse(transport.responseText);
1114 fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
1118 var error_code = reply['error']['code'];
1120 if (error_code && error_code != 0) {
1121 return fatalError(error_code, reply['error']['message']);
1124 console.log("sanity check ok");
1126 var params = reply['init-params'];
1129 console.log('reading init-params...');
1134 console.log("IP: " + k + " => " + v);
1138 init_params = params;
1141 sanity_check_done = true;
1143 init_second_stage();
1146 exception_error("backend_sanity_check_callback", e, transport);
1150 /*function has_local_storage() {
1152 return 'sessionStorage' in window && window['sessionStorage'] != null;
1158 function catSelectOnChange(elem) {
1160 /* var value = elem[elem.selectedIndex].value;
1161 var def = elem.getAttribute('default');
1163 if (value == "ADD_CAT") {
1166 dropboxSelect(elem, def);
1168 elem.selectedIndex = 0;
1174 exception_error("catSelectOnChange", e);
1178 function quickAddCat(elem) {
1180 var cat = prompt(__("Please enter category title:"));
1184 var query = "?op=rpc&method=quickAddCat&cat=" + param_escape(cat);
1186 notify_progress("Loading, please wait...", true);
1188 new Ajax.Request("backend.php", {
1190 onComplete: function (transport) {
1191 var response = transport.responseXML;
1192 var select = response.getElementsByTagName("select")[0];
1193 var options = select.getElementsByTagName("option");
1195 dropbox_replace_options(elem, options);
1204 exception_error("quickAddCat", e);
1208 function genUrlChangeKey(feed, is_cat) {
1211 var ok = confirm(__("Generate new syndication address for this feed?"));
1215 notify_progress("Trying to change address...", true);
1217 var query = "?op=rpc&method=regenFeedKey&id=" + param_escape(feed) +
1218 "&is_cat=" + param_escape(is_cat);
1220 new Ajax.Request("backend.php", {
1222 onComplete: function(transport) {
1223 var reply = JSON.parse(transport.responseText);
1224 var new_link = reply.link;
1226 var e = $('gen_feed_url');
1230 e.innerHTML = e.innerHTML.replace(/\&key=.*$/,
1231 "&key=" + new_link);
1233 e.href = e.href.replace(/\&key=.*$/,
1234 "&key=" + new_link);
1236 new Effect.Highlight(e);
1241 notify_error("Could not change feed URL.");
1246 exception_error("genUrlChangeKey", e);
1251 function labelSelectOnChange(elem) {
1253 /* var value = elem[elem.selectedIndex].value;
1254 var def = elem.getAttribute('default');
1256 if (value == "ADD_LABEL") {
1259 dropboxSelect(elem, def);
1261 elem.selectedIndex = 0;
1263 addLabel(elem, function(transport) {
1267 var response = transport.responseXML;
1268 var select = response.getElementsByTagName("select")[0];
1269 var options = select.getElementsByTagName("option");
1271 dropbox_replace_options(elem, options);
1275 exception_error("addLabel", e);
1281 exception_error("labelSelectOnChange", e);
1285 function dropbox_replace_options(elem, options) {
1288 while (elem.hasChildNodes())
1289 elem.removeChild(elem.firstChild);
1293 for (var i = 0; i < options.length; i++) {
1294 var text = options[i].firstChild.nodeValue;
1295 var value = options[i].getAttribute("value");
1297 if (value == undefined) value = text;
1299 var issel = options[i].getAttribute("selected") == "1";
1301 var option = new Option(text, value, issel);
1303 if (options[i].getAttribute("disabled"))
1304 option.setAttribute("disabled", true);
1306 elem.insert(option);
1308 if (issel) sel_idx = i;
1311 // Chrome doesn't seem to just select stuff when you pass new Option(x, y, true)
1312 if (sel_idx >= 0) elem.selectedIndex = sel_idx;
1315 exception_error("dropbox_replace_options", e);
1319 // mode = all, none, invert
1320 function selectTableRows(id, mode) {
1322 var rows = $(id).rows;
1324 for (var i = 0; i < rows.length; i++) {
1329 if (row.id && row.className) {
1330 var bare_id = row.id.replace(/^[A-Z]*?-/, "");
1331 var inputs = rows[i].getElementsByTagName("input");
1333 for (var j = 0; j < inputs.length; j++) {
1334 var input = inputs[j];
1336 if (input.getAttribute("type") == "checkbox" &&
1337 input.id.match(bare_id)) {
1340 dcb = dijit.getEnclosingWidget(cb);
1346 var issel = row.hasClassName("Selected");
1348 if (mode == "all" && !issel) {
1349 row.addClassName("Selected");
1351 if (dcb) dcb.set("checked", true);
1352 } else if (mode == "none" && issel) {
1353 row.removeClassName("Selected");
1355 if (dcb) dcb.set("checked", false);
1357 } else if (mode == "invert") {
1360 row.removeClassName("Selected");
1362 if (dcb) dcb.set("checked", false);
1364 row.addClassName("Selected");
1366 if (dcb) dcb.set("checked", true);
1374 exception_error("selectTableRows", e);
1379 function getSelectedTableRowIds(id) {
1383 var elem_rows = $(id).rows;
1385 for (var i = 0; i < elem_rows.length; i++) {
1386 if (elem_rows[i].hasClassName("Selected")) {
1387 var bare_id = elem_rows[i].id.replace(/^[A-Z]*?-/, "");
1393 exception_error("getSelectedTableRowIds", e);
1399 function editFeed(feed, event) {
1402 return alert(__("You can't edit this kind of feed."));
1404 var query = "backend.php?op=pref-feeds&method=editfeed&id=" +
1409 if (dijit.byId("filterEditDlg"))
1410 dijit.byId("filterEditDlg").destroyRecursive();
1412 if (dijit.byId("feedEditDlg"))
1413 dijit.byId("feedEditDlg").destroyRecursive();
1415 dialog = new dijit.Dialog({
1417 title: __("Edit Feed"),
1418 style: "width: 600px",
1419 execute: function() {
1420 if (this.validate()) {
1421 // console.log(dojo.objectToQuery(this.attr('value')));
1423 notify_progress("Saving data...", true);
1425 new Ajax.Request("backend.php", {
1426 parameters: dojo.objectToQuery(dialog.attr('value')),
1427 onComplete: function(transport) {
1439 exception_error("editFeed", e);
1443 function feedBrowser() {
1445 var query = "backend.php?op=dlg&method=feedBrowser";
1447 if (dijit.byId("feedAddDlg"))
1448 dijit.byId("feedAddDlg").hide();
1450 if (dijit.byId("feedBrowserDlg"))
1451 dijit.byId("feedBrowserDlg").destroyRecursive();
1453 var dialog = new dijit.Dialog({
1454 id: "feedBrowserDlg",
1455 title: __("More Feeds"),
1456 style: "width: 600px",
1457 getSelectedFeedIds: function() {
1458 var list = $$("#browseFeedList li[id*=FBROW]");
1459 var selected = new Array();
1461 list.each(function(child) {
1462 var id = child.id.replace("FBROW-", "");
1464 if (child.hasClassName('Selected')) {
1471 getSelectedFeeds: function() {
1472 var list = $$("#browseFeedList li.Selected");
1473 var selected = new Array();
1475 list.each(function(child) {
1476 var title = child.getElementsBySelector("span.fb_feedTitle")[0].innerHTML;
1477 var url = child.getElementsBySelector("a.fb_feedUrl")[0].href;
1479 selected.push([title,url]);
1486 subscribe: function() {
1487 var mode = this.attr('value').mode;
1491 selected = this.getSelectedFeeds();
1493 selected = this.getSelectedFeedIds();
1495 if (selected.length > 0) {
1496 dijit.byId("feedBrowserDlg").hide();
1498 notify_progress("Loading, please wait...", true);
1500 // we use dojo.toJson instead of JSON.stringify because
1501 // it somehow escapes everything TWICE, at least in Chrome 9
1503 var query = "?op=rpc&method=massSubscribe&payload="+
1504 param_escape(dojo.toJson(selected)) + "&mode=" + param_escape(mode);
1508 new Ajax.Request("backend.php", {
1510 onComplete: function(transport) {
1516 alert(__("No feeds are selected."));
1520 update: function() {
1521 var query = dojo.objectToQuery(dialog.attr('value'));
1523 Element.show('feed_browser_spinner');
1525 new Ajax.Request("backend.php", {
1527 onComplete: function(transport) {
1530 Element.hide('feed_browser_spinner');
1532 var c = $("browseFeedList");
1534 var reply = JSON.parse(transport.responseText);
1536 var r = reply['content'];
1537 var mode = reply['mode'];
1543 dojo.parser.parse("browseFeedList");
1546 Element.show(dijit.byId('feed_archive_remove').domNode);
1548 Element.hide(dijit.byId('feed_archive_remove').domNode);
1553 removeFromArchive: function() {
1554 var selected = this.getSelectedFeeds();
1556 if (selected.length > 0) {
1558 var pr = __("Remove selected feeds from the archive? Feeds with stored articles will not be removed.");
1561 Element.show('feed_browser_spinner');
1563 var query = "?op=rpc&method=remarchived&ids=" +
1564 param_escape(selected.toString());;
1566 new Ajax.Request("backend.php", {
1568 onComplete: function(transport) {
1574 execute: function() {
1575 if (this.validate()) {
1584 exception_error("editFeed", e);
1588 function showFeedsWithErrors() {
1590 var query = "backend.php?op=dlg&method=feedsWithErrors";
1592 if (dijit.byId("errorFeedsDlg"))
1593 dijit.byId("errorFeedsDlg").destroyRecursive();
1595 dialog = new dijit.Dialog({
1596 id: "errorFeedsDlg",
1597 title: __("Feeds with update errors"),
1598 style: "width: 600px",
1599 getSelectedFeeds: function() {
1600 return getSelectedTableRowIds("prefErrorFeedList");
1602 removeSelected: function() {
1603 var sel_rows = this.getSelectedFeeds();
1605 console.log(sel_rows);
1607 if (sel_rows.length > 0) {
1608 var ok = confirm(__("Remove selected feeds?"));
1611 notify_progress("Removing selected feeds...", true);
1613 var query = "?op=pref-feeds&method=remove&ids="+
1614 param_escape(sel_rows.toString());
1616 new Ajax.Request("backend.php", {
1618 onComplete: function(transport) {
1626 alert(__("No feeds are selected."));
1629 execute: function() {
1630 if (this.validate()) {
1638 exception_error("showFeedsWithErrors", e);
1643 /* new support functions for SelectByTag */
1645 function get_all_tags(selObj){
1647 if( !selObj ) return "";
1650 var len = selObj.options.length;
1652 for (var i=0; i < len; i++){
1653 if (selObj.options[i].selected) {
1654 result += selObj[i].value + "%2C"; // is really a comma
1658 if (result.length > 0){
1659 result = result.substr(0, result.length-3); // remove trailing %2C
1665 exception_error("get_all_tags", e);
1669 function get_radio_checked(radioObj) {
1671 if (!radioObj) return "";
1673 var len = radioObj.length;
1675 if (len == undefined){
1676 if(radioObj.checked){
1677 return(radioObj.value);
1683 for( var i=0; i < len; i++ ){
1684 if( radioObj[i].checked ){
1685 return( radioObj[i].value);
1690 exception_error("get_radio_checked", e);
1695 function get_timestamp() {
1696 var date = new Date();
1697 return Math.round(date.getTime() / 1000);