ttrss/prefs.js

1961 lines
38 KiB
JavaScript
Raw Normal View History

2005-08-22 03:17:12 +02:00
var xmlhttp = false;
2005-11-23 08:07:04 +01:00
var active_feed_cat = false;
2005-09-08 09:43:44 +02:00
var active_label = false;
2005-10-28 19:58:20 +02:00
var active_tab = false;
2005-12-30 06:17:23 +01:00
var feed_to_expand = false;
2005-10-28 19:58:20 +02:00
var xmlhttp = Ajax.getTransport();
2005-08-22 03:17:12 +02:00
var init_params = new Array();
var caller_subop = false;
var sanity_check_done = false;
2007-08-25 14:11:54 +02:00
function infobox_callback() {
if (xmlhttp.readyState == 4) {
infobox_callback2(xmlhttp);
}
}
function infobox_submit_callback() {
if (xmlhttp.readyState == 4) {
infobox_submit_callback2(xmlhttp);
}
}
2007-08-09 14:45:30 +02:00
function replace_pubkey_callback() {
2005-12-30 06:17:23 +01:00
if (xmlhttp.readyState == 4) {
try {
2007-08-09 14:45:30 +02:00
var link = document.getElementById("pubGenAddress");
if (xmlhttp.responseXML) {
2007-08-09 15:09:34 +02:00
var new_link = xmlhttp.responseXML.getElementsByTagName("link")[0];
if (new_link) {
link.href = new_link.firstChild.nodeValue;
2008-03-20 06:34:43 +01:00
//link.innerHTML = new_link.firstChild.nodeValue;
2007-08-09 15:09:34 +02:00
new Effect.Highlight(link);
2008-03-20 06:34:43 +01:00
notify_info("Published feed URL changed.");
2007-08-09 15:09:34 +02:00
} else {
2008-03-20 06:34:43 +01:00
notify_error("Could not change feed URL.");
2007-08-09 15:09:34 +02:00
}
2007-08-09 14:45:30 +02:00
} else {
2008-03-20 06:34:43 +01:00
notify_error("Could not change feed URL.");
2007-08-09 14:45:30 +02:00
}
2005-12-30 06:17:23 +01:00
} catch (e) {
2007-08-09 14:45:30 +02:00
exception_error("replace_pubkey_callback", e);
2005-12-30 06:17:23 +01:00
}
}
2007-08-09 15:09:34 +02:00
}
2005-12-30 06:17:23 +01:00
2007-08-09 14:45:30 +02:00
function expand_feed_callback() {
2007-08-09 11:01:51 +02:00
if (xmlhttp.readyState == 4) {
try {
2007-08-09 14:45:30 +02:00
var container = document.getElementById("BRDET-" + feed_to_expand);
2007-08-09 11:01:51 +02:00
container.innerHTML=xmlhttp.responseText;
2007-08-11 18:58:57 +02:00
// container.style.display = "block";
Effect.Appear(container, {duration : 0.5});
2007-08-09 11:01:51 +02:00
} catch (e) {
2007-08-09 14:45:30 +02:00
exception_error("expand_feed_callback", e);
2007-08-09 11:01:51 +02:00
}
}
}
2005-08-22 03:17:12 +02:00
function feedlist_callback() {
if (xmlhttp.readyState == 4) {
2005-12-16 08:15:18 +01:00
try {
var container = document.getElementById('prefContent');
container.innerHTML=xmlhttp.responseText;
2005-12-30 06:29:24 +01:00
selectTab("feedConfig", true);
if (caller_subop) {
var tuple = caller_subop.split(":");
if (tuple[0] == 'editFeed') {
window.setTimeout('editFeed('+tuple[1]+')', 100);
}
caller_subop = false;
}
if (typeof correctPNG != 'undefined') {
correctPNG();
}
2006-05-19 05:22:59 +02:00
notify("");
2005-12-16 08:15:18 +01:00
} catch (e) {
exception_error("feedlist_callback", e);
2005-08-26 08:09:12 +02:00
}
2005-08-22 03:17:12 +02:00
}
}
/* stub for subscription dialog */
2007-08-25 14:11:54 +02:00
function dlg_frefresh_callback(transport) {
2007-08-25 14:11:54 +02:00
try {
var container = document.getElementById('prefContent');
container.innerHTML=transport.responseText;
selectTab("feedConfig", true);
2007-08-25 14:11:54 +02:00
if (caller_subop) {
var tuple = caller_subop.split(":");
if (tuple[0] == 'editFeed') {
window.setTimeout('editFeed('+tuple[1]+')', 100);
}
2007-08-25 14:11:54 +02:00
caller_subop = false;
}
2007-08-25 14:11:54 +02:00
if (typeof correctPNG != 'undefined') {
correctPNG();
}
notify("");
} catch (e) {
exception_error("feedlist_callback", e);
}
2007-08-25 14:11:54 +02:00
}
function filterlist_callback() {
2005-10-28 19:58:20 +02:00
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
if (typeof correctPNG != 'undefined') {
correctPNG();
}
2006-05-19 05:22:59 +02:00
notify("");
}
}
2005-09-08 09:43:44 +02:00
function labellist_callback() {
2005-10-28 19:58:20 +02:00
var container = document.getElementById('prefContent');
2005-09-08 09:43:44 +02:00
if (xmlhttp.readyState == 4) {
closeInfoBox();
2005-09-08 09:43:44 +02:00
container.innerHTML=xmlhttp.responseText;
if (active_label) {
2005-09-08 09:43:44 +02:00
var row = document.getElementById("LILRR-" + active_label);
if (row) {
if (!row.className.match("Selected")) {
row.className = row.className + "Selected";
}
}
var checkbox = document.getElementById("LICHK-" + active_label);
if (checkbox) {
checkbox.checked = true;
}
}
if (typeof correctPNG != 'undefined') {
correctPNG();
}
2006-05-19 05:22:59 +02:00
notify("");
2005-09-08 09:43:44 +02:00
}
}
2005-11-16 18:53:50 +01:00
2005-12-30 06:17:23 +01:00
function feed_browser_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
2006-05-19 05:22:59 +02:00
notify("");
2005-12-30 06:17:23 +01:00
}
}
2005-11-18 10:00:18 +01:00
function userlist_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
2006-05-19 05:22:59 +02:00
notify("");
2005-11-18 10:00:18 +01:00
}
}
2005-11-16 18:53:50 +01:00
function prefslist_callback() {
var container = document.getElementById('prefContent');
if (xmlhttp.readyState == 4) {
container.innerHTML=xmlhttp.responseText;
2006-05-19 05:22:59 +02:00
notify("");
2005-11-16 18:53:50 +01:00
}
}
2005-11-17 08:10:31 +01:00
function gethelp_callback() {
var container = document.getElementById('prefHelpBox');
if (xmlhttp.readyState == 4) {
container.innerHTML = xmlhttp.responseText;
container.style.display = "block";
}
}
2005-11-16 18:53:50 +01:00
2005-08-22 07:38:07 +02:00
function notify_callback() {
if (xmlhttp.readyState == 4) {
2007-03-02 20:58:58 +01:00
notify_info(xmlhttp.responseText);
}
2005-08-22 07:38:07 +02:00
}
function prefs_reset_callback() {
if (xmlhttp.readyState == 4) {
notify_info(xmlhttp.responseText);
selectTab();
}
}
2007-03-02 21:49:47 +01:00
function changepass_callback() {
2007-03-02 22:10:11 +01:00
try {
if (xmlhttp.readyState == 4) {
if (xmlhttp.responseText.indexOf("ERROR: ") == 0) {
notify_error(xmlhttp.responseText.replace("ERROR: ", ""));
} else {
notify_info(xmlhttp.responseText);
var warn = document.getElementById("default_pass_warning");
if (warn) warn.style.display = "none";
}
document.forms['change_pass_form'].reset();
2007-03-02 21:49:47 +01:00
2007-03-02 22:10:11 +01:00
}
} catch (e) {
exception_error("changepass_callback", e);
}
2007-03-02 21:49:47 +01:00
}
2007-08-20 09:29:39 +02:00
function infobox_feed_cat_callback() {
if (xmlhttp.readyState == 4) {
try {
infobox_callback();
if (document.getElementById("prefFeedCatList")) {
var elems = document.getElementById("prefFeedCatList").getElementsByTagName("SPAN");
for (var i = 0; i < elems.length; i++) {
if (elems[i].id && elems[i].id.match("FCATT-")) {
var cat_id = elems[i].id.replace("FCATT-", "");
new Ajax.InPlaceEditor(elems[i],
'backend.php?op=pref-feeds&subop=editCats&action=save&cid=' + cat_id);
}
}
}
} catch (e) {
exception_error("infobox_feed_cat_callback", e);
}
}
}
2005-11-23 11:47:30 +01:00
function updateFeedList(sort_key) {
2005-08-22 03:17:12 +02:00
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var feed_search = document.getElementById("feed_search");
var search = "";
if (feed_search) { search = feed_search.value; }
var slat = document.getElementById("show_last_article_times");
var slat_checked = false;
if (slat) {
slat_checked = slat.checked;
}
2005-11-23 11:47:30 +01:00
xmlhttp.open("GET", "backend.php?op=pref-feeds" +
"&sort=" + param_escape(sort_key) +
"&slat=" + param_escape(slat_checked) +
"&search=" + param_escape(search), true);
2005-08-22 03:17:12 +02:00
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
2006-08-20 15:54:54 +02:00
function updateUsersList(sort_key) {
2005-11-18 10:00:18 +01:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2006-08-20 15:54:54 +02:00
xmlhttp.open("GET", "backend.php?op=pref-users&sort="
+ param_escape(sort_key), true);
2005-11-18 10:00:18 +01:00
xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);
}
2005-09-08 09:43:44 +02:00
function addLabel() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var form = document.forms['label_edit_form'];
2005-09-08 09:43:44 +02:00
var sql_exp = form.sql_exp.value;
var description = form.description.value;
2005-09-08 09:43:44 +02:00
if (sql_exp == "") {
2007-08-10 18:16:43 +02:00
alert(__("Can't create label: missing SQL expression."));
return false;
2005-09-08 09:43:44 +02:00
}
if (description == "") {
2007-08-10 18:16:43 +02:00
alert(__("Can't create label: missing caption."));
return false;
2005-09-03 09:34:31 +02:00
}
var query = Form.serialize("label_edit_form");
2005-09-03 09:34:31 +02:00
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&" + query, true);
xmlhttp.onreadystatechange=infobox_submit_callback;
xmlhttp.send(null);
2005-09-03 09:34:31 +02:00
}
2005-09-08 09:43:44 +02:00
2005-08-22 05:20:00 +02:00
function addFeed() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 06:56:40 +02:00
var link = document.getElementById("fadd_link");
2005-08-22 07:23:49 +02:00
if (link.value.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("Error: No feed URL given."));
} else if (!isValidURL(link.value)) {
2007-03-06 07:54:47 +01:00
alert(__("Error: Invalid feed URL."));
2005-08-22 06:56:40 +02:00
} else {
2007-03-02 20:58:58 +01:00
notify_progress("Adding feed...");
2005-08-22 06:56:40 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&from=tt-rss&feed_url=" +
2005-08-22 06:56:40 +02:00
param_escape(link.value), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
link.value = "";
}
}
2005-11-23 08:07:04 +01:00
function addFeedCat() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var cat = document.getElementById("fadd_cat");
if (cat.value.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("Can't add category: no name specified."));
2005-11-23 08:07:04 +01:00
} else {
2007-03-02 20:58:58 +01:00
notify_progress("Adding feed category...");
2005-11-23 08:07:04 +01:00
2006-10-04 07:40:00 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=add&cat=" +
2005-11-23 08:07:04 +01:00
param_escape(cat.value), true);
2006-10-04 07:40:00 +02:00
xmlhttp.onreadystatechange=infobox_callback;
2005-11-23 08:07:04 +01:00
xmlhttp.send(null);
link.value = "";
}
}
2005-11-18 10:00:18 +01:00
function addUser() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sqlexp = document.getElementById("uadd_box");
if (sqlexp.value.length == 0) {
2007-08-10 18:16:43 +02:00
alert(__("Can't add user: no login specified."));
2005-11-18 10:00:18 +01:00
} else {
2007-03-02 20:58:58 +01:00
notify_progress("Adding user...");
2005-11-18 10:00:18 +01:00
xmlhttp.open("GET", "backend.php?op=pref-users&subop=add&login=" +
param_escape(sqlexp.value), true);
xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);
sqlexp.value = "";
}
}
2005-09-08 09:43:44 +02:00
function editLabel(id) {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2007-03-02 21:07:28 +01:00
notify_progress("Loading, please wait...");
document.getElementById("label_create_btn").disabled = true;
2005-09-08 09:43:44 +02:00
active_label = id;
selectTableRowsByIdPrefix('prefLabelList', 'LILRR-', 'LICHK-', false);
selectTableRowById('LILRR-'+id, 'LICHK-'+id, true);
2005-09-08 09:43:44 +02:00
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
param_escape(id), true);
xmlhttp.onreadystatechange=infobox_callback;
2005-09-08 09:43:44 +02:00
xmlhttp.send(null);
}
2005-11-18 10:00:18 +01:00
function editUser(id) {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2007-03-02 21:07:28 +01:00
notify_progress("Loading, please wait...");
selectTableRowsByIdPrefix('prefUserList', 'UMRR-', 'UMCHK-', false);
selectTableRowById('UMRR-'+id, 'UMCHK-'+id, true);
2005-11-18 10:00:18 +01:00
xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
param_escape(id), true);
xmlhttp.onreadystatechange=infobox_callback;
2005-11-18 10:00:18 +01:00
xmlhttp.send(null);
}
function editFilter(id) {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2007-03-02 21:07:28 +01:00
notify_progress("Loading, please wait...");
document.getElementById("create_filter_btn").disabled = true;
2006-05-22 05:54:51 +02:00
selectTableRowsByIdPrefix('prefFilterList', 'FILRR-', 'FICHK-', false);
selectTableRowById('FILRR-'+id, 'FICHK-'+id, true);
2006-05-22 05:54:51 +02:00
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" + param_escape(id), true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}
2005-08-22 06:56:40 +02:00
function editFeed(feed) {
// notify("Editing feed...");
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 06:56:40 +02:00
2007-03-02 21:07:28 +01:00
notify_progress("Loading, please wait...");
document.getElementById("subscribe_to_feed_btn").disabled = true;
try {
document.getElementById("top25_feeds_btn").disabled = true;
} catch (e) {
// this button is not always available, no-op if not found
}
2006-05-20 11:41:47 +02:00
// clean selection from all rows & select row being edited
selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
2005-12-25 14:43:31 +01:00
selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
param_escape(feed), true);
xmlhttp.onreadystatechange=infobox_callback;
2005-08-22 06:56:40 +02:00
xmlhttp.send(null);
}
2005-11-23 08:07:04 +01:00
function editFeedCat(cat) {
2005-09-08 09:43:44 +02:00
2005-11-23 08:07:04 +01:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
2005-09-08 09:43:44 +02:00
}
2007-03-02 21:07:28 +01:00
notify_progress("Loading, please wait...");
2005-11-23 08:07:04 +01:00
active_feed_cat = cat;
2005-11-18 10:00:18 +01:00
2006-10-04 07:40:00 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=edit&id=" +
2005-11-23 08:07:04 +01:00
param_escape(cat), true);
2006-10-04 07:40:00 +02:00
xmlhttp.onreadystatechange=infobox_callback;
2005-11-23 08:07:04 +01:00
xmlhttp.send(null);
2005-11-18 10:00:18 +01:00
}
2005-11-23 08:07:04 +01:00
function getSelectedLabels() {
return getSelectedTableRowIds("prefLabelList", "LILRR");
}
2005-09-08 09:43:44 +02:00
2005-11-23 08:07:04 +01:00
function getSelectedUsers() {
return getSelectedTableRowIds("prefUserList", "UMRR");
}
2005-08-22 07:23:49 +02:00
function getSelectedFeeds() {
2005-11-23 08:07:04 +01:00
return getSelectedTableRowIds("prefFeedList", "FEEDR");
}
2005-08-22 06:56:40 +02:00
2005-11-23 08:07:04 +01:00
function getSelectedFilters() {
return getSelectedTableRowIds("prefFilterList", "FILRR");
}
2005-08-22 06:56:40 +02:00
2005-11-23 08:07:04 +01:00
function getSelectedFeedCats() {
return getSelectedTableRowIds("prefFeedCatList", "FCATR");
2005-08-22 07:23:49 +02:00
}
function getSelectedFeedsFromBrowser() {
var list = document.getElementById("browseFeedList");
if (!list) list = document.getElementById("browseBigFeedList");
var selected = new Array();
for (i = 0; i < list.childNodes.length; i++) {
var child = list.childNodes[i];
if (child.id && child.id.match("FBROW-")) {
var id = child.id.replace("FBROW-", "");
var cb = document.getElementById("FBCHK-" + id);
if (cb.checked) {
selected.push(id);
}
}
}
return selected;
}
2005-09-08 09:43:44 +02:00
function removeSelectedLabels() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedLabels();
if (sel_rows.length > 0) {
2007-08-10 06:25:06 +02:00
var ok = confirm(__("Remove selected labels?"));
2005-09-08 09:43:44 +02:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Removing selected labels...");
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=remove&ids="+
param_escape(sel_rows.toString()), true);
xmlhttp.onreadystatechange=labellist_callback;
xmlhttp.send(null);
}
2005-09-08 09:43:44 +02:00
} else {
2007-08-10 18:16:43 +02:00
alert(__("No labels are selected."));
2005-09-08 09:43:44 +02:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-09-08 09:43:44 +02:00
}
2005-11-18 10:00:18 +01:00
function removeSelectedUsers() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedUsers();
if (sel_rows.length > 0) {
2007-08-10 06:25:06 +02:00
var ok = confirm(__("Remove selected users?"));
2005-11-18 10:00:18 +01:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Removing selected users...");
xmlhttp.open("GET", "backend.php?op=pref-users&subop=remove&ids="+
param_escape(sel_rows.toString()), true);
xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);
}
2005-11-18 10:00:18 +01:00
} else {
2007-08-10 18:16:43 +02:00
alert(__("No users are selected."));
2005-11-18 10:00:18 +01:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-11-18 10:00:18 +01:00
}
2005-09-08 09:43:44 +02:00
function removeSelectedFilters() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedFilters();
if (sel_rows.length > 0) {
2007-08-10 06:25:06 +02:00
var ok = confirm(__("Remove selected filters?"));
2005-09-08 09:43:44 +02:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Removing selected filters...");
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=remove&ids="+
param_escape(sel_rows.toString()), true);
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);
}
2005-09-08 09:43:44 +02:00
} else {
2007-08-10 18:16:43 +02:00
alert(__("No filters are selected."));
2005-09-08 09:43:44 +02:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-09-08 09:43:44 +02:00
}
2005-08-22 07:23:49 +02:00
function removeSelectedFeeds() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-08-22 07:23:49 +02:00
var sel_rows = getSelectedFeeds();
2005-08-22 06:56:40 +02:00
if (sel_rows.length > 0) {
2007-08-10 06:25:06 +02:00
var ok = confirm(__("Unsubscribe from selected feeds?"));
2005-08-22 06:56:40 +02:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Unsubscribing from selected feeds...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=remove&ids="+
param_escape(sel_rows.toString()), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
}
2005-08-22 05:20:00 +02:00
} else {
2005-08-22 06:56:40 +02:00
2007-08-10 18:16:43 +02:00
alert(__("No feeds are selected."));
2005-08-22 06:56:40 +02:00
2005-08-22 05:20:00 +02:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-08-22 05:20:00 +02:00
}
2005-08-22 03:17:12 +02:00
2007-10-18 06:51:29 +02:00
function clearSelectedFeeds() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedFeeds();
if (sel_rows.length > 1) {
alert(__("Please select only one feed."));
return;
}
if (sel_rows.length > 0) {
var ok = confirm(__("Erase all non-starred articles in selected feed?"));
if (ok) {
notify_progress("Clearing selected feed...");
clearFeedArticles(sel_rows[0]);
}
} else {
alert(__("No feeds are selected."));
}
return false;
}
2007-10-18 07:06:20 +02:00
function purgeSelectedFeeds() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedFeeds();
if (sel_rows.length > 0) {
var pr = prompt(__("How many days of articles to keep (0 - use default)?"), "0");
if (pr != undefined) {
notify_progress("Purging selected feed...");
var query = "backend.php?op=rpc&subop=purge&ids="+
param_escape(sel_rows.toString()) + "&days=" + pr;
debug(query);
new Ajax.Request(query, {
onComplete: function(transport) {
notify('');
} });
}
} else {
alert(__("No feeds are selected."));
}
return false;
}
2005-11-23 08:07:04 +01:00
function removeSelectedFeedCats() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedFeedCats();
if (sel_rows.length > 0) {
2007-08-10 06:25:06 +02:00
var ok = confirm(__("Remove selected categories?"));
2005-11-23 08:07:04 +01:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Removing selected categories...");
2006-10-04 07:40:00 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats&action=remove&ids="+
param_escape(sel_rows.toString()), true);
2006-10-04 07:40:00 +02:00
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}
2005-11-23 08:07:04 +01:00
} else {
2007-08-10 18:16:43 +02:00
alert(__("No categories are selected."));
2005-11-23 08:07:04 +01:00
}
2006-07-25 12:47:51 +02:00
return false;
2005-11-23 08:07:04 +01:00
}
function feedEditCancel() {
2005-08-25 17:15:27 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
document.getElementById("subscribe_to_feed_btn").disabled = false;
try {
document.getElementById("top25_feeds_btn").disabled = false;
} catch (e) {
// this button is not always available, no-op if not found
}
2005-12-10 21:06:41 +01:00
closeInfoBox();
2006-05-20 11:41:47 +02:00
selectPrefRows('feed', false); // cleanup feed selection
2006-07-25 12:47:51 +02:00
return false;
}
2005-11-23 08:07:04 +01:00
function feedCatEditCancel() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
active_feed_cat = false;
2006-05-18 09:56:52 +02:00
// notify("Operation cancelled.");
2005-11-23 08:07:04 +01:00
2006-10-04 07:40:00 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
xmlhttp.onreadystatechange=infobox_callback;
2005-11-23 08:07:04 +01:00
xmlhttp.send(null);
2006-07-25 12:47:51 +02:00
return false;
2005-11-23 08:07:04 +01:00
}
2005-08-26 08:56:00 +02:00
function feedEditSave() {
2005-12-16 08:15:18 +01:00
try {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2006-05-20 13:16:16 +02:00
// FIXME: add parameter validation
2006-05-20 13:16:16 +02:00
var query = Form.serialize("edit_feed_form");
2007-03-02 20:58:58 +01:00
notify_progress("Saving feed...");
2006-05-20 11:41:47 +02:00
2005-12-16 08:15:18 +01:00
xmlhttp.open("POST", "backend.php", true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
2006-05-20 13:16:16 +02:00
xmlhttp.send(query);
closeInfoBox();
return false;
2005-12-16 08:15:18 +01:00
} catch (e) {
exception_error("feedEditSave", e);
}
}
function feedCatEditSave() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2007-03-02 20:58:58 +01:00
notify_progress("Saving category...");
2006-05-20 14:51:39 +02:00
var query = Form.serialize("feed_cat_edit_form");
xmlhttp.open("GET", "backend.php?" + query, true);
2006-10-04 07:40:00 +02:00
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
active_feed_cat = false;
2006-07-25 12:47:51 +02:00
return false;
}
2005-09-08 09:43:44 +02:00
function labelEditCancel() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
document.getElementById("label_create_btn").disabled = false;
2005-09-08 09:43:44 +02:00
active_label = false;
selectPrefRows('label', false); // cleanup feed selection
2006-05-22 10:03:25 +02:00
closeInfoBox();
2006-07-25 12:47:51 +02:00
return false;
2005-09-08 09:43:44 +02:00
}
2005-11-18 10:00:18 +01:00
function userEditCancel() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
selectPrefRows('user', false); // cleanup feed selection
closeInfoBox();
2006-07-25 12:47:51 +02:00
return false;
2005-11-18 10:00:18 +01:00
}
2005-09-08 09:43:44 +02:00
function filterEditCancel() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
document.getElementById("create_filter_btn").disabled = false;
2006-05-22 05:54:51 +02:00
selectPrefRows('filter', false); // cleanup feed selection
closeInfoBox();
2006-07-25 12:47:51 +02:00
return false;
}
2005-09-08 09:43:44 +02:00
function labelEditSave() {
var label = active_label;
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
/* if (!is_opera()) {
2005-09-08 09:43:44 +02:00
2006-08-20 08:28:13 +02:00
var sql_exp = document.forms["label_edit_form"].sql_exp.value;
var description = document.forms["label_edit_form"].description.value;
if (sql_exp.length == 0) {
alert("SQL Expression cannot be blank.");
return false;
}
if (description.length == 0) {
alert("Caption field cannot be blank.");
return false;
}
} */
2005-09-08 09:43:44 +02:00
2006-05-22 10:03:25 +02:00
closeInfoBox();
2007-03-02 20:58:58 +01:00
notify_progress("Saving label...");
2005-11-20 08:41:42 +01:00
2005-09-08 09:43:44 +02:00
active_label = false;
2006-05-20 14:40:50 +02:00
query = Form.serialize("label_edit_form");
2006-05-22 10:03:25 +02:00
xmlhttp.open("GET", "backend.php?" + query, true);
2005-09-08 09:43:44 +02:00
xmlhttp.onreadystatechange=labellist_callback;
xmlhttp.send(null);
2006-07-25 12:47:51 +02:00
return false;
2005-09-08 09:43:44 +02:00
}
2005-11-18 10:00:18 +01:00
function userEditSave() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var login = document.forms["user_edit_form"].login.value;
2005-11-18 10:00:18 +01:00
if (login.length == 0) {
2007-08-10 18:16:43 +02:00
alert(__("Login field cannot be blank."));
2005-11-18 10:00:18 +01:00
return;
}
2007-03-02 20:58:58 +01:00
notify_progress("Saving user...");
closeInfoBox();
var query = Form.serialize("user_edit_form");
xmlhttp.open("GET", "backend.php?" + query, true);
2005-11-20 08:41:42 +01:00
xmlhttp.onreadystatechange=userlist_callback;
2005-11-18 10:00:18 +01:00
xmlhttp.send(null);
2006-07-25 12:47:51 +02:00
return false;
2005-11-18 10:00:18 +01:00
}
function filterEditSave() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
/* if (!is_opera()) {
2006-08-20 08:28:13 +02:00
var reg_exp = document.forms["filter_edit_form"].reg_exp.value;
if (reg_exp.length == 0) {
alert("Filter expression field cannot be blank.");
return;
}
} */
2007-03-02 20:58:58 +01:00
notify_progress("Saving filter...");
2006-05-20 14:26:07 +02:00
var query = Form.serialize("filter_edit_form");
2005-11-20 08:41:42 +01:00
2006-05-22 05:54:51 +02:00
closeInfoBox();
document.getElementById("create_filter_btn").disabled = false;
2006-05-20 14:26:07 +02:00
xmlhttp.open("GET", "backend.php?" + query, true);
xmlhttp.onreadystatechange=filterlist_callback;
2006-05-20 14:26:07 +02:00
xmlhttp.send(null);
2006-07-25 12:47:51 +02:00
return false;
}
2005-09-08 09:43:44 +02:00
function editSelectedLabel() {
var rows = getSelectedLabels();
2005-09-08 09:43:44 +02:00
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No labels are selected."));
2005-09-08 09:43:44 +02:00
return;
}
2005-09-08 09:43:44 +02:00
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one label."));
2005-09-08 09:43:44 +02:00
return;
}
2005-11-20 08:41:42 +01:00
notify("");
2005-09-08 09:43:44 +02:00
editLabel(rows[0]);
}
2005-11-18 10:00:18 +01:00
function editSelectedUser() {
var rows = getSelectedUsers();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No users are selected."));
2005-11-18 10:00:18 +01:00
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one user."));
2005-11-18 10:00:18 +01:00
return;
}
2005-11-20 08:41:42 +01:00
notify("");
2005-11-18 10:00:18 +01:00
editUser(rows[0]);
}
function resetSelectedUserPass() {
var rows = getSelectedUsers();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No users are selected."));
2005-11-18 10:00:18 +01:00
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one user."));
2005-11-18 10:00:18 +01:00
return;
}
2007-03-06 07:54:47 +01:00
var ok = confirm(__("Reset password of selected user?"));
2005-11-18 10:00:18 +01:00
if (ok) {
2007-03-02 20:58:58 +01:00
notify_progress("Resetting password for selected user...");
var id = rows[0];
xmlhttp.open("GET", "backend.php?op=pref-users&subop=resetPass&id=" +
param_escape(id), true);
xmlhttp.onreadystatechange=userlist_callback;
xmlhttp.send(null);
}
2005-11-18 10:00:18 +01:00
}
2005-11-18 13:02:38 +01:00
function selectedUserDetails() {
2005-11-18 10:00:18 +01:00
2005-11-18 13:38:21 +01:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2005-11-18 13:02:38 +01:00
var rows = getSelectedUsers();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No users are selected."));
2005-11-18 13:02:38 +01:00
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one user."));
2005-11-18 13:02:38 +01:00
return;
}
2007-03-02 21:11:01 +01:00
notify_progress("Loading, please wait...");
2005-11-18 13:02:38 +01:00
2007-03-02 21:11:01 +01:00
var id = rows[0];
2005-11-20 08:41:42 +01:00
2005-11-18 13:38:21 +01:00
xmlhttp.open("GET", "backend.php?op=user-details&id=" + id, true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}
function selectedFeedDetails() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var rows = getSelectedFeeds();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No feeds are selected."));
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one feed."));
return;
}
// var id = rows[0];
2005-11-20 08:41:42 +01:00
notify("");
xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
param_escape(rows.toString()), true);
xmlhttp.onreadystatechange=infobox_callback;
2005-11-18 13:38:21 +01:00
xmlhttp.send(null);
2005-11-18 13:02:38 +01:00
}
function editSelectedFilter() {
var rows = getSelectedFilters();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No filters are selected."));
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one filter."));
return;
}
2005-11-20 08:41:42 +01:00
notify("");
editFilter(rows[0]);
}
function editSelectedFeed() {
var rows = getSelectedFeeds();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No feeds are selected."));
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select one feed."));
return;
}
2005-11-20 08:41:42 +01:00
notify("");
editFeed(rows[0]);
2005-11-23 08:07:04 +01:00
}
function editSelectedFeedCat() {
var rows = getSelectedFeedCats();
if (rows.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No categories are selected."));
2005-11-23 08:07:04 +01:00
return;
}
if (rows.length > 1) {
2007-03-06 07:54:47 +01:00
alert(__("Please select only one category."));
2005-11-23 08:07:04 +01:00
return;
}
notify("");
editFeedCat(rows[0]);
}
2005-08-25 08:57:51 +02:00
function localPiggieFunction(enable) {
if (enable) {
2006-08-12 16:57:13 +02:00
debug("I LOVEDED IT!");
2006-02-25 06:54:53 +01:00
var piggie = document.getElementById("piggie");
2006-02-25 13:43:30 +01:00
2007-08-20 06:57:01 +02:00
Element.show(piggie);
Position.Center(piggie);
Effect.Puff(piggie);
}
}
2005-09-02 13:49:47 +02:00
function validateOpmlImport() {
var opml_file = document.getElementById("opml_file");
if (opml_file.value.length == 0) {
2007-03-06 07:54:47 +01:00
alert(__("No OPML file to upload."));
2005-09-02 13:49:47 +02:00
return false;
} else {
return true;
}
}
2006-08-20 15:40:03 +02:00
function updateFilterList(sort_key) {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2006-08-20 15:43:58 +02:00
xmlhttp.open("GET", "backend.php?op=pref-filters&sort=" +
param_escape(sort_key), true);
xmlhttp.onreadystatechange=filterlist_callback;
xmlhttp.send(null);
}
2006-08-20 15:43:58 +02:00
function updateLabelList(sort_key) {
2005-09-08 09:43:44 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2006-08-20 15:43:58 +02:00
xmlhttp.open("GET", "backend.php?op=pref-labels&sort=" +
param_escape(sort_key), true);
2005-09-08 09:43:44 +02:00
xmlhttp.onreadystatechange=labellist_callback;
xmlhttp.send(null);
}
2005-11-16 18:53:50 +01:00
function updatePrefsList() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
xmlhttp.onreadystatechange=prefslist_callback;
xmlhttp.send(null);
}
function selectTab(id, noupdate, subop) {
2005-12-30 06:29:24 +01:00
// alert(id);
2005-09-08 09:43:44 +02:00
2006-06-01 16:48:46 +02:00
if (!id) id = active_tab;
2006-05-19 05:22:59 +02:00
2006-06-01 16:48:46 +02:00
try {
2006-06-01 16:48:46 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
2005-12-30 06:29:24 +01:00
}
2005-10-28 19:58:20 +02:00
2006-10-10 05:58:08 +02:00
try {
var c = document.getElementById('prefContent');
c.scrollTop = 0;
} catch (e) { };
2006-06-01 16:48:46 +02:00
if (!noupdate) {
2005-10-28 19:58:20 +02:00
2006-06-01 16:48:46 +02:00
debug("selectTab: " + id + "(NU: " + noupdate + ")");
2007-03-02 21:07:28 +01:00
notify_progress("Loading, please wait...");
2006-06-01 16:48:46 +02:00
// close active infobox if needed
closeInfoBox();
// clean up all current selections, just in case
active_feed_cat = false;
active_label = false;
// Effect.Fade("prefContent", {duration: 1, to: 0.01,
// queue: { position:'end', scope: 'FEED_TAB', limit: 1 } } );
2006-06-01 16:48:46 +02:00
if (id == "feedConfig") {
updateFeedList();
} else if (id == "filterConfig") {
updateFilterList();
} else if (id == "labelConfig") {
updateLabelList();
} else if (id == "genConfig") {
updatePrefsList();
} else if (id == "userConfig") {
updateUsersList();
} else if (id == "feedBrowser") {
updateBigFeedBrowser();
}
2005-10-28 19:58:20 +02:00
}
2006-06-01 16:48:46 +02:00
var tab = document.getElementById(active_tab + "Tab");
if (tab) {
if (tab.className.match("Selected")) {
tab.className = "prefsTab";
}
2005-10-28 19:58:20 +02:00
}
2006-06-01 16:48:46 +02:00
tab = document.getElementById(id + "Tab");
if (tab) {
if (!tab.className.match("Selected")) {
tab.className = tab.className + "Selected";
}
}
active_tab = id;
2005-10-28 19:58:20 +02:00
2006-06-01 16:48:46 +02:00
} catch (e) {
exception_error("selectTab", e);
}
}
function backend_sanity_check_callback() {
2005-10-28 19:58:20 +02:00
if (xmlhttp.readyState == 4) {
try {
if (sanity_check_done) {
2007-04-24 05:32:26 +02:00
fatalError(11, "Sanity check request received twice. This can indicate "+
"presence of Firebug or some other disrupting extension. "+
"Please disable it and try again.");
return;
}
if (!xmlhttp.responseXML) {
fatalError(3, "[D001, Received reply is not XML]: " + xmlhttp.responseText);
return;
}
var reply = xmlhttp.responseXML.firstChild.firstChild;
if (!reply) {
fatalError(3, "[D002, Invalid RPC reply]: " + xmlhttp.responseText);
return;
}
var error_code = reply.getAttribute("error-code");
if (error_code && error_code != 0) {
return fatalError(error_code, reply.getAttribute("error-msg"));
}
debug("sanity check ok");
var params = reply.nextSibling;
if (params) {
debug('reading init-params...');
var param = params.firstChild;
while (param) {
var k = param.getAttribute("key");
var v = param.getAttribute("value");
debug(k + " => " + v);
init_params[k] = v;
param = param.nextSibling;
}
}
sanity_check_done = true;
init_second_stage();
} catch (e) {
exception_error("backend_sanity_check_callback", e);
}
}
}
function init_second_stage() {
2006-06-01 16:48:46 +02:00
try {
active_tab = getInitParam("prefs_active_tab");
2007-05-04 05:26:20 +02:00
if (!active_tab || active_tab == '0') active_tab = "genConfig";
2005-12-11 07:52:46 +01:00
2006-08-12 16:57:13 +02:00
document.onkeydown = pref_hotkey_handler;
var tab = getURLParam('tab');
caller_subop = getURLParam('subop');
if (tab) {
active_tab = tab;
}
2006-06-01 16:48:46 +02:00
if (navigator.userAgent.match("Opera")) {
setTimeout("selectTab()", 500);
} else {
selectTab(active_tab);
}
notify("");
} catch (e) {
exception_error("init_second_stage", e);
}
}
2005-08-22 03:17:12 +02:00
function init() {
2005-08-25 17:26:33 +02:00
2005-11-26 11:06:56 +01:00
try {
2006-02-24 11:15:30 +01:00
if (arguments.callee.done) return;
arguments.callee.done = true;
if (getURLParam('debug')) {
document.getElementById('debug_output').style.display = 'block';
debug('debug mode activated');
}
2005-11-26 11:06:56 +01:00
// IE kludge
if (!xmlhttp) {
document.getElementById("prefContent").innerHTML =
"<b>Fatal error:</b> This program needs XmlHttpRequest " +
"to function properly. Your browser doesn't seem to support it.";
return;
}
2005-12-11 07:52:46 +01:00
xmlhttp.open("GET", "backend.php?op=rpc&subop=sanityCheck", true);
xmlhttp.onreadystatechange=backend_sanity_check_callback;
xmlhttp.send(null);
2005-11-26 11:06:56 +01:00
} catch (e) {
exception_error("init", e);
2005-08-25 17:26:33 +02:00
}
2005-08-22 03:17:12 +02:00
}
2005-11-17 08:10:31 +01:00
function categorizeSelectedFeeds() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedFeeds();
var cat_sel = document.getElementById("sfeed_set_fcat");
2006-05-20 13:39:22 +02:00
var cat_id = cat_sel[cat_sel.selectedIndex].value;
if (sel_rows.length > 0) {
2007-03-02 20:58:58 +01:00
notify_progress("Changing category of selected feeds...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=categorize&ids="+
param_escape(sel_rows.toString()) + "&cat_id=" + param_escape(cat_id), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
} else {
2007-03-06 07:54:47 +01:00
alert(__("No feeds are selected."));
}
}
function validatePrefsReset() {
try {
var ok = confirm(__("Reset to defaults?"));
if (ok) {
var query = Form.serialize("pref_prefs_form");
query = query + "&subop=reset-config";
debug(query);
xmlhttp.open("POST", "backend.php", true);
xmlhttp.onreadystatechange=prefs_reset_callback;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send(query);
}
} catch (e) {
exception_error("validatePrefsSave", e);
}
return false;
}
2005-12-29 17:36:41 +01:00
2006-05-18 08:23:00 +02:00
function browseFeeds(limit) {
2005-12-29 17:36:41 +01:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=browse", true);
xmlhttp.onreadystatechange=infobox_callback;
xmlhttp.send(null);
}
2005-12-29 19:25:07 +01:00
function feedBrowserSubscribe() {
try {
var selected = getSelectedFeedsFromBrowser();
2005-12-29 19:25:07 +01:00
if (selected.length > 0) {
closeInfoBox();
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=massSubscribe&ids="+
param_escape(selected.toString()), true);
xmlhttp.onreadystatechange=feedlist_callback;
xmlhttp.send(null);
} else {
2007-08-10 18:16:43 +02:00
alert(__("No feeds are selected."));
2005-12-29 19:25:07 +01:00
}
} catch (e) {
exception_error("feedBrowserSubscribe", e);
}
}
2005-12-30 06:17:23 +01:00
2006-05-18 08:23:00 +02:00
function updateBigFeedBrowser(limit) {
2005-12-30 06:17:23 +01:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
2006-05-18 08:23:00 +02:00
var query = "backend.php?op=pref-feed-browser";
var limit_sel = document.getElementById("feedBrowserLimit");
if (limit_sel) {
var limit = limit_sel[limit_sel.selectedIndex].value;
query = query + "&limit=" + param_escape(limit);
}
xmlhttp.open("GET", query, true);
2005-12-30 06:17:23 +01:00
xmlhttp.onreadystatechange=feed_browser_callback;
xmlhttp.send(null);
}
2005-12-30 07:00:36 +01:00
function browserToggleExpand(id) {
2005-12-30 06:17:23 +01:00
try {
/* if (feed_to_expand && feed_to_expand != id) {
var d = document.getElementById("BRDET-" + feed_to_expand);
d.style.display = "none";
} */
2005-12-30 07:00:36 +01:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
/* if (feed_to_expand && id != feed_to_expand) {
Effect.Fade('BRDET-' + feed_to_expand, {duration : 0.5});
} */
2005-12-30 07:00:36 +01:00
var d = document.getElementById("BRDET-" + id);
2005-12-30 06:17:23 +01:00
2007-08-11 18:58:57 +02:00
if (Element.visible(d)) {
Effect.Fade(d, {duration : 0.5});
2007-08-11 18:58:57 +02:00
} else {
2005-12-30 07:00:36 +01:00
feed_to_expand = id;
2005-12-30 06:17:23 +01:00
2005-12-30 07:00:36 +01:00
xmlhttp.open("GET", "backend.php?op=pref-feed-browser&subop=details&id="
+ param_escape(id), true);
xmlhttp.onreadystatechange=expand_feed_callback;
xmlhttp.send(null);
}
2005-12-30 06:17:23 +01:00
} catch (e) {
2007-08-11 18:58:57 +02:00
exception_error("browserToggleExpand", e);
2005-12-30 06:17:23 +01:00
}
}
2006-05-18 07:19:40 +02:00
function selectPrefRows(kind, select) {
if (kind) {
var opbarid = false;
var nchk = false;
var nrow = false;
var lname = false;
if (kind == "feed") {
opbarid = "feedOpToolbar";
nrow = "FEEDR-";
nchk = "FRCHK-";
lname = "prefFeedList";
} else if (kind == "fcat") {
opbarid = "catOpToolbar";
nrow = "FCATR-";
2006-10-04 07:40:00 +02:00
nchk = "FCCHK-";
lname = "prefFeedCatList";
} else if (kind == "filter") {
opbarid = "filterOpToolbar";
nrow = "FILRR-";
nchk = "FICHK-";
lname = "prefFilterList";
} else if (kind == "label") {
opbarid = "labelOpToolbar";
nrow = "LILRR-";
nchk = "LICHK-";
lname = "prefLabelList";
} else if (kind == "user") {
opbarid = "userOpToolbar";
nrow = "UMRR-";
nchk = "UMCHK-";
lname = "prefUserList";
}
if (opbarid) {
selectTableRowsByIdPrefix(lname, nrow, nchk, select);
disableContainerChildren(opbarid, !select);
}
}
}
function toggleSelectPrefRow(sender, kind) {
toggleSelectRow(sender);
if (kind) {
var opbarid = false;
var nsel = -1;
if (kind == "feed") {
opbarid = "feedOpToolbar";
nsel = getSelectedFeeds();
} else if (kind == "fcat") {
opbarid = "catOpToolbar";
nsel = getSelectedFeedCats();
} else if (kind == "filter") {
opbarid = "filterOpToolbar";
nsel = getSelectedFilters();
} else if (kind == "label") {
opbarid = "labelOpToolbar";
nsel = getSelectedLabels();
} else if (kind == "user") {
opbarid = "userOpToolbar";
nsel = getSelectedUsers();
}
if (opbarid && nsel != -1) {
disableContainerChildren(opbarid, nsel == false);
}
}
}
function toggleSelectFBListRow(sender) {
toggleSelectListRow(sender);
disableContainerChildren("fbrOpToolbar", getSelectedFeedsFromBrowser() == 0);
}
2006-08-12 16:57:13 +02:00
var seq = "";
function pref_hotkey_handler(e) {
try {
var keycode;
if (!hotkeys_enabled) return;
if (window.event) {
keycode = window.event.keyCode;
} else if (e) {
keycode = e.which;
}
if (keycode == 13 || keycode == 27) {
seq = "";
} else {
seq = seq + "" + keycode;
}
if (document.getElementById("piggie")) {
if (seq.match("807371717369")) {
seq = "";
localPiggieFunction(true);
} else {
localPiggieFunction(false);
}
}
} catch (e) {
exception_error("pref_hotkey_handler", e);
}
}
2006-10-04 07:40:00 +02:00
function editFeedCats() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
document.getElementById("subscribe_to_feed_btn").disabled = true;
try {
document.getElementById("top25_feeds_btn").disabled = true;
} catch (e) {
// this button is not always available, no-op if not found
}
2006-10-04 07:40:00 +02:00
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCats", true);
2007-08-20 09:29:39 +02:00
xmlhttp.onreadystatechange=infobox_feed_cat_callback;
2006-10-04 07:40:00 +02:00
xmlhttp.send(null);
}
2006-12-01 07:26:05 +01:00
function showFeedsWithErrors() {
displayDlg('feedUpdateErrors');
}
2006-12-08 08:21:44 +01:00
2007-03-02 21:49:47 +01:00
function changeUserPassword() {
try {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return false;
}
var f = document.forms["change_pass_form"];
if (f) {
if (f.OLD_PASSWORD.value == "") {
new Effect.Highlight(f.OLD_PASSWORD);
notify_error("Old password cannot be blank.");
return false;
}
if (f.NEW_PASSWORD.value == "") {
new Effect.Highlight(f.NEW_PASSWORD);
notify_error("New password cannot be blank.");
return false;
}
if (f.CONFIRM_PASSWORD.value == "") {
new Effect.Highlight(f.CONFIRM_PASSWORD);
notify_error("Entered passwords do not match.");
return false;
}
if (f.CONFIRM_PASSWORD.value != f.NEW_PASSWORD.value) {
new Effect.Highlight(f.CONFIRM_PASSWORD);
new Effect.Highlight(f.NEW_PASSWORD);
notify_error("Entered passwords do not match.");
return false;
}
}
2007-03-02 21:49:47 +01:00
var query = Form.serialize("change_pass_form");
notify_progress("Trying to change password...");
xmlhttp.open("POST", "backend.php", true);
xmlhttp.onreadystatechange=changepass_callback;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send(query);
} catch (e) {
exception_error("changeUserPassword", e);
}
return false;
}
2006-12-08 08:21:44 +01:00
2007-03-02 22:10:11 +01:00
function changeUserEmail() {
try {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return false;
}
var query = Form.serialize("change_email_form");
notify_progress("Trying to change e-mail...");
xmlhttp.open("POST", "backend.php", true);
xmlhttp.onreadystatechange=notify_callback;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send(query);
} catch (e) {
exception_error("changeUserPassword", e);
}
return false;
}
function feedlistToggleSLAT() {
notify_progress("Loading, please wait...");
updateFeedList()
}
2007-08-09 11:01:51 +02:00
2007-08-09 14:45:30 +02:00
function pubRegenKey() {
2007-08-09 11:01:51 +02:00
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
2007-08-09 14:45:30 +02:00
return false;
2007-08-09 11:01:51 +02:00
}
2007-08-10 06:25:06 +02:00
var ok = confirm(__("Replace current publishing address with a new one?"));
2007-08-09 11:01:51 +02:00
2007-08-09 14:45:30 +02:00
if (ok) {
notify_progress("Trying to change address...");
2007-08-09 15:09:34 +02:00
xmlhttp.open("GET", "backend.php?op=rpc&subop=regenPubKey");
2007-08-09 14:45:30 +02:00
xmlhttp.onreadystatechange=replace_pubkey_callback;
xmlhttp.send(null);
}
return false;
2007-08-09 15:09:34 +02:00
}
2008-03-20 06:34:43 +01:00
function pubToClipboard() {
try {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return false;
}
var link = document.getElementById("pubGenAddress");
alert(link.href);
} catch (e) {
exception_error("pubToClipboard", e);
}
return false;
}
function validatePrefsSave() {
try {
var ok = confirm(__("Save current configuration?"));
if (ok) {
var query = Form.serialize("pref_prefs_form");
query = query + "&subop=save-config";
debug(query);
xmlhttp.open("POST", "backend.php", true);
xmlhttp.onreadystatechange=notify_callback;
xmlhttp.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xmlhttp.send(query);
}
} catch (e) {
exception_error("validatePrefsSave", e);
}
return false;
}
2007-10-18 06:51:29 +02:00
function feedActionChange() {
try {
var chooser = document.getElementById("feedActionChooser");
var opid = chooser[chooser.selectedIndex].value;
chooser.selectedIndex = 0;
feedActionGo(opid);
} catch (e) {
exception_error("feedActionChange", e);
}
}
function feedActionGo(op) {
try {
if (op == "facEdit") {
editSelectedFeed();
}
if (op == "facClear") {
clearSelectedFeeds();
}
if (op == "facPurge") {
purgeSelectedFeeds();
}
2007-10-18 07:06:20 +02:00
if (op == "facEditCats") {
editFeedCats();
}
if (op == "facRescore") {
rescoreSelectedFeeds();
}
2007-10-18 06:51:29 +02:00
if (op == "facUnsubscribe") {
removeSelectedFeeds();
}
} catch (e) {
exception_error("feedActionGo", e);
}
}
function clearFeedArticles(feed_id) {
notify_progress("Clearing feed...");
var query = "backend.php?op=pref-feeds&quiet=1&subop=clear&id=" + feed_id;
new Ajax.Request(query, {
onComplete: function(transport) {
notify('');
} });
return false;
}
function rescoreSelectedFeeds() {
if (!xmlhttp_ready(xmlhttp)) {
printLockingError();
return
}
var sel_rows = getSelectedFeeds();
if (sel_rows.length > 0) {
2008-04-30 12:54:26 +02:00
//var ok = confirm(__("Rescore last 100 articles in selected feeds?"));
var ok = confirm(__("Rescore articles in selected feeds?"));
if (ok) {
notify_progress("Rescoring selected feeds...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescore&quiet=1&ids="+
param_escape(sel_rows.toString()), true);
xmlhttp.onreadystatechange=notify_callback;
xmlhttp.send(null);
}
} else {
alert(__("No feeds are selected."));
}
return false;
}
2007-10-18 06:51:29 +02:00
function rescore_all_feeds() {
var ok = confirm(__("Rescore all articles? This operation may take a lot of time."));
if (ok) {
notify_progress("Rescoring feeds...");
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=rescoreAll&quiet=1", true);
xmlhttp.onreadystatechange=notify_callback;
xmlhttp.send(null);
}
}