3 var active_feed_cat = false;
4 var active_label = false;
5 var active_tab = false;
6 var feed_to_expand = false;
8 var xmlhttp = Ajax.getTransport();
10 var init_params = new Array();
12 var caller_subop = false;
13 var sanity_check_done = false;
14 var hotkey_prefix = false;
16 function infobox_callback() {
17 if (xmlhttp.readyState == 4) {
18 infobox_callback2(xmlhttp);
22 function infobox_submit_callback() {
23 if (xmlhttp.readyState == 4) {
24 infobox_submit_callback2(xmlhttp);
29 function replace_pubkey_callback() {
30 if (xmlhttp.readyState == 4) {
32 var link = document.getElementById("pubGenAddress");
34 if (xmlhttp.responseXML) {
36 var new_link = xmlhttp.responseXML.getElementsByTagName("link")[0];
39 link.href = new_link.firstChild.nodeValue;
40 //link.innerHTML = new_link.firstChild.nodeValue;
42 new Effect.Highlight(link);
44 notify_info("Published feed URL changed.");
46 notify_error("Could not change feed URL.");
50 notify_error("Could not change feed URL.");
53 exception_error("replace_pubkey_callback", e);
58 function expand_feed_callback() {
59 if (xmlhttp.readyState == 4) {
61 var container = document.getElementById("BRDET-" + feed_to_expand);
62 container.innerHTML=xmlhttp.responseText;
63 // container.style.display = "block";
64 Effect.Appear(container, {duration : 0.5});
66 exception_error("expand_feed_callback", e);
71 function feedlist_callback() {
72 if (xmlhttp.readyState == 4) {
74 var container = document.getElementById('prefContent');
75 container.innerHTML=xmlhttp.responseText;
76 selectTab("feedConfig", true);
79 var tuple = caller_subop.split(":");
80 if (tuple[0] == 'editFeed') {
81 window.setTimeout('editFeed('+tuple[1]+')', 100);
86 if (typeof correctPNG != 'undefined') {
93 exception_error("feedlist_callback", e);
98 /* stub for subscription dialog */
100 function dlg_frefresh_callback(transport) {
103 var container = document.getElementById('prefContent');
104 container.innerHTML=transport.responseText;
105 selectTab("feedConfig", true);
108 var tuple = caller_subop.split(":");
109 if (tuple[0] == 'editFeed') {
110 window.setTimeout('editFeed('+tuple[1]+')', 100);
113 caller_subop = false;
115 if (typeof correctPNG != 'undefined') {
120 exception_error("feedlist_callback", e);
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') {
137 function labellist_callback() {
138 var container = document.getElementById('prefContent');
139 if (xmlhttp.readyState == 4) {
141 container.innerHTML=xmlhttp.responseText;
143 var row = document.getElementById("LILRR-" + active_label);
145 if (!row.className.match("Selected")) {
146 row.className = row.className + "Selected";
149 var checkbox = document.getElementById("LICHK-" + active_label);
152 checkbox.checked = true;
155 if (typeof correctPNG != 'undefined') {
163 function feed_browser_callback() {
164 var container = document.getElementById('prefContent');
165 if (xmlhttp.readyState == 4) {
166 container.innerHTML=xmlhttp.responseText;
172 function userlist_callback() {
173 var container = document.getElementById('prefContent');
174 if (xmlhttp.readyState == 4) {
175 container.innerHTML=xmlhttp.responseText;
181 function prefslist_callback() {
182 var container = document.getElementById('prefContent');
183 if (xmlhttp.readyState == 4) {
184 container.innerHTML=xmlhttp.responseText;
190 function gethelp_callback() {
191 var container = document.getElementById('prefHelpBox');
192 if (xmlhttp.readyState == 4) {
194 container.innerHTML = xmlhttp.responseText;
195 container.style.display = "block";
200 function notify_callback() {
201 if (xmlhttp.readyState == 4) {
202 notify_info(xmlhttp.responseText);
206 function prefs_reset_callback() {
207 if (xmlhttp.readyState == 4) {
208 notify_info(xmlhttp.responseText);
214 function changepass_callback() {
216 if (xmlhttp.readyState == 4) {
218 if (xmlhttp.responseText.indexOf("ERROR: ") == 0) {
219 notify_error(xmlhttp.responseText.replace("ERROR: ", ""));
221 notify_info(xmlhttp.responseText);
222 var warn = document.getElementById("default_pass_warning");
223 if (warn) warn.style.display = "none";
226 document.forms['change_pass_form'].reset();
230 exception_error("changepass_callback", e);
234 function infobox_feed_cat_callback() {
235 if (xmlhttp.readyState == 4) {
240 if (document.getElementById("prefFeedCatList")) {
241 var elems = document.getElementById("prefFeedCatList").getElementsByTagName("SPAN");
243 for (var i = 0; i < elems.length; i++) {
244 if (elems[i].id && elems[i].id.match("FCATT-")) {
245 var cat_id = elems[i].id.replace("FCATT-", "");
247 new Ajax.InPlaceEditor(elems[i],
248 'backend.php?op=pref-feeds&subop=editCats&action=save&cid=' + cat_id);
254 exception_error("infobox_feed_cat_callback", e);
259 function updateFeedList(sort_key) {
261 if (!xmlhttp_ready(xmlhttp)) {
266 var feed_search = document.getElementById("feed_search");
268 if (feed_search) { search = feed_search.value; }
270 var slat = document.getElementById("show_last_article_times");
272 var slat_checked = false;
274 slat_checked = slat.checked;
277 xmlhttp.open("GET", "backend.php?op=pref-feeds" +
278 "&sort=" + param_escape(sort_key) +
279 "&slat=" + param_escape(slat_checked) +
280 "&search=" + param_escape(search), true);
281 xmlhttp.onreadystatechange=feedlist_callback;
286 function updateUsersList(sort_key) {
288 if (!xmlhttp_ready(xmlhttp)) {
293 var user_search = document.getElementById("user_search");
295 if (user_search) { search = user_search.value; }
297 xmlhttp.open("GET", "backend.php?op=pref-users&sort="
298 + param_escape(sort_key) +
299 "&search=" + param_escape(search), true);
300 xmlhttp.onreadystatechange=userlist_callback;
305 function addLabel() {
307 if (!xmlhttp_ready(xmlhttp)) {
312 var form = document.forms['label_edit_form'];
314 var sql_exp = form.sql_exp.value;
315 var description = form.description.value;
318 alert(__("Can't create label: missing SQL expression."));
322 if (description == "") {
323 alert(__("Can't create label: missing caption."));
327 var query = Form.serialize("label_edit_form");
329 // we can be called from some other tab
330 active_tab = "labelConfig";
332 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&" + query, true);
333 xmlhttp.onreadystatechange=infobox_submit_callback;
339 if (!xmlhttp_ready(xmlhttp)) {
344 var link = document.getElementById("fadd_link");
346 if (link.value.length == 0) {
347 alert(__("Error: No feed URL given."));
348 } else if (!isValidURL(link.value)) {
349 alert(__("Error: Invalid feed URL."));
351 notify_progress("Adding feed...");
353 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&from=tt-rss&feed_url=" +
354 param_escape(link.value), true);
355 xmlhttp.onreadystatechange=feedlist_callback;
364 function addFeedCat() {
366 if (!xmlhttp_ready(xmlhttp)) {
371 var cat = document.getElementById("fadd_cat");
373 if (cat.value.length == 0) {
374 alert(__("Can't add category: no name specified."));
376 notify_progress("Adding feed category...");
378 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=add&cat=" +
379 param_escape(cat.value), true);
380 xmlhttp.onreadystatechange=infobox_callback;
390 if (!xmlhttp_ready(xmlhttp)) {
395 var sqlexp = document.getElementById("uadd_box");
397 if (sqlexp.value.length == 0) {
398 alert(__("Can't add user: no login specified."));
400 notify_progress("Adding user...");
402 xmlhttp.open("GET", "backend.php?op=pref-users&subop=add&login=" +
403 param_escape(sqlexp.value), true);
405 xmlhttp.onreadystatechange=userlist_callback;
413 function editLabel(id) {
415 if (!xmlhttp_ready(xmlhttp)) {
422 notify_progress("Loading, please wait...");
424 // document.getElementById("label_create_btn").disabled = true;
428 selectTableRowsByIdPrefix('prefLabelList', 'LILRR-', 'LICHK-', false);
429 selectTableRowById('LILRR-'+id, 'LICHK-'+id, true);
431 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
432 param_escape(id), true);
433 xmlhttp.onreadystatechange=infobox_callback;
438 function editUser(id) {
440 if (!xmlhttp_ready(xmlhttp)) {
447 notify_progress("Loading, please wait...");
449 selectTableRowsByIdPrefix('prefUserList', 'UMRR-', 'UMCHK-', false);
450 selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
452 xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
453 param_escape(id), true);
454 xmlhttp.onreadystatechange=infobox_callback;
459 function editFilter(id) {
461 if (!xmlhttp_ready(xmlhttp)) {
468 notify_progress("Loading, please wait...");
470 // document.getElementById("create_filter_btn").disabled = true;
472 selectTableRowsByIdPrefix('prefFilterList', 'FILRR-', 'FICHK-', false);
473 selectTableRowById('FILRR-'+id, 'FICHK-'+id, true);
475 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" + param_escape(id), true);
476 xmlhttp.onreadystatechange=infobox_callback;
480 function editFeed(feed) {
482 // notify("Editing feed...");
484 if (!xmlhttp_ready(xmlhttp)) {
491 notify_progress("Loading, please wait...");
493 /* document.getElementById("subscribe_to_feed_btn").disabled = true;
496 document.getElementById("top25_feeds_btn").disabled = true;
498 // this button is not always available, no-op if not found
501 // clean selection from all rows & select row being edited
502 selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
503 selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
505 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
506 param_escape(feed), true);
508 xmlhttp.onreadystatechange=infobox_callback;
513 function editFeedCat(cat) {
515 if (!xmlhttp_ready(xmlhttp)) {
522 notify_progress("Loading, please wait...");
524 active_feed_cat = cat;
526 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=edit&id=" +
527 param_escape(cat), true);
528 xmlhttp.onreadystatechange=infobox_callback;
533 function getSelectedLabels() {
534 return getSelectedTableRowIds("prefLabelList", "LILRR");
537 function getSelectedUsers() {
538 return getSelectedTableRowIds("prefUserList", "UMRR");
541 function getSelectedFeeds() {
542 return getSelectedTableRowIds("prefFeedList", "FEEDR");
545 function getSelectedFilters() {
546 return getSelectedTableRowIds("prefFilterList", "FILRR");
549 function getSelectedFeedCats() {
550 return getSelectedTableRowIds("prefFeedCatList", "FCATR");
553 function getSelectedFeedsFromBrowser() {
555 var list = document.getElementById("browseFeedList");
556 if (!list) list = document.getElementById("browseBigFeedList");
558 var selected = new Array();
560 for (i = 0; i < list.childNodes.length; i++) {
561 var child = list.childNodes[i];
562 if (child.id && child.id.match("FBROW-")) {
563 var id = child.id.replace("FBROW-", "");
565 var cb = document.getElementById("FBCHK-" + id);
576 function removeSelectedLabels() {
578 if (!xmlhttp_ready(xmlhttp)) {
583 var sel_rows = getSelectedLabels();
585 if (sel_rows.length > 0) {
587 var ok = confirm(__("Remove selected labels?"));
590 notify_progress("Removing selected labels...");
592 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
593 param_escape(sel_rows.toString()), true);
594 xmlhttp.onreadystatechange=labellist_callback;
598 alert(__("No labels are selected."));
604 function removeSelectedUsers() {
606 if (!xmlhttp_ready(xmlhttp)) {
611 var sel_rows = getSelectedUsers();
613 if (sel_rows.length > 0) {
615 var ok = confirm(__("Remove selected users?"));
618 notify_progress("Removing selected users...");
620 xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
621 param_escape(sel_rows.toString()), true);
622 xmlhttp.onreadystatechange=userlist_callback;
627 alert(__("No users are selected."));
633 function removeSelectedFilters() {
635 if (!xmlhttp_ready(xmlhttp)) {
640 var sel_rows = getSelectedFilters();
642 if (sel_rows.length > 0) {
644 var ok = confirm(__("Remove selected filters?"));
647 notify_progress("Removing selected filters...");
649 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
650 param_escape(sel_rows.toString()), true);
651 xmlhttp.onreadystatechange=filterlist_callback;
655 alert(__("No filters are selected."));
662 function removeSelectedFeeds() {
664 if (!xmlhttp_ready(xmlhttp)) {
669 var sel_rows = getSelectedFeeds();
671 if (sel_rows.length > 0) {
673 var ok = confirm(__("Unsubscribe from selected feeds?"));
677 notify_progress("Unsubscribing from selected feeds...");
679 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
680 param_escape(sel_rows.toString()), true);
681 xmlhttp.onreadystatechange=feedlist_callback;
687 alert(__("No feeds are selected."));
694 function clearSelectedFeeds() {
696 if (!xmlhttp_ready(xmlhttp)) {
701 var sel_rows = getSelectedFeeds();
703 if (sel_rows.length > 1) {
704 alert(__("Please select only one feed."));
708 if (sel_rows.length > 0) {
710 var ok = confirm(__("Erase all non-starred articles in selected feed?"));
713 notify_progress("Clearing selected feed...");
714 clearFeedArticles(sel_rows[0]);
719 alert(__("No feeds are selected."));
726 function purgeSelectedFeeds() {
728 if (!xmlhttp_ready(xmlhttp)) {
733 var sel_rows = getSelectedFeeds();
735 if (sel_rows.length > 0) {
737 var pr = prompt(__("How many days of articles to keep (0 - use default)?"), "0");
739 if (pr != undefined) {
740 notify_progress("Purging selected feed...");
742 var query = "backend.php?op=rpc&subop=purge&ids="+
743 param_escape(sel_rows.toString()) + "&days=" + pr;
747 new Ajax.Request(query, {
748 onComplete: function(transport) {
755 alert(__("No feeds are selected."));
762 function removeSelectedFeedCats() {
764 if (!xmlhttp_ready(xmlhttp)) {
769 var sel_rows = getSelectedFeedCats();
771 if (sel_rows.length > 0) {
773 var ok = confirm(__("Remove selected categories?"));
776 notify_progress("Removing selected categories...");
778 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=remove&ids="+
779 param_escape(sel_rows.toString()), true);
780 xmlhttp.onreadystatechange=infobox_callback;
786 alert(__("No categories are selected."));
793 function feedEditCancel() {
795 if (!xmlhttp_ready(xmlhttp)) {
801 document.getElementById("subscribe_to_feed_btn").disabled = false;
802 document.getElementById("top25_feeds_btn").disabled = false;
804 // this button is not always available, no-op if not found
809 selectPrefRows('feed', false); // cleanup feed selection
814 function feedCatEditCancel() {
816 if (!xmlhttp_ready(xmlhttp)) {
821 active_feed_cat = false;
823 // notify("Operation cancelled.");
825 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
826 xmlhttp.onreadystatechange=infobox_callback;
832 function feedEditSave() {
836 if (!xmlhttp_ready(xmlhttp)) {
841 // FIXME: add parameter validation
843 var query = Form.serialize("edit_feed_form");
845 notify_progress("Saving feed...");
847 xmlhttp.open("POST", "backend.php", true);
848 xmlhttp.onreadystatechange=feedlist_callback;
849 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
857 exception_error("feedEditSave", e);
861 function feedCatEditSave() {
863 if (!xmlhttp_ready(xmlhttp)) {
868 notify_progress("Saving category...");
870 var query = Form.serialize("feed_cat_edit_form");
872 xmlhttp.open("GET", "backend.php?" + query, true);
873 xmlhttp.onreadystatechange=infobox_callback;
876 active_feed_cat = false;
881 function labelEditCancel() {
883 if (!xmlhttp_ready(xmlhttp)) {
889 document.getElementById("label_create_btn").disabled = false;
890 selectPrefRows('label', false); // cleanup feed selection
893 active_label = false;
900 function userEditCancel() {
902 if (!xmlhttp_ready(xmlhttp)) {
907 selectPrefRows('user', false); // cleanup feed selection
913 function filterEditCancel() {
915 if (!xmlhttp_ready(xmlhttp)) {
921 document.getElementById("create_filter_btn").disabled = false;
922 selectPrefRows('filter', false); // cleanup feed selection
930 function labelEditSave() {
932 var label = active_label;
934 if (!xmlhttp_ready(xmlhttp)) {
939 /* if (!is_opera()) {
941 var sql_exp = document.forms["label_edit_form"].sql_exp.value;
942 var description = document.forms["label_edit_form"].description.value;
944 if (sql_exp.length == 0) {
945 alert("SQL Expression cannot be blank.");
949 if (description.length == 0) {
950 alert("Caption field cannot be blank.");
957 notify_progress("Saving label...");
959 active_label = false;
961 query = Form.serialize("label_edit_form");
963 xmlhttp.open("GET", "backend.php?" + query, true);
964 xmlhttp.onreadystatechange=labellist_callback;
970 function userEditSave() {
972 if (!xmlhttp_ready(xmlhttp)) {
977 var login = document.forms["user_edit_form"].login.value;
979 if (login.length == 0) {
980 alert(__("Login field cannot be blank."));
984 notify_progress("Saving user...");
988 var query = Form.serialize("user_edit_form");
990 xmlhttp.open("GET", "backend.php?" + query, true);
991 xmlhttp.onreadystatechange=userlist_callback;
998 function filterEditSave() {
1000 if (!xmlhttp_ready(xmlhttp)) {
1001 printLockingError();
1005 /* if (!is_opera()) {
1006 var reg_exp = document.forms["filter_edit_form"].reg_exp.value;
1008 if (reg_exp.length == 0) {
1009 alert("Filter expression field cannot be blank.");
1014 notify_progress("Saving filter...");
1016 var query = Form.serialize("filter_edit_form");
1020 document.getElementById("create_filter_btn").disabled = false;
1022 xmlhttp.open("GET", "backend.php?" + query, true);
1023 xmlhttp.onreadystatechange=filterlist_callback;
1029 function editSelectedLabel() {
1030 var rows = getSelectedLabels();
1032 if (rows.length == 0) {
1033 alert(__("No labels are selected."));
1037 if (rows.length > 1) {
1038 alert(__("Please select only one label."));
1048 function editSelectedUser() {
1049 var rows = getSelectedUsers();
1051 if (rows.length == 0) {
1052 alert(__("No users are selected."));
1056 if (rows.length > 1) {
1057 alert(__("Please select only one user."));
1066 function resetSelectedUserPass() {
1067 var rows = getSelectedUsers();
1069 if (rows.length == 0) {
1070 alert(__("No users are selected."));
1074 if (rows.length > 1) {
1075 alert(__("Please select only one user."));
1079 var ok = confirm(__("Reset password of selected user?"));
1082 notify_progress("Resetting password for selected user...");
1086 xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
1087 param_escape(id), true);
1088 xmlhttp.onreadystatechange=userlist_callback;
1093 function selectedUserDetails() {
1095 if (!xmlhttp_ready(xmlhttp)) {
1096 printLockingError();
1100 var rows = getSelectedUsers();
1102 if (rows.length == 0) {
1103 alert(__("No users are selected."));
1107 if (rows.length > 1) {
1108 alert(__("Please select only one user."));
1112 notify_progress("Loading, please wait...");
1116 xmlhttp.open("GET", "backend.php?op=user-details&id=" + id, true);
1117 xmlhttp.onreadystatechange=infobox_callback;
1122 function selectedFeedDetails() {
1124 if (!xmlhttp_ready(xmlhttp)) {
1125 printLockingError();
1129 var rows = getSelectedFeeds();
1131 if (rows.length == 0) {
1132 alert(__("No feeds are selected."));
1136 if (rows.length > 1) {
1137 alert(__("Please select only one feed."));
1141 // var id = rows[0];
1145 xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
1146 param_escape(rows.toString()), true);
1147 xmlhttp.onreadystatechange=infobox_callback;
1152 function editSelectedFilter() {
1153 var rows = getSelectedFilters();
1155 if (rows.length == 0) {
1156 alert(__("No filters are selected."));
1160 if (rows.length > 1) {
1161 alert(__("Please select only one filter."));
1167 editFilter(rows[0]);
1172 function editSelectedFeed() {
1173 var rows = getSelectedFeeds();
1175 if (rows.length == 0) {
1176 alert(__("No feeds are selected."));
1180 if (rows.length > 1) {
1181 alert(__("Please select one feed."));
1191 function editSelectedFeedCat() {
1192 var rows = getSelectedFeedCats();
1194 if (rows.length == 0) {
1195 alert(__("No categories are selected."));
1199 if (rows.length > 1) {
1200 alert(__("Please select only one category."));
1206 editFeedCat(rows[0]);
1210 function piggie(enable) {
1212 debug("I LOVEDED IT!");
1213 var piggie = document.getElementById("piggie");
1215 Element.show(piggie);
1216 Position.Center(piggie);
1217 Effect.Puff(piggie);
1222 function validateOpmlImport() {
1224 var opml_file = document.getElementById("opml_file");
1226 if (opml_file.value.length == 0) {
1227 alert(__("No OPML file to upload."));
1234 function updateFilterList(sort_key) {
1236 if (!xmlhttp_ready(xmlhttp)) {
1237 printLockingError();
1241 var filter_search = document.getElementById("filter_search");
1243 if (filter_search) { search = filter_search.value; }
1245 xmlhttp.open("GET", "backend.php?op=pref-filters&sort=" +
1246 param_escape(sort_key) +
1247 "&search=" + param_escape(search), true);
1248 xmlhttp.onreadystatechange=filterlist_callback;
1253 function updateLabelList(sort_key) {
1255 if (!xmlhttp_ready(xmlhttp)) {
1256 printLockingError();
1260 var label_search = document.getElementById("label_search");
1262 if (label_search) { search = label_search.value; }
1264 xmlhttp.open("GET", "backend.php?op=pref-labels&sort=" +
1265 param_escape(sort_key) +
1266 "&search=" + param_escape(search), true);
1267 xmlhttp.onreadystatechange=labellist_callback;
1271 function updatePrefsList() {
1273 if (!xmlhttp_ready(xmlhttp)) {
1274 printLockingError();
1278 xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
1279 xmlhttp.onreadystatechange=prefslist_callback;
1284 function selectTab(id, noupdate, subop) {
1288 if (!id) id = active_tab;
1292 if (!xmlhttp_ready(xmlhttp)) {
1293 printLockingError();
1298 var c = document.getElementById('prefContent');
1304 debug("selectTab: " + id + "(NU: " + noupdate + ")");
1306 notify_progress("Loading, please wait...");
1308 // close active infobox if needed
1311 // clean up all current selections, just in case
1312 active_feed_cat = false;
1313 active_label = false;
1315 // Effect.Fade("prefContent", {duration: 1, to: 0.01,
1316 // queue: { position:'end', scope: 'FEED_TAB', limit: 1 } } );
1318 if (id == "feedConfig") {
1320 } else if (id == "filterConfig") {
1322 } else if (id == "labelConfig") {
1324 } else if (id == "genConfig") {
1326 } else if (id == "userConfig") {
1328 } else if (id == "feedBrowser") {
1329 updateBigFeedBrowser();
1333 /* clean selection from all tabs */
1335 var tabs_holder = document.getElementById("prefTabs");
1336 var tab = tabs_holder.firstChild;
1339 if (tab.className && tab.className.match("prefsTabSelected")) {
1340 tab.className = "prefsTab";
1342 tab = tab.nextSibling;
1345 /* mark new tab as selected */
1347 tab = document.getElementById(id + "Tab");
1350 if (!tab.className.match("Selected")) {
1351 tab.className = tab.className + "Selected";
1358 exception_error("selectTab", e);
1362 function backend_sanity_check_callback() {
1364 if (xmlhttp.readyState == 4) {
1368 if (sanity_check_done) {
1369 fatalError(11, "Sanity check request received twice. This can indicate "+
1370 "presence of Firebug or some other disrupting extension. "+
1371 "Please disable it and try again.");
1375 if (!xmlhttp.responseXML) {
1376 fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
1380 var reply = xmlhttp.responseXML.firstChild.firstChild;
1383 fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
1387 var error_code = reply.getAttribute("error-code");
1389 if (error_code && error_code != 0) {
1390 return fatalError(error_code, reply.getAttribute("error-msg"));
1393 debug("sanity check ok");
1395 var params = reply.nextSibling;
1398 debug('reading init-params...');
1399 var param = params.firstChild;
1402 var k = param.getAttribute("key");
1403 var v = param.getAttribute("value");
1404 debug(k + " => " + v);
1406 param = param.nextSibling;
1410 sanity_check_done = true;
1412 init_second_stage();
1415 exception_error("backend_sanity_check_callback", e);
1420 function init_second_stage() {
1423 active_tab = getInitParam("prefs_active_tab");
1424 if (!active_tab || active_tab == '0') active_tab = "genConfig";
1426 document.onkeydown = pref_hotkey_handler;
1428 var tab = getURLParam('tab');
1430 caller_subop = getURLParam('subop');
1436 if (navigator.userAgent.match("Opera")) {
1437 setTimeout("selectTab()", 500);
1439 selectTab(active_tab);
1443 loading_set_progress(60);
1446 exception_error("init_second_stage", e);
1454 if (arguments.callee.done) return;
1455 arguments.callee.done = true;
1457 if (getURLParam('debug')) {
1458 Element.show("debug_output");
1459 debug('debug mode activated');
1462 new Draggable('debug_output');
1466 document.getElementById("prefContent").innerHTML =
1467 "<b>Fatal error:</b> This program needs XmlHttpRequest " +
1468 "to function properly. Your browser doesn't seem to support it.";
1472 loading_set_progress(30);
1474 xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
1475 xmlhttp.onreadystatechange=backend_sanity_check_callback;
1479 exception_error("init", e);
1483 function categorizeSelectedFeeds() {
1485 if (!xmlhttp_ready(xmlhttp)) {
1486 printLockingError();
1490 var sel_rows = getSelectedFeeds();
1492 var cat_sel = document.getElementById("sfeed_set_fcat");
1493 var cat_id = cat_sel[cat_sel.selectedIndex].value;
1495 if (sel_rows.length > 0) {
1497 notify_progress("Changing category of selected feeds...");
1499 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
1500 param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
1501 xmlhttp.onreadystatechange=feedlist_callback;
1506 alert(__("No feeds are selected."));
1512 function validatePrefsReset() {
1514 var ok = confirm(__("Reset to defaults?"));
1518 var query = Form.serialize("pref_prefs_form");
1519 query = query + "&subop=reset-config";
1522 xmlhttp.open("POST", "backend.php", true);
1523 xmlhttp.onreadystatechange=prefs_reset_callback;
1524 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1525 xmlhttp.send(query);
1529 exception_error("validatePrefsSave", e);
1536 function browseFeeds(limit) {
1538 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
1539 xmlhttp.onreadystatechange=infobox_callback;
1544 function feedBrowserSubscribe() {
1547 var selected = getSelectedFeedsFromBrowser();
1549 if (selected.length > 0) {
1551 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=massSubscribe&ids="+
1552 param_escape(selected.toString()), true);
1553 xmlhttp.onreadystatechange=feedlist_callback;
1556 alert(__("No feeds are selected."));
1560 exception_error("feedBrowserSubscribe", e);
1564 function updateBigFeedBrowser(limit) {
1566 if (!xmlhttp_ready(xmlhttp)) {
1567 printLockingError();
1571 var query = "backend.php?op=pref-feed-browser";
1573 var limit_sel = document.getElementById("feedBrowserLimit");
1576 var limit = limit_sel[limit_sel.selectedIndex].value;
1577 query = query + "&limit=" + param_escape(limit);
1580 xmlhttp.open("GET", query, true);
1581 xmlhttp.onreadystatechange=feed_browser_callback;
1585 function browserToggleExpand(id) {
1587 /* if (feed_to_expand && feed_to_expand != id) {
1588 var d = document.getElementById("BRDET-" + feed_to_expand);
1589 d.style.display = "none";
1592 if (!xmlhttp_ready(xmlhttp)) {
1593 printLockingError();
1597 /* if (feed_to_expand && id != feed_to_expand) {
1598 Effect.Fade('BRDET-' + feed_to_expand, {duration : 0.5});
1601 var d = document.getElementById("BRDET-" + id);
1603 if (Element.visible(d)) {
1604 Effect.Fade(d, {duration : 0.5});
1606 feed_to_expand = id;
1608 xmlhttp.open("GET", "backend.php?op=pref-feed-browser&subop=details&id="
1609 + param_escape(id), true);
1610 xmlhttp.onreadystatechange=expand_feed_callback;
1615 exception_error("browserToggleExpand", e);
1619 function selectPrefRows(kind, select) {
1622 var opbarid = false;
1627 if (kind == "feed") {
1628 opbarid = "feedOpToolbar";
1631 lname = "prefFeedList";
1632 } else if (kind == "fcat") {
1633 opbarid = "catOpToolbar";
1636 lname = "prefFeedCatList";
1637 } else if (kind == "filter") {
1638 opbarid = "filterOpToolbar";
1641 lname = "prefFilterList";
1642 } else if (kind == "label") {
1643 opbarid = "labelOpToolbar";
1646 lname = "prefLabelList";
1647 } else if (kind == "user") {
1648 opbarid = "userOpToolbar";
1651 lname = "prefUserList";
1655 selectTableRowsByIdPrefix(lname, nrow, nchk, select);
1656 disableContainerChildren(opbarid, !select);
1663 function toggleSelectPrefRow(sender, kind) {
1665 toggleSelectRow(sender);
1668 var opbarid = false;
1671 if (kind == "feed") {
1672 opbarid = "feedOpToolbar";
1673 nsel = getSelectedFeeds();
1674 } else if (kind == "fcat") {
1675 opbarid = "catOpToolbar";
1676 nsel = getSelectedFeedCats();
1677 } else if (kind == "filter") {
1678 opbarid = "filterOpToolbar";
1679 nsel = getSelectedFilters();
1680 } else if (kind == "label") {
1681 opbarid = "labelOpToolbar";
1682 nsel = getSelectedLabels();
1683 } else if (kind == "user") {
1684 opbarid = "userOpToolbar";
1685 nsel = getSelectedUsers();
1688 if (opbarid && nsel != -1) {
1689 disableContainerChildren(opbarid, nsel == false);
1695 function toggleSelectFBListRow(sender) {
1696 toggleSelectListRow(sender);
1697 disableContainerChildren("fbrOpToolbar", getSelectedFeedsFromBrowser() == 0);
1702 function pref_hotkey_handler(e) {
1706 var shift_key = false;
1709 shift_key = e.shiftKey;
1715 keycode = window.event.keyCode;
1720 var keychar = String.fromCharCode(keycode);
1722 if (keycode == 27) { // escape
1723 if (Element.visible("hotkey_help_overlay")) {
1724 Element.hide("hotkey_help_overlay");
1726 hotkey_prefix = false;
1730 if (!hotkeys_enabled) {
1731 debug("hotkeys disabled");
1735 if (keycode == 16) return; // ignore lone shift
1737 if ((keycode == 67 || keycode == 71) && !hotkey_prefix) {
1738 hotkey_prefix = keycode;
1739 debug("KP: PREFIX=" + keycode + " CHAR=" + keychar);
1743 if (Element.visible("hotkey_help_overlay")) {
1744 Element.hide("hotkey_help_overlay");
1747 if (keycode == 13 || keycode == 27) {
1750 seq = seq + "" + keycode;
1753 /* Global hotkeys */
1755 if (!hotkey_prefix) {
1757 if (keycode == 68 && shift_key) { // d
1758 if (!Element.visible("debug_output")) {
1759 Element.show("debug_output");
1760 debug('debug mode activated');
1762 Element.hide("debug_output");
1767 if ((keycode == 191 || keychar == '?') && shift_key) { // ?
1768 if (!Element.visible("hotkey_help_overlay")) {
1769 //Element.show("hotkey_help_overlay");
1770 Effect.Appear("hotkey_help_overlay", {duration : 0.3});
1772 Element.hide("hotkey_help_overlay");
1777 if (keycode == 191 || keychar == '/') { // /
1778 var search_boxes = new Array("label_search",
1779 "feed_search", "filter_search", "user_search");
1781 for (var i = 0; i < search_boxes.length; i++) {
1782 var elem = document.getElementById(search_boxes[i]);
1784 focus_element(search_boxes[i]);
1793 if (hotkey_prefix == 67) { // c
1794 hotkey_prefix = false;
1796 if (keycode == 70) { // f
1797 displayDlg("quickAddFilter");
1801 if (keycode == 83) { // s
1802 displayDlg("quickAddFeed");
1806 if (keycode == 76) { // l
1807 displayDlg("quickAddLabel");
1811 if (keycode == 85) { // u
1815 if (keycode == 67) { // c
1820 if (keycode == 84 && shift_key) { // T
1829 if (hotkey_prefix == 71) { // g
1831 hotkey_prefix = false;
1833 if (keycode == 49 && document.getElementById("genConfigTab")) { // 1
1834 selectTab("genConfig");
1838 if (keycode == 50 && document.getElementById("feedConfigTab")) { // 2
1839 selectTab("feedConfig");
1843 if (keycode == 51 && document.getElementById("feedBrowserTab")) { // 3
1844 selectTab("feedBrowser");
1848 if (keycode == 52 && document.getElementById("filterConfigTab")) { // 4
1849 selectTab("filterConfig");
1853 if (keycode == 53 && document.getElementById("labelConfigTab")) { // 5
1854 selectTab("labelConfig");
1858 if (keycode == 54 && document.getElementById("userConfigTab")) { // 6
1859 selectTab("userConfig");
1863 if (keycode == 88) { // x
1869 if (document.getElementById("piggie")) {
1871 if (seq.match("807371717369")) {
1879 if (hotkey_prefix) {
1880 debug("KP: PREFIX=" + hotkey_prefix + " CODE=" + keycode + " CHAR=" + keychar);
1882 debug("KP: CODE=" + keycode + " CHAR=" + keychar);
1886 exception_error("pref_hotkey_handler", e);
1890 function editFeedCats() {
1891 if (!xmlhttp_ready(xmlhttp)) {
1892 printLockingError();
1896 document.getElementById("subscribe_to_feed_btn").disabled = true;
1899 document.getElementById("top25_feeds_btn").disabled = true;
1901 // this button is not always available, no-op if not found
1904 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
1905 xmlhttp.onreadystatechange=infobox_feed_cat_callback;
1909 function showFeedsWithErrors() {
1910 displayDlg('feedUpdateErrors');
1913 function changeUserPassword() {
1917 if (!xmlhttp_ready(xmlhttp)) {
1918 printLockingError();
1922 var f = document.forms["change_pass_form"];
1925 if (f.OLD_PASSWORD.value == "") {
1926 new Effect.Highlight(f.OLD_PASSWORD);
1927 notify_error("Old password cannot be blank.");
1931 if (f.NEW_PASSWORD.value == "") {
1932 new Effect.Highlight(f.NEW_PASSWORD);
1933 notify_error("New password cannot be blank.");
1937 if (f.CONFIRM_PASSWORD.value == "") {
1938 new Effect.Highlight(f.CONFIRM_PASSWORD);
1939 notify_error("Entered passwords do not match.");
1943 if (f.CONFIRM_PASSWORD.value != f.NEW_PASSWORD.value) {
1944 new Effect.Highlight(f.CONFIRM_PASSWORD);
1945 new Effect.Highlight(f.NEW_PASSWORD);
1946 notify_error("Entered passwords do not match.");
1952 var query = Form.serialize("change_pass_form");
1954 notify_progress("Trying to change password...");
1956 xmlhttp.open("POST", "backend.php", true);
1957 xmlhttp.onreadystatechange=changepass_callback;
1958 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1959 xmlhttp.send(query);
1962 exception_error("changeUserPassword", e);
1968 function changeUserEmail() {
1972 if (!xmlhttp_ready(xmlhttp)) {
1973 printLockingError();
1977 var query = Form.serialize("change_email_form");
1979 notify_progress("Trying to change e-mail...");
1981 xmlhttp.open("POST", "backend.php", true);
1982 xmlhttp.onreadystatechange=notify_callback;
1983 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1984 xmlhttp.send(query);
1987 exception_error("changeUserPassword", e);
1994 function feedlistToggleSLAT() {
1995 notify_progress("Loading, please wait...");
1999 function pubRegenKey() {
2001 if (!xmlhttp_ready(xmlhttp)) {
2002 printLockingError();
2006 var ok = confirm(__("Replace current publishing address with a new one?"));
2010 notify_progress("Trying to change address...");
2012 xmlhttp.open("GET", "backend.php?op=rpc&subop=regenPubKey");
2013 xmlhttp.onreadystatechange=replace_pubkey_callback;
2020 function pubToClipboard() {
2024 if (!xmlhttp_ready(xmlhttp)) {
2025 printLockingError();
2029 var link = document.getElementById("pubGenAddress");
2033 exception_error("pubToClipboard", e);
2039 function validatePrefsSave() {
2042 var ok = confirm(__("Save current configuration?"));
2046 var query = Form.serialize("pref_prefs_form");
2047 query = query + "&subop=save-config";
2050 xmlhttp.open("POST", "backend.php", true);
2051 xmlhttp.onreadystatechange=notify_callback;
2052 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
2053 xmlhttp.send(query);
2057 exception_error("validatePrefsSave", e);
2063 function feedActionChange() {
2065 var chooser = document.getElementById("feedActionChooser");
2066 var opid = chooser[chooser.selectedIndex].value;
2068 chooser.selectedIndex = 0;
2071 exception_error("feedActionChange", e);
2075 function feedActionGo(op) {
2077 if (op == "facEdit") {
2081 if (op == "facClear") {
2082 clearSelectedFeeds();
2085 if (op == "facPurge") {
2086 purgeSelectedFeeds();
2089 if (op == "facEditCats") {
2093 if (op == "facRescore") {
2094 rescoreSelectedFeeds();
2097 if (op == "facUnsubscribe") {
2098 removeSelectedFeeds();
2102 exception_error("feedActionGo", e);
2107 function clearFeedArticles(feed_id) {
2109 notify_progress("Clearing feed...");
2111 var query = "backend.php?op=pref-feeds&quiet=1&subop=clear&id=" + feed_id;
2113 new Ajax.Request(query, {
2114 onComplete: function(transport) {
2121 function rescoreSelectedFeeds() {
2123 if (!xmlhttp_ready(xmlhttp)) {
2124 printLockingError();
2128 var sel_rows = getSelectedFeeds();
2130 if (sel_rows.length > 0) {
2132 //var ok = confirm(__("Rescore last 100 articles in selected feeds?"));
2133 var ok = confirm(__("Rescore articles in selected feeds?"));
2136 notify_progress("Rescoring selected feeds...");
2138 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
2139 param_escape(sel_rows.toString()), true);
2140 xmlhttp.onreadystatechange=notify_callback;
2144 alert(__("No feeds are selected."));
2150 function rescore_all_feeds() {
2151 var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
2154 notify_progress("Rescoring feeds...");
2156 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
2157 xmlhttp.onreadystatechange=notify_callback;