]> git.wh0rd.org - tt-rss.git/blob - js/functions.js
better javascript error reporting, save error reports in tt-rss log
[tt-rss.git] / js / functions.js
1 var loading_progress = 0;
2 var sanity_check_done = false;
3 var init_params = {};
4 var _label_base_index = -1024;
5 var notify_hide_timerid = false;
6
7 Ajax.Base.prototype.initialize = Ajax.Base.prototype.initialize.wrap(
8 function (callOriginal, options) {
9
10 if (getInitParam("csrf_token") != undefined) {
11 Object.extend(options, options || { });
12
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();
17
18 options.parameters["csrf_token"] = getInitParam("csrf_token");
19 }
20
21 return callOriginal(options);
22 }
23 );
24
25 /* add method to remove element from array */
26
27 Array.prototype.remove = function(s) {
28 for (var i=0; i < this.length; i++) {
29 if (s == this[i]) this.splice(i, 1);
30 }
31 };
32
33 /* create console.log if it doesn't exist */
34
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) { };
39
40 function exception_error(location, e, ext_info) {
41 var msg = format_exception_error(location, e);
42
43 if (!ext_info) ext_info = false;
44
45 try {
46
47 if (ext_info) {
48 if (ext_info.responseText) {
49 ext_info = ext_info.responseText;
50 }
51 }
52
53 try {
54 new Ajax.Request("backend.php", {
55 parameters: {op: "rpc", method: "log", logmsg: msg},
56 onComplete: function (transport) {
57 console.log(transport.responseText);
58 } });
59
60 } catch (eii) {
61 console.log("Exception while trying to log the error.");
62 console.log(eii);
63 }
64
65 msg += "<p>"+ __("The error will be reported to the configured log destination.") +
66 "</p>";
67
68 var content = "<div class=\"fatalError\">" +
69 "<pre>" + msg + "</pre>";
70
71 content += "<form name=\"exceptionForm\" id=\"exceptionForm\" target=\"_blank\" "+
72 "action=\"http://tt-rss.org/report.php\" method=\"POST\">";
73
74 content += "<textarea style=\"display : none\" name=\"message\">" + msg + "</textarea>";
75 content += "<textarea style=\"display : none\" name=\"params\">N/A</textarea>";
76
77 if (ext_info) {
78 content += "<div><b>Additional information:</b></div>" +
79 "<textarea name=\"xinfo\" readonly=\"1\">" + ext_info + "</textarea>";
80 }
81
82 content += "<div><b>Stack trace:</b></div>" +
83 "<textarea name=\"stack\" readonly=\"1\">" + e.stack + "</textarea>";
84
85 content += "</form>";
86
87 content += "</div>";
88
89 content += "<div class='dlgButtons'>";
90
91 content += "<button dojoType=\"dijit.form.Button\""+
92 "onclick=\"dijit.byId('exceptionDlg').report()\">" +
93 __('Report to tt-rss.org') + "</button> ";
94 content += "<button dojoType=\"dijit.form.Button\" "+
95 "onclick=\"dijit.byId('exceptionDlg').hide()\">" +
96 __('Close') + "</button>";
97 content += "</div>";
98
99 if (dijit.byId("exceptionDlg"))
100 dijit.byId("exceptionDlg").destroyRecursive();
101
102 var dialog = new dijit.Dialog({
103 id: "exceptionDlg",
104 title: "Unhandled exception",
105 style: "width: 600px",
106 report: function() {
107 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."))) {
108
109 document.forms['exceptionForm'].params.value = $H({
110 browserName: navigator.appName,
111 browserVersion: navigator.appVersion,
112 browserPlatform: navigator.platform,
113 browserCookies: navigator.cookieEnabled,
114 }).toQueryString();
115
116 document.forms['exceptionForm'].submit();
117
118 }
119 },
120 content: content});
121
122 dialog.show();
123
124 } catch (ei) {
125 console.log("Exception while trying to report an exception. Oh boy.");
126 console.log(ei);
127 console.log("Original exception:");
128 console.log(e);
129
130 msg += "\n\nAdditional exception caught while trying to show the error dialog.\n\n" + format_exception_error('exception_error', ei);
131
132 try {
133 new Ajax.Request("backend.php", {
134 parameters: {op: "rpc", method: "log", logmsg: msg},
135 onComplete: function (transport) {
136 console.log(transport.responseText);
137 } });
138
139 } catch (eii) {
140 console.log("Third exception while trying to log the error! Seriously?");
141 console.log(eii);
142 }
143
144 msg += "\n\nThe error will be reported to the configured log destination.";
145
146 alert(msg);
147 }
148
149 }
150
151 function format_exception_error(location, e) {
152 var msg;
153
154 if (e.fileName) {
155 var base_fname = e.fileName.substring(e.fileName.lastIndexOf("/") + 1);
156
157 msg = "Exception: " + e.name + ", " + e.message +
158 "\nFunction: " + location + "()" +
159 "\nLocation: " + base_fname + ":" + e.lineNumber;
160
161 } else if (e.description) {
162 msg = "Exception: " + e.description + "\nFunction: " + location + "()";
163 } else {
164 msg = "Exception: " + e + "\nFunction: " + location + "()";
165 }
166
167 console.error("EXCEPTION: " + msg);
168
169 return msg;
170 }
171
172 function param_escape(arg) {
173 if (typeof encodeURIComponent != 'undefined')
174 return encodeURIComponent(arg);
175 else
176 return escape(arg);
177 }
178
179 function param_unescape(arg) {
180 if (typeof decodeURIComponent != 'undefined')
181 return decodeURIComponent(arg);
182 else
183 return unescape(arg);
184 }
185
186
187 function hide_notify() {
188 Element.hide('notify');
189 }
190
191 function notify_real(msg, no_hide, n_type) {
192
193 var n = $("notify");
194
195 if (!n) return;
196
197 if (notify_hide_timerid) {
198 window.clearTimeout(notify_hide_timerid);
199 }
200
201 if (msg == "") {
202 if (Element.visible(n)) {
203 notify_hide_timerid = window.setTimeout("hide_notify()", 0);
204 }
205 return;
206 } else {
207 Element.show(n);
208 }
209
210 /* types:
211
212 1 - generic
213 2 - progress
214 3 - error
215 4 - info
216
217 */
218
219 msg = "<span class=\"msg\"> " + __(msg) + "</span>";
220
221 if (n_type == 1) {
222 n.className = "notify";
223 } else if (n_type == 2) {
224 n.className = "notify progress";
225 msg = "<span><img src='images/indicator_white.gif'></span>" + msg;
226 no_hide = true;
227 } else if (n_type == 3) {
228 n.className = "notify error";
229 msg = "<span><img src='images/sign_excl.svg'></span>" + msg;
230 } else if (n_type == 4) {
231 n.className = "notify info";
232 msg = "<span><img src='images/sign_info.svg'></span>" + msg;
233 }
234
235 msg += " <span><img src=\"images/close_notify.svg\" class=\"close\" title=\"" +
236 __("Click to close") + "\" onclick=\"notify('')\"></span>";
237
238 // msg = "<img src='images/live_com_loading.gif'> " + msg;
239
240 n.innerHTML = msg;
241
242 if (!no_hide) {
243 notify_hide_timerid = window.setTimeout("hide_notify()", 5*1000);
244 }
245 }
246
247 function notify(msg, no_hide) {
248 notify_real(msg, no_hide, 1);
249 }
250
251 function notify_progress(msg, no_hide) {
252 notify_real(msg, no_hide, 2);
253 }
254
255 function notify_error(msg, no_hide) {
256 notify_real(msg, no_hide, 3);
257
258 }
259
260 function notify_info(msg, no_hide) {
261 notify_real(msg, no_hide, 4);
262 }
263
264 function setCookie(name, value, lifetime, path, domain, secure) {
265
266 var d = false;
267
268 if (lifetime) {
269 d = new Date();
270 d.setTime(d.getTime() + (lifetime * 1000));
271 }
272
273 console.log("setCookie: " + name + " => " + value + ": " + d);
274
275 int_setCookie(name, value, d, path, domain, secure);
276
277 }
278
279 function int_setCookie(name, value, expires, path, domain, secure) {
280 document.cookie= name + "=" + escape(value) +
281 ((expires) ? "; expires=" + expires.toGMTString() : "") +
282 ((path) ? "; path=" + path : "") +
283 ((domain) ? "; domain=" + domain : "") +
284 ((secure) ? "; secure" : "");
285 }
286
287 function delCookie(name, path, domain) {
288 if (getCookie(name)) {
289 document.cookie = name + "=" +
290 ((path) ? ";path=" + path : "") +
291 ((domain) ? ";domain=" + domain : "" ) +
292 ";expires=Thu, 01-Jan-1970 00:00:01 GMT";
293 }
294 }
295
296
297 function getCookie(name) {
298
299 var dc = document.cookie;
300 var prefix = name + "=";
301 var begin = dc.indexOf("; " + prefix);
302 if (begin == -1) {
303 begin = dc.indexOf(prefix);
304 if (begin != 0) return null;
305 }
306 else {
307 begin += 2;
308 }
309 var end = document.cookie.indexOf(";", begin);
310 if (end == -1) {
311 end = dc.length;
312 }
313 return unescape(dc.substring(begin + prefix.length, end));
314 }
315
316 function gotoPreferences() {
317 document.location.href = "prefs.php";
318 }
319
320 function gotoLogout() {
321 document.location.href = "backend.php?op=logout";
322 }
323
324 function gotoMain() {
325 document.location.href = "index.php";
326 }
327
328 /** * @(#)isNumeric.js * * Copyright (c) 2000 by Sundar Dorai-Raj
329 * * @author Sundar Dorai-Raj
330 * * Email: sdoraira@vt.edu
331 * * This program is free software; you can redistribute it and/or
332 * * modify it under the terms of the GNU General Public License
333 * * as published by the Free Software Foundation; either version 2
334 * * of the License, or (at your option) any later version,
335 * * provided that any use properly credits the author.
336 * * This program is distributed in the hope that it will be useful,
337 * * but WITHOUT ANY WARRANTY; without even the implied warranty of
338 * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
339 * * GNU General Public License for more details at http://www.gnu.org * * */
340
341 var numbers=".0123456789";
342 function isNumeric(x) {
343 // is x a String or a character?
344 if(x.length>1) {
345 // remove negative sign
346 x=Math.abs(x)+"";
347 for(var j=0;j<x.length;j++) {
348 // call isNumeric recursively for each character
349 number=isNumeric(x.substring(j,j+1));
350 if(!number) return number;
351 }
352 return number;
353 }
354 else {
355 // if x is number return true
356 if(numbers.indexOf(x)>=0) return true;
357 return false;
358 }
359 }
360
361
362 function toggleSelectRowById(sender, id) {
363 var row = $(id);
364 return toggleSelectRow(sender, row);
365 }
366
367 function toggleSelectListRow(sender) {
368 var row = sender.parentNode;
369 return toggleSelectRow(sender, row);
370 }
371
372 /* this is for dijit Checkbox */
373 function toggleSelectListRow2(sender) {
374 var row = sender.domNode.parentNode;
375 return toggleSelectRow(sender, row);
376 }
377
378 /* this is for dijit Checkbox */
379 function toggleSelectRow2(sender, row, is_cdm) {
380
381 if (!row)
382 if (!is_cdm)
383 row = sender.domNode.parentNode.parentNode;
384 else
385 row = sender.domNode.parentNode.parentNode.parentNode; // oh ffs
386
387 if (sender.checked && !row.hasClassName('Selected'))
388 row.addClassName('Selected');
389 else
390 row.removeClassName('Selected');
391
392 if (typeof updateSelectedPrompt != undefined)
393 updateSelectedPrompt();
394 }
395
396
397 function toggleSelectRow(sender, row) {
398
399 if (!row) row = sender.parentNode.parentNode;
400
401 if (sender.checked && !row.hasClassName('Selected'))
402 row.addClassName('Selected');
403 else
404 row.removeClassName('Selected');
405
406 if (typeof updateSelectedPrompt != undefined)
407 updateSelectedPrompt();
408 }
409
410 function checkboxToggleElement(elem, id) {
411 if (elem.checked) {
412 Effect.Appear(id, {duration : 0.5});
413 } else {
414 Effect.Fade(id, {duration : 0.5});
415 }
416 }
417
418 function dropboxSelect(e, v) {
419 for (var i = 0; i < e.length; i++) {
420 if (e[i].value == v) {
421 e.selectedIndex = i;
422 break;
423 }
424 }
425 }
426
427 function getURLParam(param){
428 return String(window.location.href).parseQuery()[param];
429 }
430
431 function closeInfoBox(cleanup) {
432 try {
433 dialog = dijit.byId("infoBox");
434
435 if (dialog) dialog.hide();
436
437 } catch (e) {
438 //exception_error("closeInfoBox", e);
439 }
440 return false;
441 }
442
443
444 function displayDlg(title, id, param, callback) {
445
446 notify_progress("Loading, please wait...", true);
447
448 var query = "?op=dlg&method=" +
449 param_escape(id) + "&param=" + param_escape(param);
450
451 new Ajax.Request("backend.php", {
452 parameters: query,
453 onComplete: function (transport) {
454 infobox_callback2(transport, title);
455 if (callback) callback(transport);
456 } });
457
458 return false;
459 }
460
461 function infobox_callback2(transport, title) {
462 try {
463 var dialog = false;
464
465 if (dijit.byId("infoBox")) {
466 dialog = dijit.byId("infoBox");
467 }
468
469 //console.log("infobox_callback2");
470 notify('');
471
472 var content = transport.responseText;
473
474 if (!dialog) {
475 dialog = new dijit.Dialog({
476 title: title,
477 id: 'infoBox',
478 style: "width: 600px",
479 onCancel: function() {
480 return true;
481 },
482 onExecute: function() {
483 return true;
484 },
485 onClose: function() {
486 return true;
487 },
488 content: content});
489 } else {
490 dialog.attr('title', title);
491 dialog.attr('content', content);
492 }
493
494 dialog.show();
495
496 notify("");
497 } catch (e) {
498 exception_error("infobox_callback2", e);
499 }
500 }
501
502 function filterCR(e, f)
503 {
504 var key;
505
506 if(window.event)
507 key = window.event.keyCode; //IE
508 else
509 key = e.which; //firefox
510
511 if (key == 13) {
512 if (typeof f != 'undefined') {
513 f();
514 return false;
515 } else {
516 return false;
517 }
518 } else {
519 return true;
520 }
521 }
522
523 function getInitParam(key) {
524 return init_params[key];
525 }
526
527 function setInitParam(key, value) {
528 init_params[key] = value;
529 }
530
531 function fatalError(code, msg, ext_info) {
532 try {
533
534 if (code == 6) {
535 window.location.href = "index.php";
536 } else if (code == 5) {
537 window.location.href = "public.php?op=dbupdate";
538 } else {
539
540 if (msg == "") msg = "Unknown error";
541
542 if (ext_info) {
543 if (ext_info.responseText) {
544 ext_info = ext_info.responseText;
545 }
546 }
547
548 if (ERRORS && ERRORS[code] && !msg) {
549 msg = ERRORS[code];
550 }
551
552 var content = "<div><b>Error code:</b> " + code + "</div>" +
553 "<p>" + msg + "</p>";
554
555 if (ext_info) {
556 content = content + "<div><b>Additional information:</b></div>" +
557 "<textarea style='width: 100%' readonly=\"1\">" +
558 ext_info + "</textarea>";
559 }
560
561 var dialog = new dijit.Dialog({
562 title: "Fatal error",
563 style: "width: 600px",
564 content: content});
565
566 dialog.show();
567
568 }
569
570 return false;
571
572 } catch (e) {
573 exception_error("fatalError", e);
574 }
575 }
576
577 function filterDlgCheckAction(sender) {
578
579 try {
580
581 var action = sender.value;
582
583 var action_param = $("filterDlg_paramBox");
584
585 if (!action_param) {
586 console.log("filterDlgCheckAction: can't find action param box!");
587 return;
588 }
589
590 // if selected action supports parameters, enable params field
591 if (action == 4 || action == 6 || action == 7) {
592 new Effect.Appear(action_param, {duration : 0.5});
593 if (action != 7) {
594 Element.show(dijit.byId("filterDlg_actionParam").domNode);
595 Element.hide(dijit.byId("filterDlg_actionParamLabel").domNode);
596 } else {
597 Element.show(dijit.byId("filterDlg_actionParamLabel").domNode);
598 Element.hide(dijit.byId("filterDlg_actionParam").domNode);
599 }
600 } else {
601 Element.hide(action_param);
602 }
603
604 } catch (e) {
605 exception_error("filterDlgCheckAction", e);
606 }
607
608 }
609
610
611 function explainError(code) {
612 return displayDlg(__("Error explained"), "explainError", code);
613 }
614
615 function loading_set_progress(p) {
616 try {
617 loading_progress += p;
618
619 if (dijit.byId("loading_bar"))
620 dijit.byId("loading_bar").update({progress: loading_progress});
621
622 if (loading_progress >= 90)
623 remove_splash();
624
625 } catch (e) {
626 exception_error("loading_set_progress", e);
627 }
628 }
629
630 function remove_splash() {
631
632 if (Element.visible("overlay")) {
633 console.log("about to remove splash, OMG!");
634 Element.hide("overlay");
635 console.log("removed splash!");
636 }
637 }
638
639 function transport_error_check(transport) {
640 try {
641 if (transport.responseXML) {
642 var error = transport.responseXML.getElementsByTagName("error")[0];
643
644 if (error) {
645 var code = error.getAttribute("error-code");
646 var msg = error.getAttribute("error-msg");
647 if (code != 0) {
648 fatalError(code, msg);
649 return false;
650 }
651 }
652 }
653 } catch (e) {
654 exception_error("check_for_error_xml", e);
655 }
656 return true;
657 }
658
659 function strip_tags(s) {
660 return s.replace(/<\/?[^>]+(>|$)/g, "");
661 }
662
663 function truncate_string(s, length) {
664 if (!length) length = 30;
665 var tmp = s.substring(0, length);
666 if (s.length > length) tmp += "&hellip;";
667 return tmp;
668 }
669
670 function hotkey_prefix_timeout() {
671 try {
672
673 var date = new Date();
674 var ts = Math.round(date.getTime() / 1000);
675
676 if (hotkey_prefix_pressed && ts - hotkey_prefix_pressed >= 5) {
677 console.log("hotkey_prefix seems to be stuck, aborting");
678 hotkey_prefix_pressed = false;
679 hotkey_prefix = false;
680 Element.hide('cmdline');
681 }
682
683 setTimeout("hotkey_prefix_timeout()", 1000);
684
685 } catch (e) {
686 exception_error("hotkey_prefix_timeout", e);
687 }
688 }
689
690 function uploadIconHandler(rc) {
691 try {
692 switch (rc) {
693 case 0:
694 notify_info("Upload complete.");
695 if (inPreferences()) {
696 updateFeedList();
697 } else {
698 setTimeout('updateFeedList(false, false)', 50);
699 }
700 break;
701 case 1:
702 notify_error("Upload failed: icon is too big.");
703 break;
704 case 2:
705 notify_error("Upload failed.");
706 break;
707 }
708
709 } catch (e) {
710 exception_error("uploadIconHandler", e);
711 }
712 }
713
714 function removeFeedIcon(id) {
715
716 try {
717
718 if (confirm(__("Remove stored feed icon?"))) {
719 var query = "backend.php?op=pref-feeds&method=removeicon&feed_id=" + param_escape(id);
720
721 console.log(query);
722
723 notify_progress("Removing feed icon...", true);
724
725 new Ajax.Request("backend.php", {
726 parameters: query,
727 onComplete: function(transport) {
728 notify_info("Feed icon removed.");
729 if (inPreferences()) {
730 updateFeedList();
731 } else {
732 setTimeout('updateFeedList(false, false)', 50);
733 }
734 } });
735 }
736
737 return false;
738 } catch (e) {
739 exception_error("removeFeedIcon", e);
740 }
741 }
742
743 function uploadFeedIcon() {
744
745 try {
746
747 var file = $("icon_file");
748
749 if (file.value.length == 0) {
750 alert(__("Please select an image file to upload."));
751 } else {
752 if (confirm(__("Upload new icon for this feed?"))) {
753 notify_progress("Uploading, please wait...", true);
754 return true;
755 }
756 }
757
758 return false;
759
760 } catch (e) {
761 exception_error("uploadFeedIcon", e);
762 }
763 }
764
765 function addLabel(select, callback) {
766
767 try {
768
769 var caption = prompt(__("Please enter label caption:"), "");
770
771 if (caption != undefined) {
772
773 if (caption == "") {
774 alert(__("Can't create label: missing caption."));
775 return false;
776 }
777
778 var query = "?op=pref-labels&method=add&caption=" +
779 param_escape(caption);
780
781 if (select)
782 query += "&output=select";
783
784 notify_progress("Loading, please wait...", true);
785
786 if (inPreferences() && !select) active_tab = "labelConfig";
787
788 new Ajax.Request("backend.php", {
789 parameters: query,
790 onComplete: function(transport) {
791 if (callback) {
792 callback(transport);
793 } else if (inPreferences()) {
794 updateLabelList();
795 } else {
796 updateFeedList();
797 }
798 } });
799
800 }
801
802 } catch (e) {
803 exception_error("addLabel", e);
804 }
805 }
806
807 function quickAddFeed() {
808 try {
809 var query = "backend.php?op=feeds&method=quickAddFeed";
810
811 // overlapping widgets
812 if (dijit.byId("batchSubDlg")) dijit.byId("batchSubDlg").destroyRecursive();
813 if (dijit.byId("feedAddDlg")) dijit.byId("feedAddDlg").destroyRecursive();
814
815 var dialog = new dijit.Dialog({
816 id: "feedAddDlg",
817 title: __("Subscribe to Feed"),
818 style: "width: 600px",
819 execute: function() {
820 if (this.validate()) {
821 console.log(dojo.objectToQuery(this.attr('value')));
822
823 var feed_url = this.attr('value').feed;
824
825 Element.show("feed_add_spinner");
826
827 new Ajax.Request("backend.php", {
828 parameters: dojo.objectToQuery(this.attr('value')),
829 onComplete: function(transport) {
830 try {
831
832 var reply = JSON.parse(transport.responseText);
833
834 var rc = reply['result'];
835
836 notify('');
837 Element.hide("feed_add_spinner");
838
839 console.log(rc);
840
841 switch (parseInt(rc['code'])) {
842 case 1:
843 dialog.hide();
844 notify_info(__("Subscribed to %s").replace("%s", feed_url));
845
846 updateFeedList();
847 break;
848 case 2:
849 alert(__("Specified URL seems to be invalid."));
850 break;
851 case 3:
852 alert(__("Specified URL doesn't seem to contain any feeds."));
853 break;
854 case 4:
855 feeds = rc['feeds'];
856
857 var select = dijit.byId("feedDlg_feedContainerSelect");
858
859 while (select.getOptions().length > 0)
860 select.removeOption(0);
861
862 select.addOption({value: '', label: __("Expand to select feed")});
863
864 var count = 0;
865 for (var feedUrl in feeds) {
866 select.addOption({value: feedUrl, label: feeds[feedUrl]});
867 count++;
868 }
869
870 Effect.Appear('feedDlg_feedsContainer', {duration : 0.5});
871
872 break;
873 case 5:
874 alert(__("Couldn't download the specified URL: %s").
875 replace("%s", rc['message']));
876 break;
877 case 6:
878 alert(__("XML validation failed: %s").
879 replace("%s", rc['message']));
880 break;
881 break;
882 case 0:
883 alert(__("You are already subscribed to this feed."));
884 break;
885 }
886
887 } catch (e) {
888 exception_error("subscribeToFeed", e, transport);
889 }
890
891 } });
892
893 }
894 },
895 href: query});
896
897 dialog.show();
898 } catch (e) {
899 exception_error("quickAddFeed", e);
900 }
901 }
902
903 function createNewRuleElement(parentNode, replaceNode) {
904 try {
905 var form = document.forms["filter_new_rule_form"];
906
907 form.reg_exp.value = form.reg_exp.value.replace(/(<([^>]+)>)/ig,"");
908
909 var query = "backend.php?op=pref-filters&method=printrulename&rule="+
910 param_escape(dojo.formToJson(form));
911
912 console.log(query);
913
914 new Ajax.Request("backend.php", {
915 parameters: query,
916 onComplete: function (transport) {
917 try {
918 var li = dojo.create("li");
919
920 var cb = dojo.create("input", { type: "checkbox" }, li);
921
922 new dijit.form.CheckBox({
923 onChange: function() {
924 toggleSelectListRow2(this) },
925 }, cb);
926
927 dojo.create("input", { type: "hidden",
928 name: "rule[]",
929 value: dojo.formToJson(form) }, li);
930
931 dojo.create("span", {
932 onclick: function() {
933 dijit.byId('filterEditDlg').editRule(this);
934 },
935 innerHTML: transport.responseText }, li);
936
937 if (replaceNode) {
938 parentNode.replaceChild(li, replaceNode);
939 } else {
940 parentNode.appendChild(li);
941 }
942 } catch (e) {
943 exception_error("createNewRuleElement", e);
944 }
945 } });
946 } catch (e) {
947 exception_error("createNewRuleElement", e);
948 }
949 }
950
951 function createNewActionElement(parentNode, replaceNode) {
952 try {
953 var form = document.forms["filter_new_action_form"];
954
955 if (form.action_id.value == 7) {
956 form.action_param.value = form.action_param_label.value;
957 }
958
959 var query = "backend.php?op=pref-filters&method=printactionname&action="+
960 param_escape(dojo.formToJson(form));
961
962 console.log(query);
963
964 new Ajax.Request("backend.php", {
965 parameters: query,
966 onComplete: function (transport) {
967 try {
968 var li = dojo.create("li");
969
970 var cb = dojo.create("input", { type: "checkbox" }, li);
971
972 new dijit.form.CheckBox({
973 onChange: function() {
974 toggleSelectListRow2(this) },
975 }, cb);
976
977 dojo.create("input", { type: "hidden",
978 name: "action[]",
979 value: dojo.formToJson(form) }, li);
980
981 dojo.create("span", {
982 onclick: function() {
983 dijit.byId('filterEditDlg').editAction(this);
984 },
985 innerHTML: transport.responseText }, li);
986
987 if (replaceNode) {
988 parentNode.replaceChild(li, replaceNode);
989 } else {
990 parentNode.appendChild(li);
991 }
992
993 } catch (e) {
994 exception_error("createNewActionElement", e);
995 }
996 } });
997 } catch (e) {
998 exception_error("createNewActionElement", e);
999 }
1000 }
1001
1002
1003 function addFilterRule(replaceNode, ruleStr) {
1004 try {
1005 if (dijit.byId("filterNewRuleDlg"))
1006 dijit.byId("filterNewRuleDlg").destroyRecursive();
1007
1008 var query = "backend.php?op=pref-filters&method=newrule&rule=" +
1009 param_escape(ruleStr);
1010
1011 var rule_dlg = new dijit.Dialog({
1012 id: "filterNewRuleDlg",
1013 title: ruleStr ? __("Edit rule") : __("Add rule"),
1014 style: "width: 600px",
1015 execute: function() {
1016 if (this.validate()) {
1017 createNewRuleElement($("filterDlg_Matches"), replaceNode);
1018 this.hide();
1019 }
1020 },
1021 href: query});
1022
1023 rule_dlg.show();
1024 } catch (e) {
1025 exception_error("addFilterRule", e);
1026 }
1027 }
1028
1029 function addFilterAction(replaceNode, actionStr) {
1030 try {
1031 if (dijit.byId("filterNewActionDlg"))
1032 dijit.byId("filterNewActionDlg").destroyRecursive();
1033
1034 var query = "backend.php?op=pref-filters&method=newaction&action=" +
1035 param_escape(actionStr);
1036
1037 var rule_dlg = new dijit.Dialog({
1038 id: "filterNewActionDlg",
1039 title: actionStr ? __("Edit action") : __("Add action"),
1040 style: "width: 600px",
1041 execute: function() {
1042 if (this.validate()) {
1043 createNewActionElement($("filterDlg_Actions"), replaceNode);
1044 this.hide();
1045 }
1046 },
1047 href: query});
1048
1049 rule_dlg.show();
1050 } catch (e) {
1051 exception_error("addFilterAction", e);
1052 }
1053 }
1054
1055 function quickAddFilter() {
1056 try {
1057 var query = "";
1058 if (!inPreferences()) {
1059 query = "backend.php?op=pref-filters&method=newfilter&feed=" +
1060 param_escape(getActiveFeedId()) + "&is_cat=" +
1061 param_escape(activeFeedIsCat());
1062 } else {
1063 query = "backend.php?op=pref-filters&method=newfilter";
1064 }
1065
1066 console.log(query);
1067
1068 if (dijit.byId("feedEditDlg"))
1069 dijit.byId("feedEditDlg").destroyRecursive();
1070
1071 if (dijit.byId("filterEditDlg"))
1072 dijit.byId("filterEditDlg").destroyRecursive();
1073
1074 dialog = new dijit.Dialog({
1075 id: "filterEditDlg",
1076 title: __("Create Filter"),
1077 style: "width: 600px",
1078 test: function() {
1079 var query = "backend.php?" + dojo.formToQuery("filter_new_form") + "&savemode=test";
1080
1081 if (dijit.byId("filterTestDlg"))
1082 dijit.byId("filterTestDlg").destroyRecursive();
1083
1084 var test_dlg = new dijit.Dialog({
1085 id: "filterTestDlg",
1086 title: "Test Filter",
1087 style: "width: 600px",
1088 href: query});
1089
1090 test_dlg.show();
1091 },
1092 selectRules: function(select) {
1093 $$("#filterDlg_Matches input[type=checkbox]").each(function(e) {
1094 e.checked = select;
1095 if (select)
1096 e.parentNode.addClassName("Selected");
1097 else
1098 e.parentNode.removeClassName("Selected");
1099 });
1100 },
1101 selectActions: function(select) {
1102 $$("#filterDlg_Actions input[type=checkbox]").each(function(e) {
1103 e.checked = select;
1104
1105 if (select)
1106 e.parentNode.addClassName("Selected");
1107 else
1108 e.parentNode.removeClassName("Selected");
1109
1110 });
1111 },
1112 editRule: function(e) {
1113 var li = e.parentNode;
1114 var rule = li.getElementsByTagName("INPUT")[1].value;
1115 addFilterRule(li, rule);
1116 },
1117 editAction: function(e) {
1118 var li = e.parentNode;
1119 var action = li.getElementsByTagName("INPUT")[1].value;
1120 addFilterAction(li, action);
1121 },
1122 addAction: function() { addFilterAction(); },
1123 addRule: function() { addFilterRule(); },
1124 deleteAction: function() {
1125 $$("#filterDlg_Actions li.[class*=Selected]").each(function(e) { e.parentNode.removeChild(e) });
1126 },
1127 deleteRule: function() {
1128 $$("#filterDlg_Matches li.[class*=Selected]").each(function(e) { e.parentNode.removeChild(e) });
1129 },
1130 execute: function() {
1131 if (this.validate()) {
1132
1133 var query = dojo.formToQuery("filter_new_form");
1134
1135 console.log(query);
1136
1137 new Ajax.Request("backend.php", {
1138 parameters: query,
1139 onComplete: function (transport) {
1140 if (inPreferences()) {
1141 updateFilterList();
1142 }
1143
1144 dialog.hide();
1145 } });
1146 }
1147 },
1148 href: query});
1149
1150 if (!inPreferences()) {
1151 var lh = dojo.connect(dialog, "onLoad", function(){
1152 dojo.disconnect(lh);
1153
1154 var query = "op=rpc&method=getlinktitlebyid&id=" + getActiveArticleId();
1155
1156 new Ajax.Request("backend.php", {
1157 parameters: query,
1158 onComplete: function(transport) {
1159 var reply = JSON.parse(transport.responseText);
1160
1161 var title = false;
1162
1163 if (reply && reply) title = reply.title;
1164
1165 if (title || getActiveFeedId() || activeFeedIsCat()) {
1166
1167 console.log(title + " " + getActiveFeedId());
1168
1169 var feed_id = activeFeedIsCat() ? 'CAT:' + parseInt(getActiveFeedId()) :
1170 getActiveFeedId();
1171
1172 var rule = { reg_exp: title, feed_id: feed_id, filter_type: 1 };
1173
1174 addFilterRule(null, dojo.toJson(rule));
1175 }
1176
1177 } });
1178
1179 });
1180 }
1181
1182 dialog.show();
1183
1184 } catch (e) {
1185 exception_error("quickAddFilter", e);
1186 }
1187 }
1188
1189 function resetPubSub(feed_id, title) {
1190
1191 var msg = __("Reset subscription? Tiny Tiny RSS will try to subscribe to the notification hub again on next feed update.").replace("%s", title);
1192
1193 if (title == undefined || confirm(msg)) {
1194 notify_progress("Loading, please wait...");
1195
1196 var query = "?op=pref-feeds&quiet=1&method=resetPubSub&ids=" + feed_id;
1197
1198 new Ajax.Request("backend.php", {
1199 parameters: query,
1200 onComplete: function(transport) {
1201 dijit.byId("pubsubReset_Btn").attr('disabled', true);
1202 notify_info("Subscription reset.");
1203 } });
1204 }
1205
1206 return false;
1207 }
1208
1209
1210 function unsubscribeFeed(feed_id, title) {
1211
1212 var msg = __("Unsubscribe from %s?").replace("%s", title);
1213
1214 if (title == undefined || confirm(msg)) {
1215 notify_progress("Removing feed...");
1216
1217 var query = "?op=pref-feeds&quiet=1&method=remove&ids=" + feed_id;
1218
1219 new Ajax.Request("backend.php", {
1220 parameters: query,
1221 onComplete: function(transport) {
1222
1223 if (dijit.byId("feedEditDlg")) dijit.byId("feedEditDlg").hide();
1224
1225 if (inPreferences()) {
1226 updateFeedList();
1227 } else {
1228 if (feed_id == getActiveFeedId())
1229 setTimeout("viewfeed(-5)", 100);
1230
1231 if (feed_id < 0) updateFeedList();
1232 }
1233
1234 } });
1235 }
1236
1237 return false;
1238 }
1239
1240
1241 function backend_sanity_check_callback(transport) {
1242
1243 try {
1244
1245 if (sanity_check_done) {
1246 fatalError(11, "Sanity check request received twice. This can indicate "+
1247 "presence of Firebug or some other disrupting extension. "+
1248 "Please disable it and try again.");
1249 return;
1250 }
1251
1252 var reply = JSON.parse(transport.responseText);
1253
1254 if (!reply) {
1255 fatalError(3, "Sanity check: invalid RPC reply", transport.responseText);
1256 return;
1257 }
1258
1259 var error_code = reply['error']['code'];
1260
1261 if (error_code && error_code != 0) {
1262 return fatalError(error_code, reply['error']['message']);
1263 }
1264
1265 console.log("sanity check ok");
1266
1267 var params = reply['init-params'];
1268
1269 if (params) {
1270 console.log('reading init-params...');
1271
1272 if (params) {
1273 for (k in params) {
1274 var v = params[k];
1275 console.log("IP: " + k + " => " + v);
1276
1277 if (k == "label_base_index") _label_base_index = parseInt(v);
1278 }
1279 }
1280
1281 init_params = params;
1282 }
1283
1284 sanity_check_done = true;
1285
1286 init_second_stage();
1287
1288 } catch (e) {
1289 exception_error("backend_sanity_check_callback", e, transport);
1290 }
1291 }
1292
1293 /*function has_local_storage() {
1294 try {
1295 return 'sessionStorage' in window && window['sessionStorage'] != null;
1296 } catch (e) {
1297 return false;
1298 }
1299 } */
1300
1301 function catSelectOnChange(elem) {
1302 try {
1303 /* var value = elem[elem.selectedIndex].value;
1304 var def = elem.getAttribute('default');
1305
1306 if (value == "ADD_CAT") {
1307
1308 if (def)
1309 dropboxSelect(elem, def);
1310 else
1311 elem.selectedIndex = 0;
1312
1313 quickAddCat(elem);
1314 } */
1315
1316 } catch (e) {
1317 exception_error("catSelectOnChange", e);
1318 }
1319 }
1320
1321 function quickAddCat(elem) {
1322 try {
1323 var cat = prompt(__("Please enter category title:"));
1324
1325 if (cat) {
1326
1327 var query = "?op=rpc&method=quickAddCat&cat=" + param_escape(cat);
1328
1329 notify_progress("Loading, please wait...", true);
1330
1331 new Ajax.Request("backend.php", {
1332 parameters: query,
1333 onComplete: function (transport) {
1334 var response = transport.responseXML;
1335 var select = response.getElementsByTagName("select")[0];
1336 var options = select.getElementsByTagName("option");
1337
1338 dropbox_replace_options(elem, options);
1339
1340 notify('');
1341
1342 } });
1343
1344 }
1345
1346 } catch (e) {
1347 exception_error("quickAddCat", e);
1348 }
1349 }
1350
1351 function genUrlChangeKey(feed, is_cat) {
1352
1353 try {
1354 var ok = confirm(__("Generate new syndication address for this feed?"));
1355
1356 if (ok) {
1357
1358 notify_progress("Trying to change address...", true);
1359
1360 var query = "?op=pref-feeds&method=regenFeedKey&id=" + param_escape(feed) +
1361 "&is_cat=" + param_escape(is_cat);
1362
1363 new Ajax.Request("backend.php", {
1364 parameters: query,
1365 onComplete: function(transport) {
1366 var reply = JSON.parse(transport.responseText);
1367 var new_link = reply.link;
1368
1369 var e = $('gen_feed_url');
1370
1371 if (new_link) {
1372
1373 e.innerHTML = e.innerHTML.replace(/\&amp;key=.*$/,
1374 "&amp;key=" + new_link);
1375
1376 e.href = e.href.replace(/\&key=.*$/,
1377 "&key=" + new_link);
1378
1379 new Effect.Highlight(e);
1380
1381 notify('');
1382
1383 } else {
1384 notify_error("Could not change feed URL.");
1385 }
1386 } });
1387 }
1388 } catch (e) {
1389 exception_error("genUrlChangeKey", e);
1390 }
1391 return false;
1392 }
1393
1394 function labelSelectOnChange(elem) {
1395 try {
1396 /* var value = elem[elem.selectedIndex].value;
1397 var def = elem.getAttribute('default');
1398
1399 if (value == "ADD_LABEL") {
1400
1401 if (def)
1402 dropboxSelect(elem, def);
1403 else
1404 elem.selectedIndex = 0;
1405
1406 addLabel(elem, function(transport) {
1407
1408 try {
1409
1410 var response = transport.responseXML;
1411 var select = response.getElementsByTagName("select")[0];
1412 var options = select.getElementsByTagName("option");
1413
1414 dropbox_replace_options(elem, options);
1415
1416 notify('');
1417 } catch (e) {
1418 exception_error("addLabel", e);
1419 }
1420 });
1421 } */
1422
1423 } catch (e) {
1424 exception_error("labelSelectOnChange", e);
1425 }
1426 }
1427
1428 function dropbox_replace_options(elem, options) {
1429
1430 try {
1431 while (elem.hasChildNodes())
1432 elem.removeChild(elem.firstChild);
1433
1434 var sel_idx = -1;
1435
1436 for (var i = 0; i < options.length; i++) {
1437 var text = options[i].firstChild.nodeValue;
1438 var value = options[i].getAttribute("value");
1439
1440 if (value == undefined) value = text;
1441
1442 var issel = options[i].getAttribute("selected") == "1";
1443
1444 var option = new Option(text, value, issel);
1445
1446 if (options[i].getAttribute("disabled"))
1447 option.setAttribute("disabled", true);
1448
1449 elem.insert(option);
1450
1451 if (issel) sel_idx = i;
1452 }
1453
1454 // Chrome doesn't seem to just select stuff when you pass new Option(x, y, true)
1455 if (sel_idx >= 0) elem.selectedIndex = sel_idx;
1456
1457 } catch (e) {
1458 exception_error("dropbox_replace_options", e);
1459 }
1460 }
1461
1462 // mode = all, none, invert
1463 function selectTableRows(id, mode) {
1464 try {
1465 var rows = $(id).rows;
1466
1467 for (var i = 0; i < rows.length; i++) {
1468 var row = rows[i];
1469 var cb = false;
1470 var dcb = false;
1471
1472 if (row.id && row.className) {
1473 var bare_id = row.id.replace(/^[A-Z]*?-/, "");
1474 var inputs = rows[i].getElementsByTagName("input");
1475
1476 for (var j = 0; j < inputs.length; j++) {
1477 var input = inputs[j];
1478
1479 if (input.getAttribute("type") == "checkbox" &&
1480 input.id.match(bare_id)) {
1481
1482 cb = input;
1483 dcb = dijit.getEnclosingWidget(cb);
1484 break;
1485 }
1486 }
1487
1488 if (cb || dcb) {
1489 var issel = row.hasClassName("Selected");
1490
1491 if (mode == "all" && !issel) {
1492 row.addClassName("Selected");
1493 cb.checked = true;
1494 if (dcb) dcb.set("checked", true);
1495 } else if (mode == "none" && issel) {
1496 row.removeClassName("Selected");
1497 cb.checked = false;
1498 if (dcb) dcb.set("checked", false);
1499
1500 } else if (mode == "invert") {
1501
1502 if (issel) {
1503 row.removeClassName("Selected");
1504 cb.checked = false;
1505 if (dcb) dcb.set("checked", false);
1506 } else {
1507 row.addClassName("Selected");
1508 cb.checked = true;
1509 if (dcb) dcb.set("checked", true);
1510 }
1511 }
1512 }
1513 }
1514 }
1515
1516 } catch (e) {
1517 exception_error("selectTableRows", e);
1518
1519 }
1520 }
1521
1522 function getSelectedTableRowIds(id) {
1523 var rows = [];
1524
1525 try {
1526 var elem_rows = $(id).rows;
1527
1528 for (var i = 0; i < elem_rows.length; i++) {
1529 if (elem_rows[i].hasClassName("Selected")) {
1530 var bare_id = elem_rows[i].id.replace(/^[A-Z]*?-/, "");
1531 rows.push(bare_id);
1532 }
1533 }
1534
1535 } catch (e) {
1536 exception_error("getSelectedTableRowIds", e);
1537 }
1538
1539 return rows;
1540 }
1541
1542 function editFeed(feed, event) {
1543 try {
1544 if (feed <= 0)
1545 return alert(__("You can't edit this kind of feed."));
1546
1547 var query = "backend.php?op=pref-feeds&method=editfeed&id=" +
1548 param_escape(feed);
1549
1550 console.log(query);
1551
1552 if (dijit.byId("filterEditDlg"))
1553 dijit.byId("filterEditDlg").destroyRecursive();
1554
1555 if (dijit.byId("feedEditDlg"))
1556 dijit.byId("feedEditDlg").destroyRecursive();
1557
1558 dialog = new dijit.Dialog({
1559 id: "feedEditDlg",
1560 title: __("Edit Feed"),
1561 style: "width: 600px",
1562 execute: function() {
1563 if (this.validate()) {
1564 // console.log(dojo.objectToQuery(this.attr('value')));
1565
1566 notify_progress("Saving data...", true);
1567
1568 new Ajax.Request("backend.php", {
1569 parameters: dojo.objectToQuery(dialog.attr('value')),
1570 onComplete: function(transport) {
1571 dialog.hide();
1572 notify('');
1573 updateFeedList();
1574 }});
1575 }
1576 },
1577 href: query});
1578
1579 dialog.show();
1580
1581 } catch (e) {
1582 exception_error("editFeed", e);
1583 }
1584 }
1585
1586 function feedBrowser() {
1587 try {
1588 var query = "backend.php?op=feeds&method=feedBrowser";
1589
1590 if (dijit.byId("feedAddDlg"))
1591 dijit.byId("feedAddDlg").hide();
1592
1593 if (dijit.byId("feedBrowserDlg"))
1594 dijit.byId("feedBrowserDlg").destroyRecursive();
1595
1596 var dialog = new dijit.Dialog({
1597 id: "feedBrowserDlg",
1598 title: __("More Feeds"),
1599 style: "width: 600px",
1600 getSelectedFeedIds: function() {
1601 var list = $$("#browseFeedList li[id*=FBROW]");
1602 var selected = new Array();
1603
1604 list.each(function(child) {
1605 var id = child.id.replace("FBROW-", "");
1606
1607 if (child.hasClassName('Selected')) {
1608 selected.push(id);
1609 }
1610 });
1611
1612 return selected;
1613 },
1614 getSelectedFeeds: function() {
1615 var list = $$("#browseFeedList li.Selected");
1616 var selected = new Array();
1617
1618 list.each(function(child) {
1619 var title = child.getElementsBySelector("span.fb_feedTitle")[0].innerHTML;
1620 var url = child.getElementsBySelector("a.fb_feedUrl")[0].href;
1621
1622 selected.push([title,url]);
1623
1624 });
1625
1626 return selected;
1627 },
1628
1629 subscribe: function() {
1630 var mode = this.attr('value').mode;
1631 var selected = [];
1632
1633 if (mode == "1")
1634 selected = this.getSelectedFeeds();
1635 else
1636 selected = this.getSelectedFeedIds();
1637
1638 if (selected.length > 0) {
1639 dijit.byId("feedBrowserDlg").hide();
1640
1641 notify_progress("Loading, please wait...", true);
1642
1643 // we use dojo.toJson instead of JSON.stringify because
1644 // it somehow escapes everything TWICE, at least in Chrome 9
1645
1646 var query = "?op=rpc&method=massSubscribe&payload="+
1647 param_escape(dojo.toJson(selected)) + "&mode=" + param_escape(mode);
1648
1649 console.log(query);
1650
1651 new Ajax.Request("backend.php", {
1652 parameters: query,
1653 onComplete: function(transport) {
1654 notify('');
1655 updateFeedList();
1656 } });
1657
1658 } else {
1659 alert(__("No feeds are selected."));
1660 }
1661
1662 },
1663 update: function() {
1664 var query = dojo.objectToQuery(dialog.attr('value'));
1665
1666 Element.show('feed_browser_spinner');
1667
1668 new Ajax.Request("backend.php", {
1669 parameters: query,
1670 onComplete: function(transport) {
1671 notify('');
1672
1673 Element.hide('feed_browser_spinner');
1674
1675 var c = $("browseFeedList");
1676
1677 var reply = JSON.parse(transport.responseText);
1678
1679 var r = reply['content'];
1680 var mode = reply['mode'];
1681
1682 if (c && r) {
1683 c.innerHTML = r;
1684 }
1685
1686 dojo.parser.parse("browseFeedList");
1687
1688 if (mode == 2) {
1689 Element.show(dijit.byId('feed_archive_remove').domNode);
1690 } else {
1691 Element.hide(dijit.byId('feed_archive_remove').domNode);
1692 }
1693
1694 } });
1695 },
1696 removeFromArchive: function() {
1697 var selected = this.getSelectedFeedIds();
1698
1699 if (selected.length > 0) {
1700
1701 var pr = __("Remove selected feeds from the archive? Feeds with stored articles will not be removed.");
1702
1703 if (confirm(pr)) {
1704 Element.show('feed_browser_spinner');
1705
1706 var query = "?op=rpc&method=remarchive&ids=" +
1707 param_escape(selected.toString());;
1708
1709 new Ajax.Request("backend.php", {
1710 parameters: query,
1711 onComplete: function(transport) {
1712 dialog.update();
1713 } });
1714 }
1715 }
1716 },
1717 execute: function() {
1718 if (this.validate()) {
1719 this.subscribe();
1720 }
1721 },
1722 href: query});
1723
1724 dialog.show();
1725
1726 } catch (e) {
1727 exception_error("editFeed", e);
1728 }
1729 }
1730
1731 function showFeedsWithErrors() {
1732 try {
1733 var query = "backend.php?op=pref-feeds&method=feedsWithErrors";
1734
1735 if (dijit.byId("errorFeedsDlg"))
1736 dijit.byId("errorFeedsDlg").destroyRecursive();
1737
1738 dialog = new dijit.Dialog({
1739 id: "errorFeedsDlg",
1740 title: __("Feeds with update errors"),
1741 style: "width: 600px",
1742 getSelectedFeeds: function() {
1743 return getSelectedTableRowIds("prefErrorFeedList");
1744 },
1745 removeSelected: function() {
1746 var sel_rows = this.getSelectedFeeds();
1747
1748 console.log(sel_rows);
1749
1750 if (sel_rows.length > 0) {
1751 var ok = confirm(__("Remove selected feeds?"));
1752
1753 if (ok) {
1754 notify_progress("Removing selected feeds...", true);
1755
1756 var query = "?op=pref-feeds&method=remove&ids="+
1757 param_escape(sel_rows.toString());
1758
1759 new Ajax.Request("backend.php", {
1760 parameters: query,
1761 onComplete: function(transport) {
1762 notify('');
1763 dialog.hide();
1764 updateFeedList();
1765 } });
1766 }
1767
1768 } else {
1769 alert(__("No feeds are selected."));
1770 }
1771 },
1772 execute: function() {
1773 if (this.validate()) {
1774 }
1775 },
1776 href: query});
1777
1778 dialog.show();
1779
1780 } catch (e) {
1781 exception_error("showFeedsWithErrors", e);
1782 }
1783
1784 }
1785
1786 /* new support functions for SelectByTag */
1787
1788 function get_all_tags(selObj){
1789 try {
1790 if( !selObj ) return "";
1791
1792 var result = "";
1793 var len = selObj.options.length;
1794
1795 for (var i=0; i < len; i++){
1796 if (selObj.options[i].selected) {
1797 result += selObj[i].value + "%2C"; // is really a comma
1798 }
1799 }
1800
1801 if (result.length > 0){
1802 result = result.substr(0, result.length-3); // remove trailing %2C
1803 }
1804
1805 return(result);
1806
1807 } catch (e) {
1808 exception_error("get_all_tags", e);
1809 }
1810 }
1811
1812 function get_radio_checked(radioObj) {
1813 try {
1814 if (!radioObj) return "";
1815
1816 var len = radioObj.length;
1817
1818 if (len == undefined){
1819 if(radioObj.checked){
1820 return(radioObj.value);
1821 } else {
1822 return("");
1823 }
1824 }
1825
1826 for( var i=0; i < len; i++ ){
1827 if( radioObj[i].checked ){
1828 return( radioObj[i].value);
1829 }
1830 }
1831
1832 } catch (e) {
1833 exception_error("get_radio_checked", e);
1834 }
1835 return("");
1836 }
1837
1838 function get_timestamp() {
1839 var date = new Date();
1840 return Math.round(date.getTime() / 1000);
1841 }
1842
1843 function helpDialog(topic) {
1844 try {
1845 var query = "backend.php?op=backend&method=help&topic=" + param_escape(topic);
1846
1847 if (dijit.byId("helpDlg"))
1848 dijit.byId("helpDlg").destroyRecursive();
1849
1850 dialog = new dijit.Dialog({
1851 id: "helpDlg",
1852 title: __("Help"),
1853 style: "width: 600px",
1854 href: query,
1855 });
1856
1857 dialog.show();
1858
1859 } catch (e) {
1860 exception_error("helpDialog", e);
1861 }
1862 }
1863
1864 function htmlspecialchars_decode (string, quote_style) {
1865 // http://kevin.vanzonneveld.net
1866 // + original by: Mirek Slugen
1867 // + improved by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
1868 // + bugfixed by: Mateusz "loonquawl" Zalega
1869 // + input by: ReverseSyntax
1870 // + input by: Slawomir Kaniecki
1871 // + input by: Scott Cariss
1872 // + input by: Francois
1873 // + bugfixed by: Onno Marsman
1874 // + revised by: Kevin van Zonneveld (http://kevin.vanzonneveld.net)
1875 // + bugfixed by: Brett Zamir (http://brett-zamir.me)
1876 // + input by: Ratheous
1877 // + input by: Mailfaker (http://www.weedem.fr/)
1878 // + reimplemented by: Brett Zamir (http://brett-zamir.me)
1879 // + bugfixed by: Brett Zamir (http://brett-zamir.me)
1880 // * example 1: htmlspecialchars_decode("<p>this -&gt; &quot;</p>", 'ENT_NOQUOTES');
1881 // * returns 1: '<p>this -> &quot;</p>'
1882 // * example 2: htmlspecialchars_decode("&amp;quot;");
1883 // * returns 2: '&quot;'
1884 var optTemp = 0,
1885 i = 0,
1886 noquotes = false;
1887 if (typeof quote_style === 'undefined') {
1888 quote_style = 2;
1889 }
1890 string = string.toString().replace(/&lt;/g, '<').replace(/&gt;/g, '>');
1891 var OPTS = {
1892 'ENT_NOQUOTES': 0,
1893 'ENT_HTML_QUOTE_SINGLE': 1,
1894 'ENT_HTML_QUOTE_DOUBLE': 2,
1895 'ENT_COMPAT': 2,
1896 'ENT_QUOTES': 3,
1897 'ENT_IGNORE': 4
1898 };
1899 if (quote_style === 0) {
1900 noquotes = true;
1901 }
1902 if (typeof quote_style !== 'number') { // Allow for a single string or an array of string flags
1903 quote_style = [].concat(quote_style);
1904 for (i = 0; i < quote_style.length; i++) {
1905 // Resolve string input to bitwise e.g. 'PATHINFO_EXTENSION' becomes 4
1906 if (OPTS[quote_style[i]] === 0) {
1907 noquotes = true;
1908 } else if (OPTS[quote_style[i]]) {
1909 optTemp = optTemp | OPTS[quote_style[i]];
1910 }
1911 }
1912 quote_style = optTemp;
1913 }
1914 if (quote_style & OPTS.ENT_HTML_QUOTE_SINGLE) {
1915 string = string.replace(/&#0*39;/g, "'"); // PHP doesn't currently escape if more than one 0, but it should
1916 // string = string.replace(/&apos;|&#x0*27;/g, "'"); // This would also be useful here, but not a part of PHP
1917 }
1918 if (!noquotes) {
1919 string = string.replace(/&quot;/g, '"');
1920 }
1921 // Put this in last place to avoid escape being double-decoded
1922 string = string.replace(/&amp;/g, '&');
1923
1924 return string;
1925 }
1926
1927
1928 function label_to_feed_id(label) {
1929 return _label_base_index - 1 - Math.abs(label);
1930 }
1931
1932 function feed_to_label_id(feed) {
1933 return _label_base_index - 1 + Math.abs(feed);
1934 }
1935