1 var loading_progress = 0;
2 var sanity_check_done = false;
4 var _label_base_index = -1024;
5 var notify_hide_timerid = false;
7 Ajax.Base.prototype.initialize = Ajax.Base.prototype.initialize.wrap(
8 function (callOriginal, options) {
10 if (getInitParam("csrf_token") != undefined) {
11 Object.extend(options, options || { });
13 if (Object.isString(options.parameters))
14 options.parameters = options.parameters.toQueryParams();
15 else if (Object.isHash(options.parameters))
16 options.parameters = options.parameters.toObject();
18 options.parameters["csrf_token"] = getInitParam("csrf_token");
21 return callOriginal(options);
25 /* add method to remove element from array */
27 Array.prototype.remove = function(s) {
28 for (var i=0; i < this.length; i++) {
29 if (s == this[i]) this.splice(i, 1);
33 /* create console.log if it doesn't exist */
35 if (!window.console) console = {};
36 console.log = console.log || function(msg) { };
37 console.warn = console.warn || function(msg) { };
38 console.error = console.error || function(msg) { };
40 function exception_error(location, e, ext_info) {
41 var msg = format_exception_error(location, e);
43 if (!ext_info) ext_info = false;
48 ext_info = JSON.stringify(ext_info);
51 new Ajax.Request("backend.php", {
52 parameters: {op: "rpc", method: "log", logmsg: msg},
53 onComplete: function (transport) {
54 console.log(transport.responseText);
58 console.log("Exception while trying to log the error.");
62 msg += "<p>"+ __("The error will be reported to the configured log destination.") +
65 var content = "<div class=\"fatalError\">" +
66 "<pre>" + msg + "</pre>";
68 content += "<form name=\"exceptionForm\" id=\"exceptionForm\" target=\"_blank\" "+
69 "action=\"http://tt-rss.org/report.php\" method=\"POST\">";
71 content += "<textarea style=\"display : none\" name=\"message\">" + msg + "</textarea>";
72 content += "<textarea style=\"display : none\" name=\"params\">N/A</textarea>";
75 content += "<div><b>Additional information:</b></div>" +
76 "<textarea name=\"xinfo\" readonly=\"1\">" + ext_info + "</textarea>";
79 content += "<div><b>Stack trace:</b></div>" +
80 "<textarea name=\"stack\" readonly=\"1\">" + e.stack + "</textarea>";
86 content += "<div class='dlgButtons'>";
88 content += "<button dojoType=\"dijit.form.Button\""+
89 "onclick=\"dijit.byId('exceptionDlg').report()\">" +
90 __('Report to tt-rss.org') + "</button> ";
91 content += "<button dojoType=\"dijit.form.Button\" "+
92 "onclick=\"dijit.byId('exceptionDlg').hide()\">" +
93 __('Close') + "</button>";
96 if (dijit.byId("exceptionDlg"))
97 dijit.byId("exceptionDlg").destroyRecursive();
99 var dialog = new dijit.Dialog({
101 title: "Unhandled exception",
102 style: "width: 600px",
104 if (confirm(__("Are you sure to report this exception to tt-rss.org? The report will include information about your web browser and tt-rss configuration. Your IP will be saved in the database."))) {
106 document.forms['exceptionForm'].params.value = $H({
107 browserName: navigator.appName,
108 browserVersion: navigator.appVersion,
109 browserPlatform: navigator.platform,
110 browserCookies: navigator.cookieEnabled,
111 ttrssVersion: __ttrss_version,
112 initParams: JSON.stringify(init_params),
115 document.forms['exceptionForm'].submit();
124 console.log("Exception while trying to report an exception. Oh boy.");
126 console.log("Original exception:");
129 msg += "\n\nAdditional exception caught while trying to show the error dialog.\n\n" + format_exception_error('exception_error', ei);
132 new Ajax.Request("backend.php", {
133 parameters: {op: "rpc", method: "log", logmsg: msg},
134 onComplete: function (transport) {
135 console.log(transport.responseText);
139 console.log("Third exception while trying to log the error! Seriously?");
143 msg += "\n\nThe error will be reported to the configured log destination.";
150 function format_exception_error(location, e) {
154 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
156 msg = "Exception: " + e.name + ", " + e.message +
157 "\nFunction: " + location + "()" +
158 "\nLocation: " + base_fname + ":" + e.lineNumber;
160 } else if (e.description) {
161 msg = "Exception: " + e.description + "\nFunction: " + location + "()";
163 msg = "Exception: " + e + "\nFunction: " + location + "()";
166 console.error("EXCEPTION: " + msg);
171 function param_escape(arg) {
172 if (typeof encodeURIComponent != 'undefined')
173 return encodeURIComponent(arg);
178 function param_unescape(arg) {
179 if (typeof decodeURIComponent != 'undefined')
180 return decodeURIComponent(arg);
182 return unescape(arg);
185 function notify_real(msg, no_hide, n_type) {
191 if (notify_hide_timerid) {
192 window.clearTimeout(notify_hide_timerid);
196 if (n.hasClassName("visible")) {
197 notify_hide_timerid = window.setTimeout(function() {
198 n.removeClassName("visible") }, 0);
212 msg = "<span class=\"msg\"> " + __(msg) + "</span>";
215 msg = "<span><img src='images/indicator_white.gif'></span>" + msg;
217 } else if (n_type == 3) {
218 msg = "<span><img src='images/alert.png'></span>" + msg;
219 } else if (n_type == 4) {
220 msg = "<span><img src='images/information.png'></span>" + msg;
223 msg += " <span><img src=\"images/cross.png\" class=\"close\" title=\"" +
224 __("Click to close") + "\" onclick=\"notify('')\"></span>";
228 window.setTimeout(function() {
231 n.className = "notify notify_progress visible";
232 } else if (n_type == 3) {
233 n.className = "notify notify_error visible";
234 msg = "<span><img src='images/alert.png'></span>" + msg;
235 } else if (n_type == 4) {
236 n.className = "notify notify_info visible";
238 n.className = "notify visible";
242 notify_hide_timerid = window.setTimeout(function() {
243 n.removeClassName("visible") }, 5*1000);
250 function notify(msg, no_hide) {
251 notify_real(msg, no_hide, 1);
254 function notify_progress(msg, no_hide) {
255 notify_real(msg, no_hide, 2);
258 function notify_error(msg, no_hide) {
259 notify_real(msg, no_hide, 3);
263 function notify_info(msg, no_hide) {
264 notify_real(msg, no_hide, 4);
267 function setCookie(name, value, lifetime, path, domain, secure) {
273 d.setTime(d.getTime() + (lifetime * 1000));
276 console.log("setCookie: " + name + " => " + value + ": " + d);
278 int_setCookie(name, value, d, path, domain, secure);
282 function int_setCookie(name, value, expires, path, domain, secure) {
283 document.cookie= name + "=" + escape(value) +
284 ((expires) ? "; expires=" + expires.toGMTString() : "") +
285 ((path) ? "; path=" + path : "") +
286 ((domain) ? "; domain=" + domain : "") +
287 ((secure) ? "; secure" : "");
290 function delCookie(name, path, domain) {
291 if (getCookie(name)) {
292 document.cookie = name + "=" +
293 ((path) ? ";path=" + path : "") +
294 ((domain) ? ";domain=" + domain : "" ) +
295 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
300 function getCookie(name) {
302 var dc = document.cookie;
303 var prefix = name + "=";
304 var begin = dc.indexOf("; " + prefix);
306 begin = dc.indexOf(prefix);
307 if (begin != 0) return null;
312 var end = document.cookie.indexOf(";", begin);
316 return unescape(dc.substring(begin + prefix.length, end));
319 function gotoPreferences() {
320 document.location.href = "prefs.php";
323 function gotoLogout() {
324 document.location.href = "backend.php?op=logout";
327 function gotoMain() {
328 document.location.href = "index.php";
331 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
332 * * @author Sundar Dorai-Raj
333 * * Email: sdoraira@vt.edu
334 * * This program is free software; you can redistribute it and/or
335 * * modify it under the terms of the GNU General Public License
336 * * as published by the Free Software Foundation; either version 2
337 * * of the License, or (at your option) any later version,
338 * * provided that any use properly credits the author.
339 * * This program is distributed in the hope that it will be useful,
340 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
341 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
342 * * GNU General Public License for more details at http://www.gnu.org * * */
344 var numbers=".0123456789";
345 function isNumeric(x) {
346 // is x a String or a character?
348 // remove negative sign
350 for(var j=0;j<x.length;j++) {
351 // call isNumeric recursively for each character
352 number=isNumeric(x.substring(j,j+1));
353 if(!number) return number;
358 // if x is number return true
359 if(numbers.indexOf(x)>=0) return true;
365 function toggleSelectRowById(sender, id) {
367 return toggleSelectRow(sender, row);
370 function toggleSelectListRow(sender) {
371 var row = sender.parentNode;
372 return toggleSelectRow(sender, row);
375 /* this is for dijit Checkbox */
376 function toggleSelectListRow2(sender) {
377 var row = sender.domNode.parentNode;
378 return toggleSelectRow(sender, row);
381 /* this is for dijit Checkbox */
382 function toggleSelectRow2(sender, row, is_cdm) {
386 row = sender.domNode.parentNode.parentNode;
388 row = sender.domNode.parentNode.parentNode.parentNode; // oh ffs
390 if (sender.checked && !row.hasClassName('Selected'))
391 row.addClassName('Selected');
393 row.removeClassName('Selected');
395 if (typeof updateSelectedPrompt != undefined)
396 updateSelectedPrompt();
400 function toggleSelectRow(sender, row) {
402 if (!row) row = sender.parentNode.parentNode;
404 if (sender.checked && !row.hasClassName('Selected'))
405 row.addClassName('Selected');
407 row.removeClassName('Selected');
409 if (typeof updateSelectedPrompt != undefined)
410 updateSelectedPrompt();
413 function checkboxToggleElement(elem, id) {
415 Effect.Appear(id, {duration : 0.5});
417 Effect.Fade(id, {duration : 0.5});
421 function dropboxSelect(e, v) {
422 for (var i = 0; i < e.length; i++) {
423 if (e[i].value == v) {
430 function getURLParam(param){
431 return String(window.location.href).parseQuery()[param];
434 function closeInfoBox(cleanup) {
436 dialog = dijit.byId("infoBox");
438 if (dialog) dialog.hide();
441 //exception_error("closeInfoBox", e);
447 function displayDlg(title, id, param, callback) {
449 notify_progress("Loading, please wait...", true);
451 var query = "?op=dlg&method=" +
452 param_escape(id) + "¶m=" + param_escape(param);
454 new Ajax.Request("backend.php", {
456 onComplete: function (transport) {
457 infobox_callback2(transport, title);
458 if (callback) callback(transport);
464 function infobox_callback2(transport, title) {
468 if (dijit.byId("infoBox")) {
469 dialog = dijit.byId("infoBox");
472 //console.log("infobox_callback2");
475 var content = transport.responseText;
478 dialog = new dijit.Dialog({
481 style: "width: 600px",
482 onCancel: function() {
485 onExecute: function() {
488 onClose: function() {
493 dialog.attr('title', title);
494 dialog.attr('content', content);
501 exception_error("infobox_callback2", e);
505 function getInitParam(key) {
506 return init_params[key];
509 function setInitParam(key, value) {
510 init_params[key] = value;
513 function fatalError(code, msg, ext_info) {
517 window.location.href = "index.php";
518 } else if (code == 5) {
519 window.location.href = "public.php?op=dbupdate";
522 if (msg == "") msg = "Unknown error";
525 if (ext_info.responseText) {
526 ext_info = ext_info.responseText;
530 if (ERRORS && ERRORS[code] && !msg) {
534 var content = "<div><b>Error code:</b> " + code + "</div>" +
535 "<p>" + msg + "</p>";
538 content = content + "<div><b>Additional information:</b></div>" +
539 "<textarea style='width: 100%' readonly=\"1\">" +
540 ext_info + "</textarea>";
543 var dialog = new dijit.Dialog({
544 title: "Fatal error",
545 style: "width: 600px",
555 exception_error("fatalError", e);
559 function filterDlgCheckAction(sender) {
563 var action = sender.value;
565 var action_param = $("filterDlg_paramBox");
568 console.log("filterDlgCheckAction: can't find action param box!");
572 // if selected action supports parameters, enable params field
573 if (action == 4 || action == 6 || action == 7 || action == 9) {
574 new Effect.Appear(action_param, {duration : 0.5});
576 Element.hide(dijit.byId("filterDlg_actionParam").domNode);
577 Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
578 Element.hide(dijit.byId("filterDlg_actionParamPlugin").domNode);
581 Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
582 } else if (action == 9) {
583 Element.show(dijit.byId("filterDlg_actionParamPlugin").domNode);
585 Element.show(dijit.byId("filterDlg_actionParam").domNode);
589 Element.hide(action_param);
593 exception_error("filterDlgCheckAction", e);
599 function explainError(code) {
600 return displayDlg(__("Error explained"), "explainError", code);
603 function loading_set_progress(p) {
605 loading_progress += p;
607 if (dijit.byId("loading_bar"))
608 dijit.byId("loading_bar").update({progress: loading_progress});
610 if (loading_progress >= 90)
614 exception_error("loading_set_progress", e);
618 function remove_splash() {
620 if (Element.visible("overlay")) {
621 console.log("about to remove splash, OMG!");
622 Element.hide("overlay");
623 console.log("removed splash!");
627 function transport_error_check(transport) {
629 if (transport.responseXML) {
630 var error = transport.responseXML.getElementsByTagName("error")[0];
633 var code = error.getAttribute("error-code");
634 var msg = error.getAttribute("error-msg");
636 fatalError(code, msg);
642 exception_error("check_for_error_xml", e);
647 function strip_tags(s) {
648 return s.replace(/<\/?[^>]+(>|$)/g, "");
651 function truncate_string(s, length) {
652 if (!length) length = 30;
653 var tmp = s.substring(0, length);
654 if (s.length > length) tmp += "…";
658 function hotkey_prefix_timeout() {
661 var date = new Date();
662 var ts = Math.round(date.getTime() / 1000);
664 if (hotkey_prefix_pressed && ts - hotkey_prefix_pressed >= 5) {
665 console.log("hotkey_prefix seems to be stuck, aborting");
666 hotkey_prefix_pressed = false;
667 hotkey_prefix = false;
668 Element.hide('cmdline');
671 setTimeout(hotkey_prefix_timeout, 1000);
674 exception_error("hotkey_prefix_timeout", e);
678 function uploadIconHandler(rc) {
682 notify_info("Upload complete.");
683 if (inPreferences()) {
686 setTimeout('updateFeedList(false, false)', 50);
690 notify_error("Upload failed: icon is too big.");
693 notify_error("Upload failed.");
698 exception_error("uploadIconHandler", e);
702 function removeFeedIcon(id) {
706 if (confirm(__("Remove stored feed icon?"))) {
707 var query = "backend.php?op=pref-feeds&method=removeicon&feed_id=" + param_escape(id);
711 notify_progress("Removing feed icon...", true);
713 new Ajax.Request("backend.php", {
715 onComplete: function(transport) {
716 notify_info("Feed icon removed.");
717 if (inPreferences()) {
720 setTimeout('updateFeedList(false, false)', 50);
727 exception_error("removeFeedIcon", e);
731 function uploadFeedIcon() {
735 var file = $("icon_file");
737 if (file.value.length == 0) {
738 alert(__("Please select an image file to upload."));
740 if (confirm(__("Upload new icon for this feed?"))) {
741 notify_progress("Uploading, please wait...", true);
749 exception_error("uploadFeedIcon", e);
753 function addLabel(select, callback) {
757 var caption = prompt(__("Please enter label caption:"), "");
759 if (caption != undefined) {
762 alert(__("Can't create label: missing caption."));
766 var query = "?op=pref-labels&method=add&caption=" +
767 param_escape(caption);
770 query += "&output=select";
772 notify_progress("Loading, please wait...", true);
774 if (inPreferences() && !select) active_tab = "labelConfig";
776 new Ajax.Request("backend.php", {
778 onComplete: function(transport) {
781 } else if (inPreferences()) {
791 exception_error("addLabel", e);
795 function quickAddFeed() {
797 var query = "backend.php?op=feeds&method=quickAddFeed";
799 // overlapping widgets
800 if (dijit.byId("batchSubDlg")) dijit.byId("batchSubDlg").destroyRecursive();
801 if (dijit.byId("feedAddDlg")) dijit.byId("feedAddDlg").destroyRecursive();
803 var dialog = new dijit.Dialog({
805 title: __("Subscribe to Feed"),
806 style: "width: 600px",
807 execute: function() {
808 if (this.validate()) {
809 console.log(dojo.objectToQuery(this.attr('value')));
811 var feed_url = this.attr('value').feed;
813 Element.show("feed_add_spinner");
815 new Ajax.Request("backend.php", {
816 parameters: dojo.objectToQuery(this.attr('value')),
817 onComplete: function(transport) {
821 var reply = JSON.parse(transport.responseText);
823 Element.hide("feed_add_spinner");
824 alert(__("Failed to parse output. This can indicate server timeout and/or network issues. Backend output was logged to browser console."));
825 console.log('quickAddFeed, backend returned:' + transport.responseText);
829 var rc = reply['result'];
832 Element.hide("feed_add_spinner");
836 switch (parseInt(rc['code'])) {
839 notify_info(__("Subscribed to %s").replace("%s", feed_url));
844 alert(__("Specified URL seems to be invalid."));
847 alert(__("Specified URL doesn't seem to contain any feeds."));
852 Element.show("fadd_multiple_notify");
854 var select = dijit.byId("feedDlg_feedContainerSelect");
856 while (select.getOptions().length > 0)
857 select.removeOption(0);
859 select.addOption({value: '', label: __("Expand to select feed")});
862 for (var feedUrl in feeds) {
863 select.addOption({value: feedUrl, label: feeds[feedUrl]});
867 Effect.Appear('feedDlg_feedsContainer', {duration : 0.5});
871 alert(__("Couldn't download the specified URL: %s").
872 replace("%s", rc['message']));
875 alert(__("XML validation failed: %s").
876 replace("%s", rc['message']));
880 alert(__("You are already subscribed to this feed."));
885 exception_error("subscribeToFeed", e, transport);
896 exception_error("quickAddFeed", e);
900 function createNewRuleElement(parentNode, replaceNode) {
902 var form = document.forms["filter_new_rule_form"];
904 //form.reg_exp.value = form.reg_exp.value.replace(/(<([^>]+)>)/ig,"");
906 var query = "backend.php?op=pref-filters&method=printrulename&rule="+
907 param_escape(dojo.formToJson(form));
911 new Ajax.Request("backend.php", {
913 onComplete: function (transport) {
915 var li = dojo.create("li");
917 var cb = dojo.create("input", { type: "checkbox" }, li);
919 new dijit.form.CheckBox({
920 onChange: function() {
921 toggleSelectListRow2(this) },
924 dojo.create("input", { type: "hidden",
926 value: dojo.formToJson(form) }, li);
928 dojo.create("span", {
929 onclick: function() {
930 dijit.byId('filterEditDlg').editRule(this);
932 innerHTML: transport.responseText }, li);
935 parentNode.replaceChild(li, replaceNode);
937 parentNode.appendChild(li);
940 exception_error("createNewRuleElement", e);
944 exception_error("createNewRuleElement", e);
948 function createNewActionElement(parentNode, replaceNode) {
950 var form = document.forms["filter_new_action_form"];
952 if (form.action_id.value == 7) {
953 form.action_param.value = form.action_param_label.value;
954 } else if (form.action_id.value == 9) {
955 form.action_param.value = form.action_param_plugin.value;
958 var query = "backend.php?op=pref-filters&method=printactionname&action="+
959 param_escape(dojo.formToJson(form));
963 new Ajax.Request("backend.php", {
965 onComplete: function (transport) {
967 var li = dojo.create("li");
969 var cb = dojo.create("input", { type: "checkbox" }, li);
971 new dijit.form.CheckBox({
972 onChange: function() {
973 toggleSelectListRow2(this) },
976 dojo.create("input", { type: "hidden",
978 value: dojo.formToJson(form) }, li);
980 dojo.create("span", {
981 onclick: function() {
982 dijit.byId('filterEditDlg').editAction(this);
984 innerHTML: transport.responseText }, li);
987 parentNode.replaceChild(li, replaceNode);
989 parentNode.appendChild(li);
993 exception_error("createNewActionElement", e);
997 exception_error("createNewActionElement", e);
1002 function addFilterRule(replaceNode, ruleStr) {
1004 if (dijit.byId("filterNewRuleDlg"))
1005 dijit.byId("filterNewRuleDlg").destroyRecursive();
1007 var query = "backend.php?op=pref-filters&method=newrule&rule=" +
1008 param_escape(ruleStr);
1010 var rule_dlg = new dijit.Dialog({
1011 id: "filterNewRuleDlg",
1012 title: ruleStr ? __("Edit rule") : __("Add rule"),
1013 style: "width: 600px",
1014 execute: function() {
1015 if (this.validate()) {
1016 createNewRuleElement($("filterDlg_Matches"), replaceNode);
1024 exception_error("addFilterRule", e);
1028 function addFilterAction(replaceNode, actionStr) {
1030 if (dijit.byId("filterNewActionDlg"))
1031 dijit.byId("filterNewActionDlg").destroyRecursive();
1033 var query = "backend.php?op=pref-filters&method=newaction&action=" +
1034 param_escape(actionStr);
1036 var rule_dlg = new dijit.Dialog({
1037 id: "filterNewActionDlg",
1038 title: actionStr ? __("Edit action") : __("Add action"),
1039 style: "width: 600px",
1040 execute: function() {
1041 if (this.validate()) {
1042 createNewActionElement($("filterDlg_Actions"), replaceNode);
1050 exception_error("addFilterAction", e);
1054 function editFilterTest(query) {
1057 if (dijit.byId("filterTestDlg"))
1058 dijit.byId("filterTestDlg").destroyRecursive();
1060 var test_dlg = new dijit.Dialog({
1061 id: "filterTestDlg",
1062 title: "Test Filter",
1063 style: "width: 600px",
1067 getTestResults: function(query, offset) {
1068 var updquery = query + "&offset=" + offset + "&limit=" + test_dlg.limit;
1070 console.log("getTestResults:" + offset);
1072 new Ajax.Request("backend.php", {
1073 parameters: updquery,
1074 onComplete: function (transport) {
1076 var result = JSON.parse(transport.responseText);
1078 if (result && dijit.byId("filterTestDlg") && dijit.byId("filterTestDlg").open) {
1079 test_dlg.results += result.size();
1081 console.log("got results:" + result.size());
1083 $("prefFilterProgressMsg").innerHTML = __("Looking for articles (%d processed, %f found)...")
1084 .replace("%f", test_dlg.results)
1085 .replace("%d", offset);
1087 console.log(offset + " " + test_dlg.max_offset);
1089 for (var i = 0; i < result.size(); i++) {
1090 var tmp = new Element("table");
1091 tmp.innerHTML = result[i];
1092 dojo.parser.parse(tmp);
1094 $("prefFilterTestResultList").innerHTML += tmp.innerHTML;
1097 if (test_dlg.results < 30 && offset < test_dlg.max_offset) {
1099 // get the next batch
1100 window.setTimeout(function () {
1101 test_dlg.getTestResults(query, offset + test_dlg.limit);
1107 Element.hide("prefFilterLoadingIndicator");
1109 if (test_dlg.results == 0) {
1110 $("prefFilterTestResultList").innerHTML = "<tr><td align='center'>No recent articles matching this filter have been found.</td></tr>";
1111 $("prefFilterProgressMsg").innerHTML = "Articles matching this filter:";
1113 $("prefFilterProgressMsg").innerHTML = __("Found %d articles matching this filter:")
1114 .replace("%d", test_dlg.results);
1119 } else if (!result) {
1120 console.log("getTestResults: can't parse results object");
1122 Element.hide("prefFilterLoadingIndicator");
1124 notify_error("Error while trying to get filter test results.");
1127 console.log("getTestResults: dialog closed, bailing out.");
1130 exception_error("editFilterTest/inner", e);
1137 dojo.connect(test_dlg, "onLoad", null, function(e) {
1138 test_dlg.getTestResults(query, 0);
1144 exception_error("editFilterTest", e);
1148 function quickAddFilter() {
1151 if (!inPreferences()) {
1152 query = "backend.php?op=pref-filters&method=newfilter&feed=" +
1153 param_escape(getActiveFeedId()) + "&is_cat=" +
1154 param_escape(activeFeedIsCat());
1156 query = "backend.php?op=pref-filters&method=newfilter";
1161 if (dijit.byId("feedEditDlg"))
1162 dijit.byId("feedEditDlg").destroyRecursive();
1164 if (dijit.byId("filterEditDlg"))
1165 dijit.byId("filterEditDlg").destroyRecursive();
1167 dialog = new dijit.Dialog({
1168 id: "filterEditDlg",
1169 title: __("Create Filter"),
1170 style: "width: 600px",
1172 var query = "backend.php?" + dojo.formToQuery("filter_new_form") + "&savemode=test";
1174 editFilterTest(query);
1176 selectRules: function(select) {
1177 $$("#filterDlg_Matches input[type=checkbox]").each(function(e) {
1180 e.parentNode.addClassName("Selected");
1182 e.parentNode.removeClassName("Selected");
1185 selectActions: function(select) {
1186 $$("#filterDlg_Actions input[type=checkbox]").each(function(e) {
1190 e.parentNode.addClassName("Selected");
1192 e.parentNode.removeClassName("Selected");
1196 editRule: function(e) {
1197 var li = e.parentNode;
1198 var rule = li.getElementsByTagName("INPUT")[1].value;
1199 addFilterRule(li, rule);
1201 editAction: function(e) {
1202 var li = e.parentNode;
1203 var action = li.getElementsByTagName("INPUT")[1].value;
1204 addFilterAction(li, action);
1206 addAction: function() { addFilterAction(); },
1207 addRule: function() { addFilterRule(); },
1208 deleteAction: function() {
1209 $$("#filterDlg_Actions li.[class*=Selected]").each(function(e) { e.parentNode.removeChild(e) });
1211 deleteRule: function() {
1212 $$("#filterDlg_Matches li.[class*=Selected]").each(function(e) { e.parentNode.removeChild(e) });
1214 execute: function() {
1215 if (this.validate()) {
1217 var query = dojo.formToQuery("filter_new_form");
1221 new Ajax.Request("backend.php", {
1223 onComplete: function (transport) {
1224 if (inPreferences()) {
1234 if (!inPreferences()) {
1235 var selectedText = getSelectionText();
1237 var lh = dojo.connect(dialog, "onLoad", function(){
1238 dojo.disconnect(lh);
1240 if (selectedText != "") {
1242 var feed_id = activeFeedIsCat() ? 'CAT:' + parseInt(getActiveFeedId()) :
1245 var rule = { reg_exp: selectedText, feed_id: feed_id, filter_type: 1 };
1247 addFilterRule(null, dojo.toJson(rule));
1251 var query = "op=rpc&method=getlinktitlebyid&id=" + getActiveArticleId();
1253 new Ajax.Request("backend.php", {
1255 onComplete: function(transport) {
1256 var reply = JSON.parse(transport.responseText);
1260 if (reply && reply) title = reply.title;
1262 if (title || getActiveFeedId() || activeFeedIsCat()) {
1264 console.log(title + " " + getActiveFeedId());
1266 var feed_id = activeFeedIsCat() ? 'CAT:' + parseInt(getActiveFeedId()) :
1269 var rule = { reg_exp: title, feed_id: feed_id, filter_type: 1 };
1271 addFilterRule(null, dojo.toJson(rule));
1284 exception_error("quickAddFilter", e);
1288 function resetPubSub(feed_id, title) {
1290 var msg = __("Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update.").replace("%s", title);
1292 if (title == undefined || confirm(msg)) {
1293 notify_progress("Loading, please wait...");
1295 var query = "?op=pref-feeds&quiet=1&method=resetPubSub&ids=" + feed_id;
1297 new Ajax.Request("backend.php", {
1299 onComplete: function(transport) {
1300 dijit.byId("pubsubReset_Btn").attr('disabled', true);
1301 notify_info("Subscription reset.");
1309 function unsubscribeFeed(feed_id, title) {
1311 var msg = __("Unsubscribe from %s?").replace("%s", title);
1313 if (title == undefined || confirm(msg)) {
1314 notify_progress("Removing feed...");
1316 var query = "?op=pref-feeds&quiet=1&method=remove&ids=" + feed_id;
1318 new Ajax.Request("backend.php", {
1320 onComplete: function(transport) {
1322 if (dijit.byId("feedEditDlg")) dijit.byId("feedEditDlg").hide();
1324 if (inPreferences()) {
1327 if (feed_id == getActiveFeedId())
1328 setTimeout(function() { viewfeed({feed:-5}) }, 100);
1330 if (feed_id < 0) updateFeedList();
1340 function backend_sanity_check_callback(transport) {
1344 if (sanity_check_done) {
1345 fatalError(11, "Sanity check request received twice. This can indicate "+
1346 "presence of Firebug or some other disrupting extension. "+
1347 "Please disable it and try again.");
1351 var reply = JSON.parse(transport.responseText);
1354 fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
1358 var error_code = reply['error']['code'];
1360 if (error_code && error_code != 0) {
1361 return fatalError(error_code, reply['error']['message']);
1364 console.log("sanity check ok");
1366 var params = reply['init-params'];
1369 console.log('reading init-params...');
1372 console.log("IP: " + k + " => " + JSON.stringify(params[k]));
1373 if (k == "label_base_index") _label_base_index = parseInt(params[k]);
1376 init_params = params;
1378 // PluginHost might not be available on non-index pages
1379 window.PluginHost && PluginHost.run(PluginHost.HOOK_PARAMS_LOADED, init_params);
1382 sanity_check_done = true;
1384 init_second_stage();
1387 exception_error("backend_sanity_check_callback", e, transport);
1391 /*function has_local_storage() {
1393 return 'sessionStorage' in window && window['sessionStorage'] != null;
1399 function catSelectOnChange(elem) {
1401 /* var value = elem[elem.selectedIndex].value;
1402 var def = elem.getAttribute('default');
1404 if (value == "ADD_CAT") {
1407 dropboxSelect(elem, def);
1409 elem.selectedIndex = 0;
1415 exception_error("catSelectOnChange", e);
1419 function quickAddCat(elem) {
1421 var cat = prompt(__("Please enter category title:"));
1425 var query = "?op=rpc&method=quickAddCat&cat=" + param_escape(cat);
1427 notify_progress("Loading, please wait...", true);
1429 new Ajax.Request("backend.php", {
1431 onComplete: function (transport) {
1432 var response = transport.responseXML;
1433 var select = response.getElementsByTagName("select")[0];
1434 var options = select.getElementsByTagName("option");
1436 dropbox_replace_options(elem, options);
1445 exception_error("quickAddCat", e);
1449 function genUrlChangeKey(feed, is_cat) {
1452 var ok = confirm(__("Generate new syndication address for this feed?"));
1456 notify_progress("Trying to change address...", true);
1458 var query = "?op=pref-feeds&method=regenFeedKey&id=" + param_escape(feed) +
1459 "&is_cat=" + param_escape(is_cat);
1461 new Ajax.Request("backend.php", {
1463 onComplete: function(transport) {
1464 var reply = JSON.parse(transport.responseText);
1465 var new_link = reply.link;
1467 var e = $('gen_feed_url');
1471 e.innerHTML = e.innerHTML.replace(/\&key=.*$/,
1472 "&key=" + new_link);
1474 e.href = e.href.replace(/\&key=.*$/,
1475 "&key=" + new_link);
1477 new Effect.Highlight(e);
1482 notify_error("Could not change feed URL.");
1487 exception_error("genUrlChangeKey", e);
1492 function labelSelectOnChange(elem) {
1494 /* var value = elem[elem.selectedIndex].value;
1495 var def = elem.getAttribute('default');
1497 if (value == "ADD_LABEL") {
1500 dropboxSelect(elem, def);
1502 elem.selectedIndex = 0;
1504 addLabel(elem, function(transport) {
1508 var response = transport.responseXML;
1509 var select = response.getElementsByTagName("select")[0];
1510 var options = select.getElementsByTagName("option");
1512 dropbox_replace_options(elem, options);
1516 exception_error("addLabel", e);
1522 exception_error("labelSelectOnChange", e);
1526 function dropbox_replace_options(elem, options) {
1529 while (elem.hasChildNodes())
1530 elem.removeChild(elem.firstChild);
1534 for (var i = 0; i < options.length; i++) {
1535 var text = options[i].firstChild.nodeValue;
1536 var value = options[i].getAttribute("value");
1538 if (value == undefined) value = text;
1540 var issel = options[i].getAttribute("selected") == "1";
1542 var option = new Option(text, value, issel);
1544 if (options[i].getAttribute("disabled"))
1545 option.setAttribute("disabled", true);
1547 elem.insert(option);
1549 if (issel) sel_idx = i;
1552 // Chrome doesn't seem to just select stuff when you pass new Option(x, y, true)
1553 if (sel_idx >= 0) elem.selectedIndex = sel_idx;
1556 exception_error("dropbox_replace_options", e);
1560 // mode = all, none, invert
1561 function selectTableRows(id, mode) {
1563 var rows = $(id).rows;
1565 for (var i = 0; i < rows.length; i++) {
1570 if (row.id && row.className) {
1571 var bare_id = row.id.replace(/^[A-Z]*?-/, "");
1572 var inputs = rows[i].getElementsByTagName("input");
1574 for (var j = 0; j < inputs.length; j++) {
1575 var input = inputs[j];
1577 if (input.getAttribute("type") == "checkbox" &&
1578 input.id.match(bare_id)) {
1581 dcb = dijit.getEnclosingWidget(cb);
1587 var issel = row.hasClassName("Selected");
1589 if (mode == "all" && !issel) {
1590 row.addClassName("Selected");
1592 if (dcb) dcb.set("checked", true);
1593 } else if (mode == "none" && issel) {
1594 row.removeClassName("Selected");
1596 if (dcb) dcb.set("checked", false);
1598 } else if (mode == "invert") {
1601 row.removeClassName("Selected");
1603 if (dcb) dcb.set("checked", false);
1605 row.addClassName("Selected");
1607 if (dcb) dcb.set("checked", true);
1615 exception_error("selectTableRows", e);
1620 function getSelectedTableRowIds(id) {
1624 var elem_rows = $(id).rows;
1626 for (var i = 0; i < elem_rows.length; i++) {
1627 if (elem_rows[i].hasClassName("Selected")) {
1628 var bare_id = elem_rows[i].id.replace(/^[A-Z]*?-/, "");
1634 exception_error("getSelectedTableRowIds", e);
1640 function editFeed(feed, event) {
1643 return alert(__("You can't edit this kind of feed."));
1645 var query = "backend.php?op=pref-feeds&method=editfeed&id=" +
1650 if (dijit.byId("filterEditDlg"))
1651 dijit.byId("filterEditDlg").destroyRecursive();
1653 if (dijit.byId("feedEditDlg"))
1654 dijit.byId("feedEditDlg").destroyRecursive();
1656 dialog = new dijit.Dialog({
1658 title: __("Edit Feed"),
1659 style: "width: 600px",
1660 execute: function() {
1661 if (this.validate()) {
1662 // console.log(dojo.objectToQuery(this.attr('value')));
1664 notify_progress("Saving data...", true);
1666 new Ajax.Request("backend.php", {
1667 parameters: dojo.objectToQuery(dialog.attr('value')),
1668 onComplete: function(transport) {
1680 exception_error("editFeed", e);
1684 function feedBrowser() {
1686 var query = "backend.php?op=feeds&method=feedBrowser";
1688 if (dijit.byId("feedAddDlg"))
1689 dijit.byId("feedAddDlg").hide();
1691 if (dijit.byId("feedBrowserDlg"))
1692 dijit.byId("feedBrowserDlg").destroyRecursive();
1694 var dialog = new dijit.Dialog({
1695 id: "feedBrowserDlg",
1696 title: __("More Feeds"),
1697 style: "width: 600px",
1698 getSelectedFeedIds: function() {
1699 var list = $$("#browseFeedList li[id*=FBROW]");
1700 var selected = new Array();
1702 list.each(function(child) {
1703 var id = child.id.replace("FBROW-", "");
1705 if (child.hasClassName('Selected')) {
1712 getSelectedFeeds: function() {
1713 var list = $$("#browseFeedList li.Selected");
1714 var selected = new Array();
1716 list.each(function(child) {
1717 var title = child.getElementsBySelector("span.fb_feedTitle")[0].innerHTML;
1718 var url = child.getElementsBySelector("a.fb_feedUrl")[0].href;
1720 selected.push([title,url]);
1727 subscribe: function() {
1728 var mode = this.attr('value').mode;
1732 selected = this.getSelectedFeeds();
1734 selected = this.getSelectedFeedIds();
1736 if (selected.length > 0) {
1737 dijit.byId("feedBrowserDlg").hide();
1739 notify_progress("Loading, please wait...", true);
1741 // we use dojo.toJson instead of JSON.stringify because
1742 // it somehow escapes everything TWICE, at least in Chrome 9
1744 var query = "?op=rpc&method=massSubscribe&payload="+
1745 param_escape(dojo.toJson(selected)) + "&mode=" + param_escape(mode);
1749 new Ajax.Request("backend.php", {
1751 onComplete: function(transport) {
1757 alert(__("No feeds are selected."));
1761 update: function() {
1762 var query = dojo.objectToQuery(dialog.attr('value'));
1764 Element.show('feed_browser_spinner');
1766 new Ajax.Request("backend.php", {
1768 onComplete: function(transport) {
1771 Element.hide('feed_browser_spinner');
1773 var c = $("browseFeedList");
1775 var reply = JSON.parse(transport.responseText);
1777 var r = reply['content'];
1778 var mode = reply['mode'];
1784 dojo.parser.parse("browseFeedList");
1787 Element.show(dijit.byId('feed_archive_remove').domNode);
1789 Element.hide(dijit.byId('feed_archive_remove').domNode);
1794 removeFromArchive: function() {
1795 var selected = this.getSelectedFeedIds();
1797 if (selected.length > 0) {
1799 var pr = __("Remove selected feeds from the archive? Feeds with stored articles will not be removed.");
1802 Element.show('feed_browser_spinner');
1804 var query = "?op=rpc&method=remarchive&ids=" +
1805 param_escape(selected.toString());;
1807 new Ajax.Request("backend.php", {
1809 onComplete: function(transport) {
1815 execute: function() {
1816 if (this.validate()) {
1825 exception_error("editFeed", e);
1829 function showFeedsWithErrors() {
1831 var query = "backend.php?op=pref-feeds&method=feedsWithErrors";
1833 if (dijit.byId("errorFeedsDlg"))
1834 dijit.byId("errorFeedsDlg").destroyRecursive();
1836 dialog = new dijit.Dialog({
1837 id: "errorFeedsDlg",
1838 title: __("Feeds with update errors"),
1839 style: "width: 600px",
1840 getSelectedFeeds: function() {
1841 return getSelectedTableRowIds("prefErrorFeedList");
1843 removeSelected: function() {
1844 var sel_rows = this.getSelectedFeeds();
1846 console.log(sel_rows);
1848 if (sel_rows.length > 0) {
1849 var ok = confirm(__("Remove selected feeds?"));
1852 notify_progress("Removing selected feeds...", true);
1854 var query = "?op=pref-feeds&method=remove&ids="+
1855 param_escape(sel_rows.toString());
1857 new Ajax.Request("backend.php", {
1859 onComplete: function(transport) {
1867 alert(__("No feeds are selected."));
1870 execute: function() {
1871 if (this.validate()) {
1879 exception_error("showFeedsWithErrors", e);
1884 /* new support functions for SelectByTag */
1886 function get_all_tags(selObj){
1888 if( !selObj ) return "";
1891 var len = selObj.options.length;
1893 for (var i=0; i < len; i++){
1894 if (selObj.options[i].selected) {
1895 result += selObj[i].value + "%2C"; // is really a comma
1899 if (result.length > 0){
1900 result = result.substr(0, result.length-3); // remove trailing %2C
1906 exception_error("get_all_tags", e);
1910 function get_radio_checked(radioObj) {
1912 if (!radioObj) return "";
1914 var len = radioObj.length;
1916 if (len == undefined){
1917 if(radioObj.checked){
1918 return(radioObj.value);
1924 for( var i=0; i < len; i++ ){
1925 if( radioObj[i].checked ){
1926 return( radioObj[i].value);
1931 exception_error("get_radio_checked", e);
1936 function get_timestamp() {
1937 var date = new Date();
1938 return Math.round(date.getTime() / 1000);
1941 function helpDialog(topic) {
1943 var query = "backend.php?op=backend&method=help&topic=" + param_escape(topic);
1945 if (dijit.byId("helpDlg"))
1946 dijit.byId("helpDlg").destroyRecursive();
1948 dialog = new dijit.Dialog({
1951 style: "width: 600px",
1958 exception_error("helpDialog", e);
1962 function htmlspecialchars_decode (string, quote_style) {
1963 // http://kevin.vanzonneveld.net
1964 // + original by: Mirek Slugen
1965 // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
1966 // + bugfixed by: Mateusz "loonquawl" Zalega
1967 // + input by: ReverseSyntax
1968 // + input by: Slawomir Kaniecki
1969 // + input by: Scott Cariss
1970 // + input by: Francois
1971 // + bugfixed by: Onno Marsman
1972 // + revised by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
1973 // + bugfixed by: Brett Zamir (http://brett-zamir.me)
1974 // + input by: Ratheous
1975 // + input by: Mailfaker (http://www.weedem.fr/)
1976 // + reimplemented by: Brett Zamir (http://brett-zamir.me)
1977 // + bugfixed by: Brett Zamir (http://brett-zamir.me)
1978 // * example 1: htmlspecialchars_decode("<p>this -> "</p>", 'ENT_NOQUOTES');
1979 // * returns 1: '<p>this -> "</p>'
1980 // * example 2: htmlspecialchars_decode("&quot;");
1981 // * returns 2: '"'
1985 if (typeof quote_style === 'undefined') {
1988 string = string.toString().replace(/</g, '<').replace(/>/g, '>');
1991 'ENT_HTML_QUOTE_SINGLE': 1,
1992 'ENT_HTML_QUOTE_DOUBLE': 2,
1997 if (quote_style === 0) {
2000 if (typeof quote_style !== 'number') { // Allow for a single string or an array of string flags
2001 quote_style = [].concat(quote_style);
2002 for (i = 0; i < quote_style.length; i++) {
2003 // Resolve string input to bitwise e.g. 'PATHINFO_EXTENSION' becomes 4
2004 if (OPTS[quote_style[i]] === 0) {
2006 } else if (OPTS[quote_style[i]]) {
2007 optTemp = optTemp | OPTS[quote_style[i]];
2010 quote_style = optTemp;
2012 if (quote_style & OPTS.ENT_HTML_QUOTE_SINGLE) {
2013 string = string.replace(/�*39;/g, "'"); // PHP doesn't currently escape if more than one 0, but it should
2014 // string = string.replace(/'|�*27;/g, "'"); // This would also be useful here, but not a part of PHP
2017 string = string.replace(/"/g, '"');
2019 // Put this in last place to avoid escape being double-decoded
2020 string = string.replace(/&/g, '&');
2026 function label_to_feed_id(label) {
2027 return _label_base_index - 1 - Math.abs(label);
2030 function feed_to_label_id(feed) {
2031 return _label_base_index - 1 + Math.abs(feed);
2034 // http://stackoverflow.com/questions/6251937/how-to-get-selecteduser-highlighted-text-in-contenteditable-element-and-replac
2036 function getSelectionText() {
2039 if (typeof window.getSelection != "undefined") {
2040 var sel = window.getSelection();
2041 if (sel.rangeCount) {
2042 var container = document.createElement("div");
2043 for (var i = 0, len = sel.rangeCount; i < len; ++i) {
2044 container.appendChild(sel.getRangeAt(i).cloneContents());
2046 text = container.innerHTML;
2048 } else if (typeof document.selection != "undefined") {
2049 if (document.selection.type == "Text") {
2050 text = document.selection.createRange().textText;
2054 return text.stripTags();
2057 function openArticlePopup(id) {
2058 window.open("backend.php?op=article&method=view&mode=raw&html=1&zoom=1&id=" + id +
2059 "&csrf_token=" + getInitParam("csrf_token"),
2060 "ttrss_article_popup",
2061 "height=900,width=900,resizable=yes,status=no,location=no,menubar=no,directories=no,scrollbars=yes,toolbar=no");