]> git.wh0rd.org - tt-rss.git/blob - prefs.js
remove old-style big feed browser (2)
[tt-rss.git] / prefs.js
1 var xmlhttp = false;
2
3 var active_feed_cat = false;
4 var active_tab = false;
5 var feed_to_expand = false;
6
7 var xmlhttp = Ajax.getTransport();
8
9 var init_params = new Array();
10
11 var caller_subop = false;
12 var sanity_check_done = false;
13 var hotkey_prefix = false;
14
15 function infobox_callback() {
16 if (xmlhttp.readyState == 4) {
17 infobox_callback2(xmlhttp);
18 }
19 }
20
21 function infobox_submit_callback() {
22 if (xmlhttp.readyState == 4) {
23 infobox_submit_callback2(xmlhttp);
24 }
25 }
26
27
28 function replace_pubkey_callback() {
29 if (xmlhttp.readyState == 4) {
30 try {
31 var link = document.getElementById("pubGenAddress");
32
33 if (xmlhttp.responseXML) {
34
35 var new_link = xmlhttp.responseXML.getElementsByTagName("link")[0];
36
37 if (new_link) {
38 link.href = new_link.firstChild.nodeValue;
39 //link.innerHTML = new_link.firstChild.nodeValue;
40
41 new Effect.Highlight(link);
42
43 notify_info("Published feed URL changed.");
44 } else {
45 notify_error("Could not change feed URL.");
46 }
47
48 } else {
49 notify_error("Could not change feed URL.");
50 }
51 } catch (e) {
52 exception_error("replace_pubkey_callback", e);
53 }
54 }
55 }
56
57 function expand_feed_callback() {
58 if (xmlhttp.readyState == 4) {
59 try {
60 var container = document.getElementById("BRDET-" + feed_to_expand);
61 container.innerHTML=xmlhttp.responseText;
62 // container.style.display = "block";
63 Effect.Appear(container, {duration : 0.5});
64 notify('');
65 } catch (e) {
66 exception_error("expand_feed_callback", e);
67 }
68 }
69 }
70
71 function feedlist_callback() {
72 if (xmlhttp.readyState == 4) {
73 try {
74 var container = document.getElementById('prefContent');
75 container.innerHTML=xmlhttp.responseText;
76 selectTab("feedConfig", true);
77
78 if (caller_subop) {
79 var tuple = caller_subop.split(":");
80 if (tuple[0] == 'editFeed') {
81 window.setTimeout('editFeed('+tuple[1]+')', 100);
82 }
83
84 caller_subop = false;
85 }
86 if (typeof correctPNG != 'undefined') {
87 correctPNG();
88 }
89 notify("");
90 remove_splash();
91
92 } catch (e) {
93 exception_error("feedlist_callback", e);
94 }
95 }
96 }
97
98 /* stub for subscription dialog */
99
100 function dlg_frefresh_callback(transport) {
101
102 try {
103 var container = document.getElementById('prefContent');
104 container.innerHTML=transport.responseText;
105 selectTab("feedConfig", true);
106
107 if (caller_subop) {
108 var tuple = caller_subop.split(":");
109 if (tuple[0] == 'editFeed') {
110 window.setTimeout('editFeed('+tuple[1]+')', 100);
111 }
112
113 caller_subop = false;
114 }
115 if (typeof correctPNG != 'undefined') {
116 correctPNG();
117 }
118 notify("");
119 } catch (e) {
120 exception_error("feedlist_callback", e);
121 }
122
123 }
124
125 function filterlist_callback() {
126 var container = document.getElementById('prefContent');
127 if (xmlhttp.readyState == 4) {
128 container.innerHTML=xmlhttp.responseText;
129 if (typeof correctPNG != 'undefined') {
130 correctPNG();
131 }
132 notify("");
133 remove_splash();
134 }
135 }
136
137 function labellist_callback() {
138
139 try {
140
141 var container = document.getElementById('prefContent');
142 if (xmlhttp.readyState == 4) {
143 closeInfoBox();
144 container.innerHTML=xmlhttp.responseText;
145
146 if (document.getElementById("prefLabelList")) {
147 var elems = document.getElementById("prefLabelList").getElementsByTagName("SPAN");
148
149 for (var i = 0; i < elems.length; i++) {
150 if (elems[i].id && elems[i].id.match("LILT-")) {
151
152 var id = elems[i].id.replace("LILT-", "");
153 new Ajax.InPlaceEditor(elems[i],
154 'backend.php?op=pref-labels&subop=save&id=' + id,
155 {cols: 20, rows: 1});
156 }
157 }
158 }
159
160 if (typeof correctPNG != 'undefined') {
161 correctPNG();
162 }
163 notify("");
164 remove_splash();
165 }
166
167 } catch (e) {
168 exception_error("labellist_callback", e);
169 }
170 }
171
172 function feed_browser_callback() {
173 var container = document.getElementById('prefContent');
174 if (xmlhttp.readyState == 4) {
175 container.innerHTML=xmlhttp.responseText;
176 notify("");
177 remove_splash();
178 }
179 }
180
181 function userlist_callback() {
182 var container = document.getElementById('prefContent');
183 if (xmlhttp.readyState == 4) {
184 container.innerHTML=xmlhttp.responseText;
185 notify("");
186 remove_splash();
187 }
188 }
189
190 function prefslist_callback() {
191 var container = document.getElementById('prefContent');
192 if (xmlhttp.readyState == 4) {
193 container.innerHTML=xmlhttp.responseText;
194 notify("");
195 remove_splash();
196 }
197 }
198
199 function gethelp_callback() {
200 var container = document.getElementById('prefHelpBox');
201 if (xmlhttp.readyState == 4) {
202
203 container.innerHTML = xmlhttp.responseText;
204 container.style.display = "block";
205
206 }
207 }
208
209 function notify_callback() {
210 if (xmlhttp.readyState == 4) {
211 notify_info(xmlhttp.responseText);
212 }
213 }
214
215 function prefs_reset_callback() {
216 if (xmlhttp.readyState == 4) {
217 notify_info(xmlhttp.responseText);
218 selectTab();
219 }
220 }
221
222
223 function changepass_callback() {
224 try {
225 if (xmlhttp.readyState == 4) {
226
227 if (xmlhttp.responseText.indexOf("ERROR: ") == 0) {
228 notify_error(xmlhttp.responseText.replace("ERROR: ", ""));
229 } else {
230 notify_info(xmlhttp.responseText);
231 var warn = document.getElementById("default_pass_warning");
232 if (warn) warn.style.display = "none";
233 }
234
235 document.forms['change_pass_form'].reset();
236
237 }
238 } catch (e) {
239 exception_error("changepass_callback", e);
240 }
241 }
242
243 function init_cat_inline_editor() {
244 try {
245
246 if (document.getElementById("prefFeedCatList")) {
247 var elems = document.getElementById("prefFeedCatList").getElementsByTagName("SPAN");
248
249 for (var i = 0; i < elems.length; i++) {
250 if (elems[i].id && elems[i].id.match("FCATT-")) {
251 var cat_id = elems[i].id.replace("FCATT-", "");
252 new Ajax.InPlaceEditor(elems[i],
253 'backend.php?op=pref-feeds&subop=editCats&action=save&cid=' + cat_id);
254 }
255 }
256 }
257
258 } catch (e) {
259 exception_error("init_cat_inline_editor", e);
260 }
261 }
262
263 function infobox_feed_cat_callback() {
264 if (xmlhttp.readyState == 4) {
265 try {
266
267 infobox_callback();
268 init_cat_inline_editor();
269
270 } catch (e) {
271 exception_error("infobox_feed_cat_callback", e);
272 }
273 }
274 }
275
276 function updateFeedList(sort_key) {
277
278 if (!xmlhttp_ready(xmlhttp)) {
279 printLockingError();
280 return
281 }
282
283 var feed_search = document.getElementById("feed_search");
284 var search = "";
285 if (feed_search) { search = feed_search.value; }
286
287 var slat = document.getElementById("show_last_article_times");
288
289 var slat_checked = false;
290 if (slat) {
291 slat_checked = slat.checked;
292 }
293
294 xmlhttp.open("GET", "backend.php?op=pref-feeds" +
295 "&sort=" + param_escape(sort_key) +
296 "&slat=" + param_escape(slat_checked) +
297 "&search=" + param_escape(search), true);
298 xmlhttp.onreadystatechange=feedlist_callback;
299 xmlhttp.send(null);
300
301 }
302
303 function updateUsersList(sort_key) {
304
305 if (!xmlhttp_ready(xmlhttp)) {
306 printLockingError();
307 return
308 }
309
310 var user_search = document.getElementById("user_search");
311 var search = "";
312 if (user_search) { search = user_search.value; }
313
314 xmlhttp.open("GET", "backend.php?op=pref-users&sort="
315 + param_escape(sort_key) +
316 "&search=" + param_escape(search), true);
317 xmlhttp.onreadystatechange=userlist_callback;
318 xmlhttp.send(null);
319
320 }
321
322 function addLabel() {
323
324 try {
325
326 if (!xmlhttp_ready(xmlhttp)) {
327 printLockingError();
328 return
329 }
330
331 var caption = prompt(__("Please enter label caption:"), "");
332
333 if (caption == null) {
334 return false;
335 }
336
337 if (caption == "") {
338 alert(__("Can't create label: missing caption."));
339 return false;
340 }
341
342 // we can be called from some other tab
343 active_tab = "labelConfig";
344
345 var query = "caption=" + param_escape(caption);
346
347 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&" + query, true);
348 xmlhttp.onreadystatechange=infobox_submit_callback;
349 xmlhttp.send(null);
350
351 } catch (e) {
352 exception_error("addLabel", e);
353 }
354 }
355
356 function addFeed() {
357
358 if (!xmlhttp_ready(xmlhttp)) {
359 printLockingError();
360 return
361 }
362
363 var link = document.getElementById("fadd_link");
364
365 if (link.value.length == 0) {
366 alert(__("Error: No feed URL given."));
367 } else if (!isValidURL(link.value)) {
368 alert(__("Error: Invalid feed URL."));
369 } else {
370 notify_progress("Adding feed...");
371
372 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&from=tt-rss&feed_url=" +
373 param_escape(link.value), true);
374 xmlhttp.onreadystatechange=feedlist_callback;
375 xmlhttp.send(null);
376
377 link.value = "";
378
379 }
380
381 }
382
383 function addFeedCat() {
384
385 if (!xmlhttp_ready(xmlhttp)) {
386 printLockingError();
387 return
388 }
389
390 var cat = document.getElementById("fadd_cat");
391
392 if (cat.value.length == 0) {
393 alert(__("Can't add category: no name specified."));
394 } else {
395 notify_progress("Adding feed category...");
396
397 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=add&cat=" +
398 param_escape(cat.value), true);
399 xmlhttp.onreadystatechange=infobox_feed_cat_callback;
400 xmlhttp.send(null);
401
402 link.value = "";
403
404 }
405
406 }
407 function addUser() {
408
409 if (!xmlhttp_ready(xmlhttp)) {
410 printLockingError();
411 return
412 }
413
414 var sqlexp = document.getElementById("uadd_box");
415
416 if (sqlexp.value.length == 0) {
417 alert(__("Can't add user: no login specified."));
418 } else {
419 notify_progress("Adding user...");
420
421 xmlhttp.open("GET", "backend.php?op=pref-users&subop=add&login=" +
422 param_escape(sqlexp.value), true);
423
424 xmlhttp.onreadystatechange=userlist_callback;
425 xmlhttp.send(null);
426
427 sqlexp.value = "";
428 }
429
430 }
431
432 function editUser(id) {
433
434 if (!xmlhttp_ready(xmlhttp)) {
435 printLockingError();
436 return
437 }
438
439 disableHotkeys();
440
441 notify_progress("Loading, please wait...");
442
443 selectTableRowsByIdPrefix('prefUserList', 'UMRR-', 'UMCHK-', false);
444 selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
445
446 disableContainerChildren("userOpToolbar", false);
447
448 xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
449 param_escape(id), true);
450 xmlhttp.onreadystatechange=infobox_callback;
451 xmlhttp.send(null);
452
453 }
454
455 function editFilter(id) {
456
457 if (!xmlhttp_ready(xmlhttp)) {
458 printLockingError();
459 return
460 }
461
462 disableHotkeys();
463
464 notify_progress("Loading, please wait...");
465
466 // document.getElementById("create_filter_btn").disabled = true;
467
468 disableContainerChildren("filterOpToolbar", false);
469
470 selectTableRowsByIdPrefix('prefFilterList', 'FILRR-', 'FICHK-', false);
471 selectTableRowById('FILRR-'+id, 'FICHK-'+id, true);
472
473 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" + param_escape(id), true);
474 xmlhttp.onreadystatechange=infobox_callback;
475 xmlhttp.send(null);
476 }
477
478 function editFeed(feed) {
479
480 // notify("Editing feed...");
481
482 if (!xmlhttp_ready(xmlhttp)) {
483 printLockingError();
484 return
485 }
486
487 disableHotkeys();
488
489 notify_progress("Loading, please wait...");
490
491 /* document.getElementById("subscribe_to_feed_btn").disabled = true;
492
493 try {
494 document.getElementById("top25_feeds_btn").disabled = true;
495 } catch (e) {
496 // this button is not always available, no-op if not found
497 } */
498
499 // clean selection from all rows & select row being edited
500 selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
501 selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
502
503 disableContainerChildren("feedOpToolbar", false);
504
505 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
506 param_escape(feed), true);
507
508 xmlhttp.onreadystatechange=infobox_callback;
509 xmlhttp.send(null);
510
511 }
512
513 function editFeedCat(cat) {
514
515 if (!xmlhttp_ready(xmlhttp)) {
516 printLockingError();
517 return
518 }
519
520 disableHotkeys();
521
522 notify_progress("Loading, please wait...");
523
524 active_feed_cat = cat;
525
526 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=edit&id=" +
527 param_escape(cat), true);
528 xmlhttp.onreadystatechange=infobox_callback;
529 xmlhttp.send(null);
530
531 }
532
533 function getSelectedLabels() {
534 return getSelectedTableRowIds("prefLabelList", "LILRR");
535 }
536
537 function getSelectedUsers() {
538 return getSelectedTableRowIds("prefUserList", "UMRR");
539 }
540
541 function getSelectedFeeds() {
542 return getSelectedTableRowIds("prefFeedList", "FEEDR");
543 }
544
545 function getSelectedFilters() {
546 return getSelectedTableRowIds("prefFilterList", "FILRR");
547 }
548
549 function getSelectedFeedCats() {
550 return getSelectedTableRowIds("prefFeedCatList", "FCATR");
551 }
552
553
554 function removeSelectedLabels() {
555
556 if (!xmlhttp_ready(xmlhttp)) {
557 printLockingError();
558 return
559 }
560
561 var sel_rows = getSelectedLabels();
562
563 if (sel_rows.length > 0) {
564
565 var ok = confirm(__("Remove selected labels?"));
566
567 if (ok) {
568 notify_progress("Removing selected labels...");
569
570 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
571 param_escape(sel_rows.toString()), true);
572 xmlhttp.onreadystatechange=labellist_callback;
573 xmlhttp.send(null);
574 }
575 } else {
576 alert(__("No labels are selected."));
577 }
578
579 return false;
580 }
581
582 function removeSelectedUsers() {
583
584 if (!xmlhttp_ready(xmlhttp)) {
585 printLockingError();
586 return
587 }
588
589 var sel_rows = getSelectedUsers();
590
591 if (sel_rows.length > 0) {
592
593 var ok = confirm(__("Remove selected users?"));
594
595 if (ok) {
596 notify_progress("Removing selected users...");
597
598 xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
599 param_escape(sel_rows.toString()), true);
600 xmlhttp.onreadystatechange=userlist_callback;
601 xmlhttp.send(null);
602 }
603
604 } else {
605 alert(__("No users are selected."));
606 }
607
608 return false;
609 }
610
611 function removeSelectedFilters() {
612
613 if (!xmlhttp_ready(xmlhttp)) {
614 printLockingError();
615 return
616 }
617
618 var sel_rows = getSelectedFilters();
619
620 if (sel_rows.length > 0) {
621
622 var ok = confirm(__("Remove selected filters?"));
623
624 if (ok) {
625 notify_progress("Removing selected filters...");
626
627 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
628 param_escape(sel_rows.toString()), true);
629 xmlhttp.onreadystatechange=filterlist_callback;
630 xmlhttp.send(null);
631 }
632 } else {
633 alert(__("No filters are selected."));
634 }
635
636 return false;
637 }
638
639
640 function removeSelectedFeeds() {
641
642 if (!xmlhttp_ready(xmlhttp)) {
643 printLockingError();
644 return
645 }
646
647 var sel_rows = getSelectedFeeds();
648
649 if (sel_rows.length > 0) {
650
651 var ok = confirm(__("Unsubscribe from selected feeds?"));
652
653 if (ok) {
654
655 notify_progress("Unsubscribing from selected feeds...");
656
657 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
658 param_escape(sel_rows.toString()), true);
659 xmlhttp.onreadystatechange=feedlist_callback;
660 xmlhttp.send(null);
661 }
662
663 } else {
664
665 alert(__("No feeds are selected."));
666
667 }
668
669 return false;
670 }
671
672 function clearSelectedFeeds() {
673
674 if (!xmlhttp_ready(xmlhttp)) {
675 printLockingError();
676 return
677 }
678
679 var sel_rows = getSelectedFeeds();
680
681 if (sel_rows.length > 1) {
682 alert(__("Please select only one feed."));
683 return;
684 }
685
686 if (sel_rows.length > 0) {
687
688 var ok = confirm(__("Erase all non-starred articles in selected feed?"));
689
690 if (ok) {
691 notify_progress("Clearing selected feed...");
692 clearFeedArticles(sel_rows[0]);
693 }
694
695 } else {
696
697 alert(__("No feeds are selected."));
698
699 }
700
701 return false;
702 }
703
704 function purgeSelectedFeeds() {
705
706 if (!xmlhttp_ready(xmlhttp)) {
707 printLockingError();
708 return
709 }
710
711 var sel_rows = getSelectedFeeds();
712
713 if (sel_rows.length > 0) {
714
715 var pr = prompt(__("How many days of articles to keep (0 - use default)?"), "0");
716
717 if (pr != undefined) {
718 notify_progress("Purging selected feed...");
719
720 var query = "backend.php?op=rpc&subop=purge&ids="+
721 param_escape(sel_rows.toString()) + "&days=" + pr;
722
723 debug(query);
724
725 new Ajax.Request(query, {
726 onComplete: function(transport) {
727 notify('');
728 } });
729 }
730
731 } else {
732
733 alert(__("No feeds are selected."));
734
735 }
736
737 return false;
738 }
739
740 function removeSelectedFeedCats() {
741
742 if (!xmlhttp_ready(xmlhttp)) {
743 printLockingError();
744 return
745 }
746
747 var sel_rows = getSelectedFeedCats();
748
749 if (sel_rows.length > 0) {
750
751 var ok = confirm(__("Remove selected categories?"));
752
753 if (ok) {
754 notify_progress("Removing selected categories...");
755
756 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=remove&ids="+
757 param_escape(sel_rows.toString()), true);
758 xmlhttp.onreadystatechange=infobox_feed_cat_callback;
759 xmlhttp.send(null);
760 }
761
762 } else {
763
764 alert(__("No categories are selected."));
765
766 }
767
768 return false;
769 }
770
771 function feedEditCancel() {
772
773 if (!xmlhttp_ready(xmlhttp)) {
774 printLockingError();
775 return
776 }
777
778 try {
779 document.getElementById("subscribe_to_feed_btn").disabled = false;
780 document.getElementById("top25_feeds_btn").disabled = false;
781 } catch (e) {
782 // this button is not always available, no-op if not found
783 }
784
785 closeInfoBox();
786
787 selectPrefRows('feed', false); // cleanup feed selection
788
789 return false;
790 }
791
792 function feedCatEditCancel() {
793
794 if (!xmlhttp_ready(xmlhttp)) {
795 printLockingError();
796 return
797 }
798
799 active_feed_cat = false;
800
801 try {
802 document.getElementById("subscribe_to_feed_btn").disabled = false;
803 document.getElementById("top25_feeds_btn").disabled = false;
804 } catch (e) {
805 // this button is not always available, no-op if not found
806 }
807
808 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
809 xmlhttp.onreadystatechange=infobox_callback;
810 xmlhttp.send(null);
811
812 return false;
813 }
814
815 function feedEditSave() {
816
817 try {
818
819 if (!xmlhttp_ready(xmlhttp)) {
820 printLockingError();
821 return
822 }
823
824 // FIXME: add parameter validation
825
826 var query = Form.serialize("edit_feed_form");
827
828 notify_progress("Saving feed...");
829
830 xmlhttp.open("POST", "backend.php", true);
831 xmlhttp.onreadystatechange=feedlist_callback;
832 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
833 xmlhttp.send(query);
834
835 closeInfoBox();
836
837 return false;
838
839 } catch (e) {
840 exception_error("feedEditSave", e);
841 }
842 }
843
844 function userEditCancel() {
845
846 if (!xmlhttp_ready(xmlhttp)) {
847 printLockingError();
848 return
849 }
850
851 selectPrefRows('user', false); // cleanup feed selection
852 closeInfoBox();
853
854 return false;
855 }
856
857 function filterEditCancel() {
858
859 if (!xmlhttp_ready(xmlhttp)) {
860 printLockingError();
861 return
862 }
863
864 try {
865 document.getElementById("create_filter_btn").disabled = false;
866 selectPrefRows('filter', false); // cleanup feed selection
867 } catch (e) { }
868
869 closeInfoBox();
870
871 return false;
872 }
873
874 function userEditSave() {
875
876 if (!xmlhttp_ready(xmlhttp)) {
877 printLockingError();
878 return
879 }
880
881 var login = document.forms["user_edit_form"].login.value;
882
883 if (login.length == 0) {
884 alert(__("Login field cannot be blank."));
885 return;
886 }
887
888 notify_progress("Saving user...");
889
890 closeInfoBox();
891
892 var query = Form.serialize("user_edit_form");
893
894 xmlhttp.open("GET", "backend.php?" + query, true);
895 xmlhttp.onreadystatechange=userlist_callback;
896 xmlhttp.send(null);
897
898 return false;
899 }
900
901
902 function filterEditSave() {
903
904 if (!xmlhttp_ready(xmlhttp)) {
905 printLockingError();
906 return
907 }
908
909 /* if (!is_opera()) {
910 var reg_exp = document.forms["filter_edit_form"].reg_exp.value;
911
912 if (reg_exp.length == 0) {
913 alert("Filter expression field cannot be blank.");
914 return;
915 }
916 } */
917
918 notify_progress("Saving filter...");
919
920 var query = Form.serialize("filter_edit_form");
921
922 closeInfoBox();
923
924 document.getElementById("create_filter_btn").disabled = false;
925
926 xmlhttp.open("GET", "backend.php?" + query, true);
927 xmlhttp.onreadystatechange=filterlist_callback;
928 xmlhttp.send(null);
929
930 return false;
931 }
932
933
934 function editSelectedUser() {
935 var rows = getSelectedUsers();
936
937 if (rows.length == 0) {
938 alert(__("No users are selected."));
939 return;
940 }
941
942 if (rows.length > 1) {
943 alert(__("Please select only one user."));
944 return;
945 }
946
947 notify("");
948
949 editUser(rows[0]);
950 }
951
952 function resetSelectedUserPass() {
953 var rows = getSelectedUsers();
954
955 if (rows.length == 0) {
956 alert(__("No users are selected."));
957 return;
958 }
959
960 if (rows.length > 1) {
961 alert(__("Please select only one user."));
962 return;
963 }
964
965 var ok = confirm(__("Reset password of selected user?"));
966
967 if (ok) {
968 notify_progress("Resetting password for selected user...");
969
970 var id = rows[0];
971
972 xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
973 param_escape(id), true);
974 xmlhttp.onreadystatechange=userlist_callback;
975 xmlhttp.send(null);
976 }
977 }
978
979 function selectedUserDetails() {
980
981 if (!xmlhttp_ready(xmlhttp)) {
982 printLockingError();
983 return
984 }
985
986 var rows = getSelectedUsers();
987
988 if (rows.length == 0) {
989 alert(__("No users are selected."));
990 return;
991 }
992
993 if (rows.length > 1) {
994 alert(__("Please select only one user."));
995 return;
996 }
997
998 notify_progress("Loading, please wait...");
999
1000 var id = rows[0];
1001
1002 xmlhttp.open("GET", "backend.php?op=pref-users&subop=user-details&id=" + id, true);
1003 xmlhttp.onreadystatechange=infobox_callback;
1004 xmlhttp.send(null);
1005
1006 }
1007
1008 function selectedFeedDetails() {
1009
1010 if (!xmlhttp_ready(xmlhttp)) {
1011 printLockingError();
1012 return
1013 }
1014
1015 var rows = getSelectedFeeds();
1016
1017 if (rows.length == 0) {
1018 alert(__("No feeds are selected."));
1019 return;
1020 }
1021
1022 if (rows.length > 1) {
1023 alert(__("Please select only one feed."));
1024 return;
1025 }
1026
1027 // var id = rows[0];
1028
1029 notify("");
1030
1031 xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
1032 param_escape(rows.toString()), true);
1033 xmlhttp.onreadystatechange=infobox_callback;
1034 xmlhttp.send(null);
1035
1036 }
1037
1038 function editSelectedFilter() {
1039 var rows = getSelectedFilters();
1040
1041 if (rows.length == 0) {
1042 alert(__("No filters are selected."));
1043 return;
1044 }
1045
1046 if (rows.length > 1) {
1047 alert(__("Please select only one filter."));
1048 return;
1049 }
1050
1051 notify("");
1052
1053 editFilter(rows[0]);
1054
1055 }
1056
1057
1058 function editSelectedFeed() {
1059 var rows = getSelectedFeeds();
1060
1061 if (rows.length == 0) {
1062 alert(__("No feeds are selected."));
1063 return;
1064 }
1065
1066 if (rows.length > 1) {
1067 alert(__("Please select one feed."));
1068 return;
1069 }
1070
1071 notify("");
1072
1073 editFeed(rows[0]);
1074
1075 }
1076
1077 function editSelectedFeeds() {
1078
1079 if (!xmlhttp_ready(xmlhttp)) {
1080 printLockingError();
1081 return
1082 }
1083
1084 var rows = getSelectedFeeds();
1085
1086 if (rows.length == 0) {
1087 alert(__("No feeds are selected."));
1088 return;
1089 }
1090
1091 notify("");
1092
1093 disableHotkeys();
1094
1095 notify_progress("Loading, please wait...");
1096
1097 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeeds&ids=" +
1098 param_escape(rows.toString()), true);
1099
1100 xmlhttp.onreadystatechange=infobox_callback;
1101 xmlhttp.send(null);
1102
1103 }
1104
1105 function editSelectedFeedCat() {
1106 var rows = getSelectedFeedCats();
1107
1108 if (rows.length == 0) {
1109 alert(__("No categories are selected."));
1110 return;
1111 }
1112
1113 if (rows.length > 1) {
1114 alert(__("Please select only one category."));
1115 return;
1116 }
1117
1118 notify("");
1119
1120 editFeedCat(rows[0]);
1121
1122 }
1123
1124 function piggie(enable) {
1125 if (enable) {
1126 debug("I LOVEDED IT!");
1127 var piggie = document.getElementById("piggie");
1128
1129 Element.show(piggie);
1130 Position.Center(piggie);
1131 Effect.Puff(piggie);
1132
1133 }
1134 }
1135
1136 function validateOpmlImport() {
1137
1138 var opml_file = document.getElementById("opml_file");
1139
1140 if (opml_file.value.length == 0) {
1141 alert(__("No OPML file to upload."));
1142 return false;
1143 } else {
1144 return true;
1145 }
1146 }
1147
1148 function updateFilterList(sort_key) {
1149
1150 if (!xmlhttp_ready(xmlhttp)) {
1151 printLockingError();
1152 return
1153 }
1154
1155 var filter_search = document.getElementById("filter_search");
1156 var search = "";
1157 if (filter_search) { search = filter_search.value; }
1158
1159 xmlhttp.open("GET", "backend.php?op=pref-filters&sort=" +
1160 param_escape(sort_key) +
1161 "&search=" + param_escape(search), true);
1162 xmlhttp.onreadystatechange=filterlist_callback;
1163 xmlhttp.send(null);
1164
1165 }
1166
1167 function updateLabelList(sort_key) {
1168
1169 if (!xmlhttp_ready(xmlhttp)) {
1170 printLockingError();
1171 return
1172 }
1173
1174 var label_search = document.getElementById("label_search");
1175 var search = "";
1176 if (label_search) { search = label_search.value; }
1177
1178 xmlhttp.open("GET", "backend.php?op=pref-labels&sort=" +
1179 param_escape(sort_key) +
1180 "&search=" + param_escape(search), true);
1181 xmlhttp.onreadystatechange=labellist_callback;
1182 xmlhttp.send(null);
1183 }
1184
1185 function updatePrefsList() {
1186
1187 if (!xmlhttp_ready(xmlhttp)) {
1188 printLockingError();
1189 return
1190 }
1191
1192 xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
1193 xmlhttp.onreadystatechange=prefslist_callback;
1194 xmlhttp.send(null);
1195
1196 }
1197
1198 function selectTab(id, noupdate, subop) {
1199
1200 // alert(id);
1201
1202 if (!id) id = active_tab;
1203
1204 try {
1205
1206 if (!xmlhttp_ready(xmlhttp)) {
1207 printLockingError();
1208 return
1209 }
1210
1211 try {
1212 var c = document.getElementById('prefContent');
1213 c.scrollTop = 0;
1214 } catch (e) { };
1215
1216 if (!noupdate) {
1217
1218 debug("selectTab: " + id + "(NU: " + noupdate + ")");
1219
1220 notify_progress("Loading, please wait...");
1221
1222 // close active infobox if needed
1223 closeInfoBox();
1224
1225 // clean up all current selections, just in case
1226 active_feed_cat = false;
1227
1228 // Effect.Fade("prefContent", {duration: 1, to: 0.01,
1229 // queue: { position:'end', scope: 'FEED_TAB', limit: 1 } } );
1230
1231 if (id == "feedConfig") {
1232 updateFeedList();
1233 } else if (id == "filterConfig") {
1234 updateFilterList();
1235 } else if (id == "labelConfig") {
1236 updateLabelList();
1237 } else if (id == "genConfig") {
1238 updatePrefsList();
1239 } else if (id == "userConfig") {
1240 updateUsersList();
1241 }
1242 }
1243
1244 /* clean selection from all tabs */
1245
1246 var tabs_holder = document.getElementById("prefTabs");
1247 var tab = tabs_holder.firstChild;
1248
1249 while (tab) {
1250 if (tab.className && tab.className.match("prefsTabSelected")) {
1251 tab.className = "prefsTab";
1252 }
1253 tab = tab.nextSibling;
1254 }
1255
1256 /* mark new tab as selected */
1257
1258 tab = document.getElementById(id + "Tab");
1259
1260 if (tab) {
1261 if (!tab.className.match("Selected")) {
1262 tab.className = tab.className + "Selected";
1263 }
1264 }
1265
1266 active_tab = id;
1267
1268 } catch (e) {
1269 exception_error("selectTab", e);
1270 }
1271 }
1272
1273 function backend_sanity_check_callback() {
1274
1275 if (xmlhttp.readyState == 4) {
1276
1277 try {
1278
1279 if (sanity_check_done) {
1280 fatalError(11, "Sanity check request received twice. This can indicate "+
1281 "presence of Firebug or some other disrupting extension. "+
1282 "Please disable it and try again.");
1283 return;
1284 }
1285
1286 if (!xmlhttp.responseXML) {
1287 fatalError(3, "Sanity Check: Received reply is not XML",
1288 xmlhttp.responseText);
1289 return;
1290 }
1291
1292 var reply = xmlhttp.responseXML.firstChild.firstChild;
1293
1294 if (!reply) {
1295 fatalError(3, "Sanity Check: Invalid RPC reply", xmlhttp.responseText);
1296 return;
1297 }
1298
1299 var error_code = reply.getAttribute("error-code");
1300
1301 if (error_code && error_code != 0) {
1302 return fatalError(error_code, reply.getAttribute("error-msg"));
1303 }
1304
1305 debug("sanity check ok");
1306
1307 var params = reply.nextSibling;
1308
1309 if (params) {
1310 debug('reading init-params...');
1311 var param = params.firstChild;
1312
1313 while (param) {
1314 var k = param.getAttribute("key");
1315 var v = param.getAttribute("value");
1316 debug(k + " => " + v);
1317 init_params[k] = v;
1318 param = param.nextSibling;
1319 }
1320 }
1321
1322 sanity_check_done = true;
1323
1324 init_second_stage();
1325
1326 } catch (e) {
1327 exception_error("backend_sanity_check_callback", e);
1328 }
1329 }
1330 }
1331
1332 function init_second_stage() {
1333
1334 try {
1335 active_tab = getInitParam("prefs_active_tab");
1336 if (!active_tab || active_tab == '0') active_tab = "genConfig";
1337
1338 document.onkeydown = pref_hotkey_handler;
1339
1340 var tab = getURLParam('tab');
1341
1342 caller_subop = getURLParam('subop');
1343
1344 if (getURLParam("subopparam")) {
1345 caller_subop = caller_subop + ":" + getURLParam("subopparam");
1346 }
1347
1348 if (tab) {
1349 active_tab = tab;
1350 }
1351
1352 if (navigator.userAgent.match("Opera")) {
1353 setTimeout("selectTab()", 500);
1354 } else {
1355 selectTab(active_tab);
1356 }
1357 notify("");
1358
1359 loading_set_progress(60);
1360
1361 } catch (e) {
1362 exception_error("init_second_stage", e);
1363 }
1364 }
1365
1366 function init() {
1367
1368 try {
1369
1370 if (arguments.callee.done) return;
1371 arguments.callee.done = true;
1372
1373 if (getURLParam('debug')) {
1374 Element.show("debug_output");
1375 debug('debug mode activated');
1376 }
1377
1378 // IE kludge
1379 if (!xmlhttp) {
1380 document.getElementById("prefContent").innerHTML =
1381 "<b>Fatal error:</b> This program needs XmlHttpRequest " +
1382 "to function properly. Your browser doesn't seem to support it.";
1383 return;
1384 }
1385
1386 loading_set_progress(30);
1387
1388 xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
1389 xmlhttp.onreadystatechange=backend_sanity_check_callback;
1390 xmlhttp.send(null);
1391
1392 } catch (e) {
1393 exception_error("init", e);
1394 }
1395 }
1396
1397 function categorizeSelectedFeeds() {
1398
1399 if (!xmlhttp_ready(xmlhttp)) {
1400 printLockingError();
1401 return
1402 }
1403
1404 var sel_rows = getSelectedFeeds();
1405
1406 var cat_sel = document.getElementById("sfeed_set_fcat");
1407 var cat_id = cat_sel[cat_sel.selectedIndex].value;
1408
1409 if (sel_rows.length > 0) {
1410
1411 notify_progress("Changing category of selected feeds...");
1412
1413 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
1414 param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
1415 xmlhttp.onreadystatechange=feedlist_callback;
1416 xmlhttp.send(null);
1417
1418 } else {
1419
1420 alert(__("No feeds are selected."));
1421
1422 }
1423
1424 }
1425
1426 function validatePrefsReset() {
1427 try {
1428 var ok = confirm(__("Reset to defaults?"));
1429
1430 if (ok) {
1431
1432 var query = Form.serialize("pref_prefs_form");
1433 query = query + "&subop=reset-config";
1434 debug(query);
1435
1436 xmlhttp.open("POST", "backend.php", true);
1437 xmlhttp.onreadystatechange=prefs_reset_callback;
1438 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1439 xmlhttp.send(query);
1440 }
1441
1442 } catch (e) {
1443 exception_error("validatePrefsSave", e);
1444 }
1445
1446 return false;
1447
1448 }
1449
1450 function browseFeeds(limit) {
1451
1452 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
1453 xmlhttp.onreadystatechange=infobox_callback;
1454 xmlhttp.send(null);
1455
1456 }
1457
1458 function feedBrowserSubscribe() {
1459 try {
1460
1461 var selected = getSelectedFeedsFromBrowser();
1462
1463 if (selected.length > 0) {
1464 closeInfoBox();
1465 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=massSubscribe&ids="+
1466 param_escape(selected.toString()), true);
1467 xmlhttp.onreadystatechange=feedlist_callback;
1468 xmlhttp.send(null);
1469 } else {
1470 alert(__("No feeds are selected."));
1471 }
1472
1473 } catch (e) {
1474 exception_error("feedBrowserSubscribe", e);
1475 }
1476 }
1477
1478 function updateBigFeedBrowserBtn() {
1479 notify_progress("Loading, please wait...");
1480 return updateBigFeedBrowser();
1481 }
1482
1483 function selectPrefRows(kind, select) {
1484
1485 if (kind) {
1486 var opbarid = false;
1487 var nchk = false;
1488 var nrow = false;
1489 var lname = false;
1490
1491 if (kind == "feed") {
1492 opbarid = "feedOpToolbar";
1493 nrow = "FEEDR-";
1494 nchk = "FRCHK-";
1495 lname = "prefFeedList";
1496 } else if (kind == "fcat") {
1497 opbarid = "catOpToolbar";
1498 nrow = "FCATR-";
1499 nchk = "FCCHK-";
1500 lname = "prefFeedCatList";
1501 } else if (kind == "filter") {
1502 opbarid = "filterOpToolbar";
1503 nrow = "FILRR-";
1504 nchk = "FICHK-";
1505 lname = "prefFilterList";
1506 } else if (kind == "label") {
1507 opbarid = "labelOpToolbar";
1508 nrow = "LILRR-";
1509 nchk = "LICHK-";
1510 lname = "prefLabelList";
1511 } else if (kind == "user") {
1512 opbarid = "userOpToolbar";
1513 nrow = "UMRR-";
1514 nchk = "UMCHK-";
1515 lname = "prefUserList";
1516 }
1517
1518 if (opbarid) {
1519 selectTableRowsByIdPrefix(lname, nrow, nchk, select);
1520 disableContainerChildren(opbarid, !select);
1521 }
1522
1523 }
1524 }
1525
1526
1527 function toggleSelectPrefRow(sender, kind) {
1528
1529 toggleSelectRow(sender);
1530
1531 if (kind) {
1532 var opbarid = false;
1533 var nsel = -1;
1534
1535 if (kind == "feed") {
1536 opbarid = "feedOpToolbar";
1537 nsel = getSelectedFeeds();
1538 } else if (kind == "fcat") {
1539 opbarid = "catOpToolbar";
1540 nsel = getSelectedFeedCats();
1541 } else if (kind == "filter") {
1542 opbarid = "filterOpToolbar";
1543 nsel = getSelectedFilters();
1544 } else if (kind == "label") {
1545 opbarid = "labelOpToolbar";
1546 nsel = getSelectedLabels();
1547 } else if (kind == "user") {
1548 opbarid = "userOpToolbar";
1549 nsel = getSelectedUsers();
1550 }
1551
1552 if (opbarid && nsel != -1) {
1553 disableContainerChildren(opbarid, nsel == false);
1554 }
1555
1556 }
1557 }
1558
1559 function toggleSelectFBListRow(sender) {
1560 toggleSelectListRow(sender);
1561 disableContainerChildren("fbrOpToolbar", getSelectedFeedsFromBrowser() == 0);
1562 }
1563
1564 var seq = "";
1565
1566 function pref_hotkey_handler(e) {
1567 try {
1568
1569 var keycode;
1570 var shift_key = false;
1571
1572 try {
1573 shift_key = e.shiftKey;
1574 } catch (e) {
1575
1576 }
1577
1578 if (window.event) {
1579 keycode = window.event.keyCode;
1580 } else if (e) {
1581 keycode = e.which;
1582 }
1583
1584 var keychar = String.fromCharCode(keycode);
1585
1586 if (keycode == 27) { // escape
1587 if (Element.visible("hotkey_help_overlay")) {
1588 Element.hide("hotkey_help_overlay");
1589 }
1590 hotkey_prefix = false;
1591 closeInfoBox();
1592 }
1593
1594 if (!hotkeys_enabled) {
1595 debug("hotkeys disabled");
1596 return;
1597 }
1598
1599 if (keycode == 16) return; // ignore lone shift
1600
1601 if ((keycode == 67 || keycode == 71) && !hotkey_prefix) {
1602 hotkey_prefix = keycode;
1603 debug("KP: PREFIX=" + keycode + " CHAR=" + keychar);
1604 return;
1605 }
1606
1607 if (Element.visible("hotkey_help_overlay")) {
1608 Element.hide("hotkey_help_overlay");
1609 }
1610
1611 if (keycode == 13 || keycode == 27) {
1612 seq = "";
1613 } else {
1614 seq = seq + "" + keycode;
1615 }
1616
1617 /* Global hotkeys */
1618
1619 if (!hotkey_prefix) {
1620
1621 if (keycode == 68 && shift_key) { // d
1622 if (!Element.visible("debug_output")) {
1623 Element.show("debug_output");
1624 debug('debug mode activated');
1625 } else {
1626 Element.hide("debug_output");
1627 }
1628 return;
1629 }
1630
1631 if ((keycode == 191 || keychar == '?') && shift_key) { // ?
1632 if (!Element.visible("hotkey_help_overlay")) {
1633 //Element.show("hotkey_help_overlay");
1634 Effect.Appear("hotkey_help_overlay", {duration : 0.3});
1635 } else {
1636 Element.hide("hotkey_help_overlay");
1637 }
1638 return false;
1639 }
1640
1641 if (keycode == 191 || keychar == '/') { // /
1642 var search_boxes = new Array("label_search",
1643 "feed_search", "filter_search", "user_search", "feed_browser_search");
1644
1645 for (var i = 0; i < search_boxes.length; i++) {
1646 var elem = document.getElementById(search_boxes[i]);
1647 if (elem) {
1648 focus_element(search_boxes[i]);
1649 return false;
1650 }
1651 }
1652 }
1653 }
1654
1655 /* Prefix c */
1656
1657 if (hotkey_prefix == 67) { // c
1658 hotkey_prefix = false;
1659
1660 if (keycode == 70) { // f
1661 displayDlg("quickAddFilter");
1662 return false;
1663 }
1664
1665 if (keycode == 83) { // s
1666 displayDlg("quickAddFeed");
1667 return false;
1668 }
1669
1670 /* if (keycode == 76) { // l
1671 displayDlg("quickAddLabel");
1672 return false;
1673 } */
1674
1675 if (keycode == 85) { // u
1676 // no-op
1677 }
1678
1679 if (keycode == 67) { // c
1680 editFeedCats();
1681 return false;
1682 }
1683
1684 if (keycode == 84 && shift_key) { // T
1685 browseFeeds();
1686 return false;
1687 }
1688
1689 }
1690
1691 /* Prefix g */
1692
1693 if (hotkey_prefix == 71) { // g
1694
1695 hotkey_prefix = false;
1696
1697 if (keycode == 49 && document.getElementById("genConfigTab")) { // 1
1698 selectTab("genConfig");
1699 return false;
1700 }
1701
1702 if (keycode == 50 && document.getElementById("feedConfigTab")) { // 2
1703 selectTab("feedConfig");
1704 return false;
1705 }
1706
1707 if (keycode == 51 && document.getElementById("filterConfigTab")) { // 4
1708 selectTab("filterConfig");
1709 return false;
1710 }
1711
1712 if (keycode == 52 && document.getElementById("labelConfigTab")) { // 5
1713 selectTab("labelConfig");
1714 return false;
1715 }
1716
1717 if (keycode == 53 && document.getElementById("userConfigTab")) { // 6
1718 selectTab("userConfig");
1719 return false;
1720 }
1721
1722 if (keycode == 88) { // x
1723 return gotoMain();
1724 }
1725
1726 }
1727
1728 if (document.getElementById("piggie")) {
1729
1730 if (seq.match("807371717369")) {
1731 seq = "";
1732 piggie(true);
1733 } else {
1734 piggie(false);
1735 }
1736 }
1737
1738 if (hotkey_prefix) {
1739 debug("KP: PREFIX=" + hotkey_prefix + " CODE=" + keycode + " CHAR=" + keychar);
1740 } else {
1741 debug("KP: CODE=" + keycode + " CHAR=" + keychar);
1742 }
1743
1744 } catch (e) {
1745 exception_error("pref_hotkey_handler", e);
1746 }
1747 }
1748
1749 function editFeedCats() {
1750 if (!xmlhttp_ready(xmlhttp)) {
1751 printLockingError();
1752 return
1753 }
1754
1755 document.getElementById("subscribe_to_feed_btn").disabled = true;
1756
1757 try {
1758 document.getElementById("top25_feeds_btn").disabled = true;
1759 } catch (e) {
1760 // this button is not always available, no-op if not found
1761 }
1762
1763 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
1764 xmlhttp.onreadystatechange=infobox_feed_cat_callback;
1765 xmlhttp.send(null);
1766 }
1767
1768 function showFeedsWithErrors() {
1769 displayDlg('feedUpdateErrors');
1770 }
1771
1772 function changeUserPassword() {
1773
1774 try {
1775
1776 if (!xmlhttp_ready(xmlhttp)) {
1777 printLockingError();
1778 return false;
1779 }
1780
1781 var f = document.forms["change_pass_form"];
1782
1783 if (f) {
1784 if (f.OLD_PASSWORD.value == "") {
1785 new Effect.Highlight(f.OLD_PASSWORD);
1786 notify_error("Old password cannot be blank.");
1787 return false;
1788 }
1789
1790 if (f.NEW_PASSWORD.value == "") {
1791 new Effect.Highlight(f.NEW_PASSWORD);
1792 notify_error("New password cannot be blank.");
1793 return false;
1794 }
1795
1796 if (f.CONFIRM_PASSWORD.value == "") {
1797 new Effect.Highlight(f.CONFIRM_PASSWORD);
1798 notify_error("Entered passwords do not match.");
1799 return false;
1800 }
1801
1802 if (f.CONFIRM_PASSWORD.value != f.NEW_PASSWORD.value) {
1803 new Effect.Highlight(f.CONFIRM_PASSWORD);
1804 new Effect.Highlight(f.NEW_PASSWORD);
1805 notify_error("Entered passwords do not match.");
1806 return false;
1807 }
1808
1809 }
1810
1811 var query = Form.serialize("change_pass_form");
1812
1813 notify_progress("Trying to change password...");
1814
1815 xmlhttp.open("POST", "backend.php", true);
1816 xmlhttp.onreadystatechange=changepass_callback;
1817 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1818 xmlhttp.send(query);
1819
1820 } catch (e) {
1821 exception_error("changeUserPassword", e);
1822 }
1823
1824 return false;
1825 }
1826
1827 function changeUserEmail() {
1828
1829 try {
1830
1831 if (!xmlhttp_ready(xmlhttp)) {
1832 printLockingError();
1833 return false;
1834 }
1835
1836 var query = Form.serialize("change_email_form");
1837
1838 notify_progress("Trying to change e-mail...");
1839
1840 xmlhttp.open("POST", "backend.php", true);
1841 xmlhttp.onreadystatechange=notify_callback;
1842 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1843 xmlhttp.send(query);
1844
1845 } catch (e) {
1846 exception_error("changeUserPassword", e);
1847 }
1848
1849 return false;
1850
1851 }
1852
1853 function feedlistToggleSLAT() {
1854 notify_progress("Loading, please wait...");
1855 updateFeedList()
1856 }
1857
1858 function pubRegenKey() {
1859
1860 if (!xmlhttp_ready(xmlhttp)) {
1861 printLockingError();
1862 return false;
1863 }
1864
1865 var ok = confirm(__("Replace current publishing address with a new one?"));
1866
1867 if (ok) {
1868
1869 notify_progress("Trying to change address...");
1870
1871 xmlhttp.open("GET", "backend.php?op=rpc&subop=regenPubKey");
1872 xmlhttp.onreadystatechange=replace_pubkey_callback;
1873 xmlhttp.send(null);
1874 }
1875
1876 return false;
1877 }
1878
1879 function pubToClipboard() {
1880
1881 try {
1882
1883 if (!xmlhttp_ready(xmlhttp)) {
1884 printLockingError();
1885 return false;
1886 }
1887
1888 var link = document.getElementById("pubGenAddress");
1889 alert(link.href);
1890
1891 } catch (e) {
1892 exception_error("pubToClipboard", e);
1893 }
1894
1895 return false;
1896 }
1897
1898 function validatePrefsSave() {
1899 try {
1900
1901 var ok = confirm(__("Save current configuration?"));
1902
1903 if (ok) {
1904
1905 var query = Form.serialize("pref_prefs_form");
1906 query = query + "&subop=save-config";
1907 debug(query);
1908
1909 xmlhttp.open("POST", "backend.php", true);
1910 xmlhttp.onreadystatechange=notify_callback;
1911 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1912 xmlhttp.send(query);
1913 }
1914
1915 } catch (e) {
1916 exception_error("validatePrefsSave", e);
1917 }
1918
1919 return false;
1920 }
1921
1922 function feedActionChange() {
1923 try {
1924 var chooser = document.getElementById("feedActionChooser");
1925 var opid = chooser[chooser.selectedIndex].value;
1926
1927 chooser.selectedIndex = 0;
1928 feedActionGo(opid);
1929 } catch (e) {
1930 exception_error("feedActionChange", e);
1931 }
1932 }
1933
1934 function feedActionGo(op) {
1935 try {
1936 if (op == "facEdit") {
1937
1938 var rows = getSelectedFeeds();
1939
1940 if (rows.length > 1) {
1941 editSelectedFeeds();
1942 } else {
1943 editSelectedFeed();
1944 }
1945 }
1946
1947 if (op == "facClear") {
1948 clearSelectedFeeds();
1949 }
1950
1951 if (op == "facPurge") {
1952 purgeSelectedFeeds();
1953 }
1954
1955 if (op == "facEditCats") {
1956 editFeedCats();
1957 }
1958
1959 if (op == "facRescore") {
1960 rescoreSelectedFeeds();
1961 }
1962
1963 if (op == "facUnsubscribe") {
1964 removeSelectedFeeds();
1965 }
1966
1967 } catch (e) {
1968 exception_error("feedActionGo", e);
1969
1970 }
1971 }
1972
1973 function clearFeedArticles(feed_id) {
1974
1975 notify_progress("Clearing feed...");
1976
1977 var query = "backend.php?op=pref-feeds&quiet=1&subop=clear&id=" + feed_id;
1978
1979 new Ajax.Request(query, {
1980 onComplete: function(transport) {
1981 notify('');
1982 } });
1983
1984 return false;
1985 }
1986
1987 function rescoreSelectedFeeds() {
1988
1989 if (!xmlhttp_ready(xmlhttp)) {
1990 printLockingError();
1991 return
1992 }
1993
1994 var sel_rows = getSelectedFeeds();
1995
1996 if (sel_rows.length > 0) {
1997
1998 //var ok = confirm(__("Rescore last 100 articles in selected feeds?"));
1999 var ok = confirm(__("Rescore articles in selected feeds?"));
2000
2001 if (ok) {
2002 notify_progress("Rescoring selected feeds...", true);
2003
2004 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
2005 param_escape(sel_rows.toString()), true);
2006 xmlhttp.onreadystatechange=notify_callback;
2007 xmlhttp.send(null);
2008 }
2009 } else {
2010 alert(__("No feeds are selected."));
2011 }
2012
2013 return false;
2014 }
2015
2016 function rescore_all_feeds() {
2017 var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
2018
2019 if (ok) {
2020 notify_progress("Rescoring feeds...", true);
2021
2022 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
2023 xmlhttp.onreadystatechange=notify_callback;
2024 xmlhttp.send(null);
2025 }
2026 }
2027
2028 function removeFilter(id, title) {
2029
2030 if (!xmlhttp_ready(xmlhttp)) {
2031 printLockingError();
2032 return
2033 }
2034
2035 var msg = __("Remove filter %s?").replace("%s", title);
2036
2037 var ok = confirm(msg);
2038
2039 if (ok) {
2040 closeInfoBox();
2041
2042 notify_progress("Removing filter...");
2043
2044 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
2045 param_escape(id), true);
2046 xmlhttp.onreadystatechange=filterlist_callback;
2047 xmlhttp.send(null);
2048 }
2049
2050 return false;
2051 }
2052
2053 function unsubscribeFeed(id, title) {
2054
2055 if (!xmlhttp_ready(xmlhttp)) {
2056 printLockingError();
2057 return
2058 }
2059
2060 var msg = __("Unsubscribe from %s?").replace("%s", title);
2061
2062 var ok = confirm(msg);
2063
2064 if (ok) {
2065 closeInfoBox();
2066
2067 notify_progress("Removing feed...");
2068
2069 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
2070 param_escape(id), true);
2071 xmlhttp.onreadystatechange=filterlist_callback;
2072 xmlhttp.send(null);
2073 }
2074
2075 return false;
2076
2077 return false;
2078
2079 }
2080
2081 function feedsEditSave() {
2082 try {
2083
2084 if (!xmlhttp_ready(xmlhttp)) {
2085 printLockingError();
2086 return
2087 }
2088
2089 var ok = confirm(__("Save changes to selected feeds?"));
2090
2091 if (ok) {
2092
2093 var f = document.forms["batch_edit_feed_form"];
2094
2095 var query = Form.serialize("batch_edit_feed_form");
2096
2097 /* Form.serialize ignores unchecked checkboxes */
2098
2099 if (!query.match("&hidden=") &&
2100 f.hidden.disabled == false) {
2101 query = query + "&hidden=false";
2102 }
2103
2104 if (!query.match("&rtl_content=") &&
2105 f.rtl_content.disabled == false) {
2106 query = query + "&rtl_content=false";
2107 }
2108
2109 if (!query.match("&private=") &&
2110 f.private.disabled == false) {
2111 query = query + "&private=false";
2112 }
2113
2114 if (!query.match("&cache_images=") &&
2115 f.cache_images.disabled == false) {
2116 query = query + "&cache_images=false";
2117 }
2118
2119 if (!query.match("&include_in_digest=") &&
2120 f.include_in_digest.disabled == false) {
2121 query = query + "&include_in_digest=false";
2122 }
2123
2124 closeInfoBox();
2125
2126 notify_progress("Saving feeds...");
2127
2128 xmlhttp.open("POST", "backend.php", true);
2129 xmlhttp.onreadystatechange=feedlist_callback;
2130 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
2131 xmlhttp.send(query);
2132 }
2133
2134 return false;
2135 } catch (e) {
2136 exception_error("feedsEditSave", e);
2137 }
2138 }
2139
2140 function batchFeedsToggleField(cb, elem, label) {
2141 try {
2142 var f = document.forms["batch_edit_feed_form"];
2143 var l = document.getElementById(label);
2144
2145 if (cb.checked) {
2146 f[elem].disabled = false;
2147
2148 if (l) {
2149 l.className = "";
2150 };
2151
2152 // new Effect.Highlight(f[elem], {duration: 1, startcolor: "#fff7d5",
2153 // queue: { position:'end', scope: 'BPEFQ', limit: 1 } } );
2154
2155 } else {
2156 f[elem].disabled = true;
2157
2158 if (l) {
2159 l.className = "insensitive";
2160 };
2161
2162 }
2163 } catch (e) {
2164 exception_error("batchFeedsToggleField", e);
2165 }
2166 }
2167
2168