3 var active_feed_cat = false;
4 var active_tab = false;
5 var feed_to_expand = false;
7 var xmlhttp = Ajax.getTransport();
9 var init_params = new Array();
11 var caller_subop = false;
12 var sanity_check_done = false;
13 var hotkey_prefix = false;
15 function infobox_callback() {
16 if (xmlhttp.readyState == 4) {
17 infobox_callback2(xmlhttp);
21 function infobox_submit_callback() {
22 if (xmlhttp.readyState == 4) {
23 infobox_submit_callback2(xmlhttp);
28 function replace_pubkey_callback() {
29 if (xmlhttp.readyState == 4) {
31 var link = document.getElementById("pubGenAddress");
33 if (xmlhttp.responseXML) {
35 var new_link = xmlhttp.responseXML.getElementsByTagName("link")[0];
38 link.href = new_link.firstChild.nodeValue;
39 //link.innerHTML = new_link.firstChild.nodeValue;
41 new Effect.Highlight(link);
43 notify_info("Published feed URL changed.");
45 notify_error("Could not change feed URL.");
49 notify_error("Could not change feed URL.");
52 exception_error("replace_pubkey_callback", e);
57 function expand_feed_callback() {
58 if (xmlhttp.readyState == 4) {
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});
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() {
141 var container = document.getElementById('prefContent');
142 if (xmlhttp.readyState == 4) {
144 container.innerHTML=xmlhttp.responseText;
146 if (document.getElementById("prefLabelList")) {
147 var elems = document.getElementById("prefLabelList").getElementsByTagName("SPAN");
149 for (var i = 0; i < elems.length; i++) {
150 if (elems[i].id && elems[i].id.match("LILT-")) {
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});
160 if (typeof correctPNG != 'undefined') {
168 exception_error("labellist_callback", e);
172 function feed_browser_callback() {
173 var container = document.getElementById('prefContent');
174 if (xmlhttp.readyState == 4) {
175 container.innerHTML=xmlhttp.responseText;
181 function userlist_callback() {
182 var container = document.getElementById('prefContent');
183 if (xmlhttp.readyState == 4) {
184 container.innerHTML=xmlhttp.responseText;
190 function prefslist_callback() {
191 var container = document.getElementById('prefContent');
192 if (xmlhttp.readyState == 4) {
193 container.innerHTML=xmlhttp.responseText;
199 function gethelp_callback() {
200 var container = document.getElementById('prefHelpBox');
201 if (xmlhttp.readyState == 4) {
203 container.innerHTML = xmlhttp.responseText;
204 container.style.display = "block";
209 function notify_callback() {
210 if (xmlhttp.readyState == 4) {
211 notify_info(xmlhttp.responseText);
215 function prefs_reset_callback() {
216 if (xmlhttp.readyState == 4) {
217 notify_info(xmlhttp.responseText);
223 function changepass_callback() {
225 if (xmlhttp.readyState == 4) {
227 if (xmlhttp.responseText.indexOf("ERROR: ") == 0) {
228 notify_error(xmlhttp.responseText.replace("ERROR: ", ""));
230 notify_info(xmlhttp.responseText);
231 var warn = document.getElementById("default_pass_warning");
232 if (warn) warn.style.display = "none";
235 document.forms['change_pass_form'].reset();
239 exception_error("changepass_callback", e);
243 function init_cat_inline_editor() {
246 if (document.getElementById("prefFeedCatList")) {
247 var elems = document.getElementById("prefFeedCatList").getElementsByTagName("SPAN");
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);
259 exception_error("init_cat_inline_editor", e);
263 function infobox_feed_cat_callback() {
264 if (xmlhttp.readyState == 4) {
268 init_cat_inline_editor();
271 exception_error("infobox_feed_cat_callback", e);
276 function updateFeedList(sort_key) {
278 if (!xmlhttp_ready(xmlhttp)) {
283 var feed_search = document.getElementById("feed_search");
285 if (feed_search) { search = feed_search.value; }
287 var slat = document.getElementById("show_last_article_times");
289 var slat_checked = false;
291 slat_checked = slat.checked;
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;
303 function updateUsersList(sort_key) {
305 if (!xmlhttp_ready(xmlhttp)) {
310 var user_search = document.getElementById("user_search");
312 if (user_search) { search = user_search.value; }
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;
322 function addLabel() {
326 if (!xmlhttp_ready(xmlhttp)) {
331 var caption = prompt(__("Please enter label caption:"), "");
333 if (caption == null) {
338 alert(__("Can't create label: missing caption."));
342 // we can be called from some other tab
343 active_tab = "labelConfig";
345 var query = "caption=" + param_escape(caption);
347 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&" + query, true);
348 xmlhttp.onreadystatechange=infobox_submit_callback;
352 exception_error("addLabel", e);
358 if (!xmlhttp_ready(xmlhttp)) {
363 var link = document.getElementById("fadd_link");
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."));
370 notify_progress("Adding feed...");
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;
383 function addFeedCat() {
385 if (!xmlhttp_ready(xmlhttp)) {
390 var cat = document.getElementById("fadd_cat");
392 if (cat.value.length == 0) {
393 alert(__("Can't add category: no name specified."));
395 notify_progress("Adding feed category...");
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;
409 if (!xmlhttp_ready(xmlhttp)) {
414 var sqlexp = document.getElementById("uadd_box");
416 if (sqlexp.value.length == 0) {
417 alert(__("Can't add user: no login specified."));
419 notify_progress("Adding user...");
421 xmlhttp.open("GET", "backend.php?op=pref-users&subop=add&login=" +
422 param_escape(sqlexp.value), true);
424 xmlhttp.onreadystatechange=userlist_callback;
432 function editUser(id) {
434 if (!xmlhttp_ready(xmlhttp)) {
441 notify_progress("Loading, please wait...");
443 selectTableRowsByIdPrefix('prefUserList', 'UMRR-', 'UMCHK-', false);
444 selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
446 disableContainerChildren("userOpToolbar", false);
448 xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
449 param_escape(id), true);
450 xmlhttp.onreadystatechange=infobox_callback;
455 function editFilter(id) {
457 if (!xmlhttp_ready(xmlhttp)) {
464 notify_progress("Loading, please wait...");
466 // document.getElementById("create_filter_btn").disabled = true;
468 disableContainerChildren("filterOpToolbar", false);
470 selectTableRowsByIdPrefix('prefFilterList', 'FILRR-', 'FICHK-', false);
471 selectTableRowById('FILRR-'+id, 'FICHK-'+id, true);
473 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" + param_escape(id), true);
474 xmlhttp.onreadystatechange=infobox_callback;
478 function editFeed(feed) {
480 // notify("Editing feed...");
482 if (!xmlhttp_ready(xmlhttp)) {
489 notify_progress("Loading, please wait...");
491 /* document.getElementById("subscribe_to_feed_btn").disabled = true;
494 document.getElementById("top25_feeds_btn").disabled = true;
496 // this button is not always available, no-op if not found
499 // clean selection from all rows & select row being edited
500 selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
501 selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
503 disableContainerChildren("feedOpToolbar", false);
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");
554 function removeSelectedLabels() {
556 if (!xmlhttp_ready(xmlhttp)) {
561 var sel_rows = getSelectedLabels();
563 if (sel_rows.length > 0) {
565 var ok = confirm(__("Remove selected labels?"));
568 notify_progress("Removing selected labels...");
570 xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
571 param_escape(sel_rows.toString()), true);
572 xmlhttp.onreadystatechange=labellist_callback;
576 alert(__("No labels are selected."));
582 function removeSelectedUsers() {
584 if (!xmlhttp_ready(xmlhttp)) {
589 var sel_rows = getSelectedUsers();
591 if (sel_rows.length > 0) {
593 var ok = confirm(__("Remove selected users?"));
596 notify_progress("Removing selected users...");
598 xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
599 param_escape(sel_rows.toString()), true);
600 xmlhttp.onreadystatechange=userlist_callback;
605 alert(__("No users are selected."));
611 function removeSelectedFilters() {
613 if (!xmlhttp_ready(xmlhttp)) {
618 var sel_rows = getSelectedFilters();
620 if (sel_rows.length > 0) {
622 var ok = confirm(__("Remove selected filters?"));
625 notify_progress("Removing selected filters...");
627 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
628 param_escape(sel_rows.toString()), true);
629 xmlhttp.onreadystatechange=filterlist_callback;
633 alert(__("No filters are selected."));
640 function removeSelectedFeeds() {
642 if (!xmlhttp_ready(xmlhttp)) {
647 var sel_rows = getSelectedFeeds();
649 if (sel_rows.length > 0) {
651 var ok = confirm(__("Unsubscribe from selected feeds?"));
655 notify_progress("Unsubscribing from selected feeds...");
657 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
658 param_escape(sel_rows.toString()), true);
659 xmlhttp.onreadystatechange=feedlist_callback;
665 alert(__("No feeds are selected."));
672 function clearSelectedFeeds() {
674 if (!xmlhttp_ready(xmlhttp)) {
679 var sel_rows = getSelectedFeeds();
681 if (sel_rows.length > 1) {
682 alert(__("Please select only one feed."));
686 if (sel_rows.length > 0) {
688 var ok = confirm(__("Erase all non-starred articles in selected feed?"));
691 notify_progress("Clearing selected feed...");
692 clearFeedArticles(sel_rows[0]);
697 alert(__("No feeds are selected."));
704 function purgeSelectedFeeds() {
706 if (!xmlhttp_ready(xmlhttp)) {
711 var sel_rows = getSelectedFeeds();
713 if (sel_rows.length > 0) {
715 var pr = prompt(__("How many days of articles to keep (0 - use default)?"), "0");
717 if (pr != undefined) {
718 notify_progress("Purging selected feed...");
720 var query = "backend.php?op=rpc&subop=purge&ids="+
721 param_escape(sel_rows.toString()) + "&days=" + pr;
725 new Ajax.Request(query, {
726 onComplete: function(transport) {
733 alert(__("No feeds are selected."));
740 function removeSelectedFeedCats() {
742 if (!xmlhttp_ready(xmlhttp)) {
747 var sel_rows = getSelectedFeedCats();
749 if (sel_rows.length > 0) {
751 var ok = confirm(__("Remove selected categories?"));
754 notify_progress("Removing selected categories...");
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;
764 alert(__("No categories are selected."));
771 function feedEditCancel() {
773 if (!xmlhttp_ready(xmlhttp)) {
779 document.getElementById("subscribe_to_feed_btn").disabled = false;
780 document.getElementById("top25_feeds_btn").disabled = false;
782 // this button is not always available, no-op if not found
787 selectPrefRows('feed', false); // cleanup feed selection
792 function feedCatEditCancel() {
794 if (!xmlhttp_ready(xmlhttp)) {
799 active_feed_cat = false;
802 document.getElementById("subscribe_to_feed_btn").disabled = false;
803 document.getElementById("top25_feeds_btn").disabled = false;
805 // this button is not always available, no-op if not found
808 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
809 xmlhttp.onreadystatechange=infobox_callback;
815 function feedEditSave() {
819 if (!xmlhttp_ready(xmlhttp)) {
824 // FIXME: add parameter validation
826 var query = Form.serialize("edit_feed_form");
828 notify_progress("Saving feed...");
830 xmlhttp.open("POST", "backend.php", true);
831 xmlhttp.onreadystatechange=feedlist_callback;
832 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
840 exception_error("feedEditSave", e);
844 function userEditCancel() {
846 if (!xmlhttp_ready(xmlhttp)) {
851 selectPrefRows('user', false); // cleanup feed selection
857 function filterEditCancel() {
859 if (!xmlhttp_ready(xmlhttp)) {
865 document.getElementById("create_filter_btn").disabled = false;
866 selectPrefRows('filter', false); // cleanup feed selection
874 function userEditSave() {
876 if (!xmlhttp_ready(xmlhttp)) {
881 var login = document.forms["user_edit_form"].login.value;
883 if (login.length == 0) {
884 alert(__("Login field cannot be blank."));
888 notify_progress("Saving user...");
892 var query = Form.serialize("user_edit_form");
894 xmlhttp.open("GET", "backend.php?" + query, true);
895 xmlhttp.onreadystatechange=userlist_callback;
902 function filterEditSave() {
904 if (!xmlhttp_ready(xmlhttp)) {
909 /* if (!is_opera()) {
910 var reg_exp = document.forms["filter_edit_form"].reg_exp.value;
912 if (reg_exp.length == 0) {
913 alert("Filter expression field cannot be blank.");
918 notify_progress("Saving filter...");
920 var query = Form.serialize("filter_edit_form");
924 document.getElementById("create_filter_btn").disabled = false;
926 xmlhttp.open("GET", "backend.php?" + query, true);
927 xmlhttp.onreadystatechange=filterlist_callback;
934 function editSelectedUser() {
935 var rows = getSelectedUsers();
937 if (rows.length == 0) {
938 alert(__("No users are selected."));
942 if (rows.length > 1) {
943 alert(__("Please select only one user."));
952 function resetSelectedUserPass() {
953 var rows = getSelectedUsers();
955 if (rows.length == 0) {
956 alert(__("No users are selected."));
960 if (rows.length > 1) {
961 alert(__("Please select only one user."));
965 var ok = confirm(__("Reset password of selected user?"));
968 notify_progress("Resetting password for selected user...");
972 xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
973 param_escape(id), true);
974 xmlhttp.onreadystatechange=userlist_callback;
979 function selectedUserDetails() {
981 if (!xmlhttp_ready(xmlhttp)) {
986 var rows = getSelectedUsers();
988 if (rows.length == 0) {
989 alert(__("No users are selected."));
993 if (rows.length > 1) {
994 alert(__("Please select only one user."));
998 notify_progress("Loading, please wait...");
1002 xmlhttp.open("GET", "backend.php?op=pref-users&subop=user-details&id=" + id, true);
1003 xmlhttp.onreadystatechange=infobox_callback;
1008 function selectedFeedDetails() {
1010 if (!xmlhttp_ready(xmlhttp)) {
1011 printLockingError();
1015 var rows = getSelectedFeeds();
1017 if (rows.length == 0) {
1018 alert(__("No feeds are selected."));
1022 if (rows.length > 1) {
1023 alert(__("Please select only one feed."));
1027 // var id = rows[0];
1031 xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
1032 param_escape(rows.toString()), true);
1033 xmlhttp.onreadystatechange=infobox_callback;
1038 function editSelectedFilter() {
1039 var rows = getSelectedFilters();
1041 if (rows.length == 0) {
1042 alert(__("No filters are selected."));
1046 if (rows.length > 1) {
1047 alert(__("Please select only one filter."));
1053 editFilter(rows[0]);
1058 function editSelectedFeed() {
1059 var rows = getSelectedFeeds();
1061 if (rows.length == 0) {
1062 alert(__("No feeds are selected."));
1066 if (rows.length > 1) {
1067 alert(__("Please select one feed."));
1077 function editSelectedFeeds() {
1079 if (!xmlhttp_ready(xmlhttp)) {
1080 printLockingError();
1084 var rows = getSelectedFeeds();
1086 if (rows.length == 0) {
1087 alert(__("No feeds are selected."));
1095 notify_progress("Loading, please wait...");
1097 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeeds&ids=" +
1098 param_escape(rows.toString()), true);
1100 xmlhttp.onreadystatechange=infobox_callback;
1105 function editSelectedFeedCat() {
1106 var rows = getSelectedFeedCats();
1108 if (rows.length == 0) {
1109 alert(__("No categories are selected."));
1113 if (rows.length > 1) {
1114 alert(__("Please select only one category."));
1120 editFeedCat(rows[0]);
1124 function piggie(enable) {
1126 debug("I LOVEDED IT!");
1127 var piggie = document.getElementById("piggie");
1129 Element.show(piggie);
1130 Position.Center(piggie);
1131 Effect.Puff(piggie);
1136 function validateOpmlImport() {
1138 var opml_file = document.getElementById("opml_file");
1140 if (opml_file.value.length == 0) {
1141 alert(__("No OPML file to upload."));
1148 function updateFilterList(sort_key) {
1150 if (!xmlhttp_ready(xmlhttp)) {
1151 printLockingError();
1155 var filter_search = document.getElementById("filter_search");
1157 if (filter_search) { search = filter_search.value; }
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;
1167 function updateLabelList(sort_key) {
1169 if (!xmlhttp_ready(xmlhttp)) {
1170 printLockingError();
1174 var label_search = document.getElementById("label_search");
1176 if (label_search) { search = label_search.value; }
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;
1185 function updatePrefsList() {
1187 if (!xmlhttp_ready(xmlhttp)) {
1188 printLockingError();
1192 xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
1193 xmlhttp.onreadystatechange=prefslist_callback;
1198 function selectTab(id, noupdate, subop) {
1202 if (!id) id = active_tab;
1206 if (!xmlhttp_ready(xmlhttp)) {
1207 printLockingError();
1212 var c = document.getElementById('prefContent');
1218 debug("selectTab: " + id + "(NU: " + noupdate + ")");
1220 notify_progress("Loading, please wait...");
1222 // close active infobox if needed
1225 // clean up all current selections, just in case
1226 active_feed_cat = false;
1228 // Effect.Fade("prefContent", {duration: 1, to: 0.01,
1229 // queue: { position:'end', scope: 'FEED_TAB', limit: 1 } } );
1231 if (id == "feedConfig") {
1233 } else if (id == "filterConfig") {
1235 } else if (id == "labelConfig") {
1237 } else if (id == "genConfig") {
1239 } else if (id == "userConfig") {
1244 /* clean selection from all tabs */
1246 var tabs_holder = document.getElementById("prefTabs");
1247 var tab = tabs_holder.firstChild;
1250 if (tab.className && tab.className.match("prefsTabSelected")) {
1251 tab.className = "prefsTab";
1253 tab = tab.nextSibling;
1256 /* mark new tab as selected */
1258 tab = document.getElementById(id + "Tab");
1261 if (!tab.className.match("Selected")) {
1262 tab.className = tab.className + "Selected";
1269 exception_error("selectTab", e);
1273 function backend_sanity_check_callback() {
1275 if (xmlhttp.readyState == 4) {
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.");
1286 if (!xmlhttp.responseXML) {
1287 fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
1291 var reply = xmlhttp.responseXML.firstChild.firstChild;
1294 fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
1298 var error_code = reply.getAttribute("error-code");
1300 if (error_code && error_code != 0) {
1301 return fatalError(error_code, reply.getAttribute("error-msg"));
1304 debug("sanity check ok");
1306 var params = reply.nextSibling;
1309 debug('reading init-params...');
1310 var param = params.firstChild;
1313 var k = param.getAttribute("key");
1314 var v = param.getAttribute("value");
1315 debug(k + " => " + v);
1317 param = param.nextSibling;
1321 sanity_check_done = true;
1323 init_second_stage();
1326 exception_error("backend_sanity_check_callback", e);
1331 function init_second_stage() {
1334 active_tab = getInitParam("prefs_active_tab");
1335 if (!active_tab || active_tab == '0') active_tab = "genConfig";
1337 document.onkeydown = pref_hotkey_handler;
1339 var tab = getURLParam('tab');
1341 caller_subop = getURLParam('subop');
1343 if (getURLParam("subopparam")) {
1344 caller_subop = caller_subop + ":" + getURLParam("subopparam");
1351 if (navigator.userAgent.match("Opera")) {
1352 setTimeout("selectTab()", 500);
1354 selectTab(active_tab);
1358 loading_set_progress(60);
1361 exception_error("init_second_stage", e);
1369 if (arguments.callee.done) return;
1370 arguments.callee.done = true;
1372 if (getURLParam('debug')) {
1373 Element.show("debug_output");
1374 debug('debug mode activated');
1379 document.getElementById("prefContent").innerHTML =
1380 "<b>Fatal error:</b> This program needs XmlHttpRequest " +
1381 "to function properly. Your browser doesn't seem to support it.";
1385 loading_set_progress(30);
1387 xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
1388 xmlhttp.onreadystatechange=backend_sanity_check_callback;
1392 exception_error("init", e);
1396 function categorizeSelectedFeeds() {
1398 if (!xmlhttp_ready(xmlhttp)) {
1399 printLockingError();
1403 var sel_rows = getSelectedFeeds();
1405 var cat_sel = document.getElementById("sfeed_set_fcat");
1406 var cat_id = cat_sel[cat_sel.selectedIndex].value;
1408 if (sel_rows.length > 0) {
1410 notify_progress("Changing category of selected feeds...");
1412 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
1413 param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
1414 xmlhttp.onreadystatechange=feedlist_callback;
1419 alert(__("No feeds are selected."));
1425 function validatePrefsReset() {
1427 var ok = confirm(__("Reset to defaults?"));
1431 var query = Form.serialize("pref_prefs_form");
1432 query = query + "&subop=reset-config";
1435 xmlhttp.open("POST", "backend.php", true);
1436 xmlhttp.onreadystatechange=prefs_reset_callback;
1437 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1438 xmlhttp.send(query);
1442 exception_error("validatePrefsSave", e);
1449 function browseFeeds(limit) {
1451 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
1452 xmlhttp.onreadystatechange=infobox_callback;
1457 function feedBrowserSubscribe() {
1460 var selected = getSelectedFeedsFromBrowser();
1462 if (selected.length > 0) {
1464 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=massSubscribe&ids="+
1465 param_escape(selected.toString()), true);
1466 xmlhttp.onreadystatechange=feedlist_callback;
1469 alert(__("No feeds are selected."));
1473 exception_error("feedBrowserSubscribe", e);
1477 function updateBigFeedBrowserBtn() {
1478 notify_progress("Loading, please wait...");
1479 return updateBigFeedBrowser();
1482 function selectPrefRows(kind, select) {
1485 var opbarid = false;
1490 if (kind == "feed") {
1491 opbarid = "feedOpToolbar";
1494 lname = "prefFeedList";
1495 } else if (kind == "fcat") {
1496 opbarid = "catOpToolbar";
1499 lname = "prefFeedCatList";
1500 } else if (kind == "filter") {
1501 opbarid = "filterOpToolbar";
1504 lname = "prefFilterList";
1505 } else if (kind == "label") {
1506 opbarid = "labelOpToolbar";
1509 lname = "prefLabelList";
1510 } else if (kind == "user") {
1511 opbarid = "userOpToolbar";
1514 lname = "prefUserList";
1518 selectTableRowsByIdPrefix(lname, nrow, nchk, select);
1519 disableContainerChildren(opbarid, !select);
1526 function toggleSelectPrefRow(sender, kind) {
1528 toggleSelectRow(sender);
1531 var opbarid = false;
1534 if (kind == "feed") {
1535 opbarid = "feedOpToolbar";
1536 nsel = getSelectedFeeds();
1537 } else if (kind == "fcat") {
1538 opbarid = "catOpToolbar";
1539 nsel = getSelectedFeedCats();
1540 } else if (kind == "filter") {
1541 opbarid = "filterOpToolbar";
1542 nsel = getSelectedFilters();
1543 } else if (kind == "label") {
1544 opbarid = "labelOpToolbar";
1545 nsel = getSelectedLabels();
1546 } else if (kind == "user") {
1547 opbarid = "userOpToolbar";
1548 nsel = getSelectedUsers();
1551 if (opbarid && nsel != -1) {
1552 disableContainerChildren(opbarid, nsel == false);
1558 function toggleSelectFBListRow(sender) {
1559 toggleSelectListRow(sender);
1560 disableContainerChildren("fbrOpToolbar", getSelectedFeedsFromBrowser() == 0);
1565 function pref_hotkey_handler(e) {
1569 var shift_key = false;
1572 shift_key = e.shiftKey;
1578 keycode = window.event.keyCode;
1583 var keychar = String.fromCharCode(keycode);
1585 if (keycode == 27) { // escape
1586 if (Element.visible("hotkey_help_overlay")) {
1587 Element.hide("hotkey_help_overlay");
1589 hotkey_prefix = false;
1593 if (!hotkeys_enabled) {
1594 debug("hotkeys disabled");
1598 if (keycode == 16) return; // ignore lone shift
1600 if ((keycode == 67 || keycode == 71) && !hotkey_prefix) {
1601 hotkey_prefix = keycode;
1602 debug("KP: PREFIX=" + keycode + " CHAR=" + keychar);
1606 if (Element.visible("hotkey_help_overlay")) {
1607 Element.hide("hotkey_help_overlay");
1610 if (keycode == 13 || keycode == 27) {
1613 seq = seq + "" + keycode;
1616 /* Global hotkeys */
1618 if (!hotkey_prefix) {
1620 if (keycode == 68 && shift_key) { // d
1621 if (!Element.visible("debug_output")) {
1622 Element.show("debug_output");
1623 debug('debug mode activated');
1625 Element.hide("debug_output");
1630 if ((keycode == 191 || keychar == '?') && shift_key) { // ?
1631 if (!Element.visible("hotkey_help_overlay")) {
1632 //Element.show("hotkey_help_overlay");
1633 Effect.Appear("hotkey_help_overlay", {duration : 0.3});
1635 Element.hide("hotkey_help_overlay");
1640 if (keycode == 191 || keychar == '/') { // /
1641 var search_boxes = new Array("label_search",
1642 "feed_search", "filter_search", "user_search", "feed_browser_search");
1644 for (var i = 0; i < search_boxes.length; i++) {
1645 var elem = document.getElementById(search_boxes[i]);
1647 focus_element(search_boxes[i]);
1656 if (hotkey_prefix == 67) { // c
1657 hotkey_prefix = false;
1659 if (keycode == 70) { // f
1660 displayDlg("quickAddFilter");
1664 if (keycode == 83) { // s
1665 displayDlg("quickAddFeed");
1669 /* if (keycode == 76) { // l
1670 displayDlg("quickAddLabel");
1674 if (keycode == 85) { // u
1678 if (keycode == 67) { // c
1683 if (keycode == 84 && shift_key) { // T
1692 if (hotkey_prefix == 71) { // g
1694 hotkey_prefix = false;
1696 if (keycode == 49 && document.getElementById("genConfigTab")) { // 1
1697 selectTab("genConfig");
1701 if (keycode == 50 && document.getElementById("feedConfigTab")) { // 2
1702 selectTab("feedConfig");
1706 if (keycode == 51 && document.getElementById("filterConfigTab")) { // 4
1707 selectTab("filterConfig");
1711 if (keycode == 52 && document.getElementById("labelConfigTab")) { // 5
1712 selectTab("labelConfig");
1716 if (keycode == 53 && document.getElementById("userConfigTab")) { // 6
1717 selectTab("userConfig");
1721 if (keycode == 88) { // x
1727 if (document.getElementById("piggie")) {
1729 if (seq.match("807371717369")) {
1737 if (hotkey_prefix) {
1738 debug("KP: PREFIX=" + hotkey_prefix + " CODE=" + keycode + " CHAR=" + keychar);
1740 debug("KP: CODE=" + keycode + " CHAR=" + keychar);
1744 exception_error("pref_hotkey_handler", e);
1748 function editFeedCats() {
1749 if (!xmlhttp_ready(xmlhttp)) {
1750 printLockingError();
1754 document.getElementById("subscribe_to_feed_btn").disabled = true;
1757 document.getElementById("top25_feeds_btn").disabled = true;
1759 // this button is not always available, no-op if not found
1762 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
1763 xmlhttp.onreadystatechange=infobox_feed_cat_callback;
1767 function showFeedsWithErrors() {
1768 displayDlg('feedUpdateErrors');
1771 function changeUserPassword() {
1775 if (!xmlhttp_ready(xmlhttp)) {
1776 printLockingError();
1780 var f = document.forms["change_pass_form"];
1783 if (f.OLD_PASSWORD.value == "") {
1784 new Effect.Highlight(f.OLD_PASSWORD);
1785 notify_error("Old password cannot be blank.");
1789 if (f.NEW_PASSWORD.value == "") {
1790 new Effect.Highlight(f.NEW_PASSWORD);
1791 notify_error("New password cannot be blank.");
1795 if (f.CONFIRM_PASSWORD.value == "") {
1796 new Effect.Highlight(f.CONFIRM_PASSWORD);
1797 notify_error("Entered passwords do not match.");
1801 if (f.CONFIRM_PASSWORD.value != f.NEW_PASSWORD.value) {
1802 new Effect.Highlight(f.CONFIRM_PASSWORD);
1803 new Effect.Highlight(f.NEW_PASSWORD);
1804 notify_error("Entered passwords do not match.");
1810 var query = Form.serialize("change_pass_form");
1812 notify_progress("Trying to change password...");
1814 xmlhttp.open("POST", "backend.php", true);
1815 xmlhttp.onreadystatechange=changepass_callback;
1816 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1817 xmlhttp.send(query);
1820 exception_error("changeUserPassword", e);
1826 function changeUserEmail() {
1830 if (!xmlhttp_ready(xmlhttp)) {
1831 printLockingError();
1835 var query = Form.serialize("change_email_form");
1837 notify_progress("Trying to change e-mail...");
1839 xmlhttp.open("POST", "backend.php", true);
1840 xmlhttp.onreadystatechange=notify_callback;
1841 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1842 xmlhttp.send(query);
1845 exception_error("changeUserPassword", e);
1852 function feedlistToggleSLAT() {
1853 notify_progress("Loading, please wait...");
1857 function pubRegenKey() {
1859 if (!xmlhttp_ready(xmlhttp)) {
1860 printLockingError();
1864 var ok = confirm(__("Replace current publishing address with a new one?"));
1868 notify_progress("Trying to change address...");
1870 xmlhttp.open("GET", "backend.php?op=rpc&subop=regenPubKey");
1871 xmlhttp.onreadystatechange=replace_pubkey_callback;
1878 function pubToClipboard() {
1882 if (!xmlhttp_ready(xmlhttp)) {
1883 printLockingError();
1887 var link = document.getElementById("pubGenAddress");
1891 exception_error("pubToClipboard", e);
1897 function validatePrefsSave() {
1900 var ok = confirm(__("Save current configuration?"));
1904 var query = Form.serialize("pref_prefs_form");
1905 query = query + "&subop=save-config";
1908 xmlhttp.open("POST", "backend.php", true);
1909 xmlhttp.onreadystatechange=notify_callback;
1910 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
1911 xmlhttp.send(query);
1915 exception_error("validatePrefsSave", e);
1921 function feedActionChange() {
1923 var chooser = document.getElementById("feedActionChooser");
1924 var opid = chooser[chooser.selectedIndex].value;
1926 chooser.selectedIndex = 0;
1929 exception_error("feedActionChange", e);
1933 function feedActionGo(op) {
1935 if (op == "facEdit") {
1937 var rows = getSelectedFeeds();
1939 if (rows.length > 1) {
1940 editSelectedFeeds();
1946 if (op == "facClear") {
1947 clearSelectedFeeds();
1950 if (op == "facPurge") {
1951 purgeSelectedFeeds();
1954 if (op == "facEditCats") {
1958 if (op == "facRescore") {
1959 rescoreSelectedFeeds();
1962 if (op == "facUnsubscribe") {
1963 removeSelectedFeeds();
1967 exception_error("feedActionGo", e);
1972 function clearFeedArticles(feed_id) {
1974 notify_progress("Clearing feed...");
1976 var query = "backend.php?op=pref-feeds&quiet=1&subop=clear&id=" + feed_id;
1978 new Ajax.Request(query, {
1979 onComplete: function(transport) {
1986 function rescoreSelectedFeeds() {
1988 if (!xmlhttp_ready(xmlhttp)) {
1989 printLockingError();
1993 var sel_rows = getSelectedFeeds();
1995 if (sel_rows.length > 0) {
1997 //var ok = confirm(__("Rescore last 100 articles in selected feeds?"));
1998 var ok = confirm(__("Rescore articles in selected feeds?"));
2001 notify_progress("Rescoring selected feeds...", true);
2003 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
2004 param_escape(sel_rows.toString()), true);
2005 xmlhttp.onreadystatechange=notify_callback;
2009 alert(__("No feeds are selected."));
2015 function rescore_all_feeds() {
2016 var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
2019 notify_progress("Rescoring feeds...", true);
2021 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
2022 xmlhttp.onreadystatechange=notify_callback;
2027 function removeFilter(id, title) {
2029 if (!xmlhttp_ready(xmlhttp)) {
2030 printLockingError();
2034 var msg = __("Remove filter %s?").replace("%s", title);
2036 var ok = confirm(msg);
2041 notify_progress("Removing filter...");
2043 xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
2044 param_escape(id), true);
2045 xmlhttp.onreadystatechange=filterlist_callback;
2052 function unsubscribeFeed(id, title) {
2054 if (!xmlhttp_ready(xmlhttp)) {
2055 printLockingError();
2059 var msg = __("Unsubscribe from %s?").replace("%s", title);
2061 var ok = confirm(msg);
2066 notify_progress("Removing feed...");
2068 xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
2069 param_escape(id), true);
2070 xmlhttp.onreadystatechange=filterlist_callback;
2080 function feedsEditSave() {
2083 if (!xmlhttp_ready(xmlhttp)) {
2084 printLockingError();
2088 var ok = confirm(__("Save changes to selected feeds?"));
2092 var f = document.forms["batch_edit_feed_form"];
2094 var query = Form.serialize("batch_edit_feed_form");
2096 /* Form.serialize ignores unchecked checkboxes */
2098 if (!query.match("&hidden=") &&
2099 f.hidden.disabled == false) {
2100 query = query + "&hidden=false";
2103 if (!query.match("&rtl_content=") &&
2104 f.rtl_content.disabled == false) {
2105 query = query + "&rtl_content=false";
2108 if (!query.match("&private=") &&
2109 f.private.disabled == false) {
2110 query = query + "&private=false";
2113 if (!query.match("&cache_images=") &&
2114 f.cache_images.disabled == false) {
2115 query = query + "&cache_images=false";
2118 if (!query.match("&include_in_digest=") &&
2119 f.include_in_digest.disabled == false) {
2120 query = query + "&include_in_digest=false";
2125 notify_progress("Saving feeds...");
2127 xmlhttp.open("POST", "backend.php", true);
2128 xmlhttp.onreadystatechange=feedlist_callback;
2129 xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
2130 xmlhttp.send(query);
2135 exception_error("feedsEditSave", e);
2139 function batchFeedsToggleField(cb, elem, label) {
2141 var f = document.forms["batch_edit_feed_form"];
2142 var l = document.getElementById(label);
2145 f[elem].disabled = false;
2151 // new Effect.Highlight(f[elem], {duration: 1, startcolor: "#fff7d5",
2152 // queue: { position:'end', scope: 'BPEFQ', limit: 1 } } );
2155 f[elem].disabled = true;
2158 l.className = "insensitive";
2163 exception_error("batchFeedsToggleField", e);