2005-08-22 03:17:12 +02:00
|
|
|
var xmlhttp = false;
|
|
|
|
|
2005-08-26 08:09:12 +02:00
|
|
|
var active_feed = false;
|
2005-11-23 08:07:04 +01:00
|
|
|
var active_feed_cat = false;
|
2005-09-03 09:22:29 +02:00
|
|
|
var active_filter = false;
|
2005-09-08 09:43:44 +02:00
|
|
|
var active_label = false;
|
2005-11-18 10:00:18 +01:00
|
|
|
var active_user = 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
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
/*@cc_on @*/
|
|
|
|
/*@if (@_jscript_version >= 5)
|
|
|
|
// JScript gives us Conditional compilation, we can cope with old IE versions.
|
|
|
|
// and security blocked creation of the objects.
|
|
|
|
try {
|
|
|
|
xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
|
|
|
|
} catch (e) {
|
|
|
|
try {
|
|
|
|
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
|
|
|
|
} catch (E) {
|
|
|
|
xmlhttp = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@end @*/
|
|
|
|
|
|
|
|
if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
|
|
|
|
xmlhttp = new XMLHttpRequest();
|
|
|
|
}
|
|
|
|
|
2005-12-30 06:17:23 +01:00
|
|
|
function expand_feed_callback() {
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
try {
|
|
|
|
var container = document.getElementById("BRDET-" + feed_to_expand);
|
|
|
|
container.innerHTML=xmlhttp.responseText;
|
|
|
|
container.style.display = "block";
|
|
|
|
p_notify("");
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("expand_feed_callback", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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);
|
|
|
|
|
2005-12-16 08:15:18 +01:00
|
|
|
if (active_feed) {
|
|
|
|
var row = document.getElementById("FEEDR-" + active_feed);
|
|
|
|
if (row) {
|
|
|
|
if (!row.className.match("Selected")) {
|
|
|
|
row.className = row.className + "Selected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var checkbox = document.getElementById("FRCHK-" + active_feed);
|
|
|
|
if (checkbox) {
|
|
|
|
checkbox.checked = true;
|
|
|
|
}
|
2005-08-26 08:09:12 +02:00
|
|
|
}
|
2005-12-16 08:15:18 +01:00
|
|
|
p_notify("");
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("feedlist_callback", e);
|
2005-08-26 08:09:12 +02:00
|
|
|
}
|
2005-08-22 03:17:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
function filterlist_callback() {
|
2005-10-28 19:58:20 +02:00
|
|
|
var container = document.getElementById('prefContent');
|
2005-09-03 09:22:29 +02:00
|
|
|
if (xmlhttp.readyState == 4) {
|
2005-10-28 19:58:20 +02:00
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
container.innerHTML=xmlhttp.responseText;
|
|
|
|
|
|
|
|
if (active_filter) {
|
|
|
|
var row = document.getElementById("FILRR-" + active_filter);
|
|
|
|
if (row) {
|
|
|
|
if (!row.className.match("Selected")) {
|
|
|
|
row.className = row.className + "Selected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var checkbox = document.getElementById("FICHK-" + active_filter);
|
|
|
|
|
|
|
|
if (checkbox) {
|
|
|
|
checkbox.checked = true;
|
|
|
|
}
|
|
|
|
}
|
2005-10-28 19:58:20 +02:00
|
|
|
p_notify("");
|
2005-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
container.innerHTML=xmlhttp.responseText;
|
|
|
|
|
2005-11-18 14:23:17 +01:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2005-10-28 19:58:20 +02:00
|
|
|
p_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;
|
|
|
|
p_notify("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
function userlist_callback() {
|
|
|
|
var container = document.getElementById('prefContent');
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
container.innerHTML=xmlhttp.responseText;
|
|
|
|
|
2005-11-18 13:38:21 +01:00
|
|
|
if (active_user) {
|
|
|
|
var row = document.getElementById("UMRR-" + active_user);
|
2005-11-18 10:00:18 +01:00
|
|
|
if (row) {
|
|
|
|
if (!row.className.match("Selected")) {
|
|
|
|
row.className = row.className + "Selected";
|
|
|
|
}
|
|
|
|
}
|
2005-11-18 13:38:21 +01:00
|
|
|
var checkbox = document.getElementById("UMCHK-" + active_user);
|
2005-11-18 10:00:18 +01:00
|
|
|
|
|
|
|
if (checkbox) {
|
|
|
|
checkbox.checked = true;
|
|
|
|
}
|
2005-11-18 13:38:21 +01:00
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
p_notify("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-11-19 20:06:42 +01:00
|
|
|
function infobox_callback() {
|
2005-11-18 13:38:21 +01:00
|
|
|
if (xmlhttp.readyState == 4) {
|
2005-11-20 11:02:36 +01:00
|
|
|
var box = document.getElementById('infoBox');
|
|
|
|
var shadow = document.getElementById('infoBoxShadow');
|
|
|
|
|
|
|
|
if (box) {
|
|
|
|
box.innerHTML=xmlhttp.responseText;
|
|
|
|
if (shadow) {
|
|
|
|
shadow.style.display = "block";
|
|
|
|
} else {
|
2005-12-11 09:29:22 +01:00
|
|
|
box.style.display = "block";
|
2005-11-20 11:02:36 +01:00
|
|
|
}
|
2005-11-19 20:06:42 +01:00
|
|
|
}
|
2005-11-18 13:38:21 +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;
|
|
|
|
|
|
|
|
p_notify("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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() {
|
|
|
|
var container = document.getElementById('notify');
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
container.innerHTML=xmlhttp.responseText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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)) {
|
2005-08-24 10:02:58 +02:00
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
// document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
|
|
|
|
|
|
|
|
p_notify("Loading, please wait...");
|
2005-08-22 03:17:12 +02:00
|
|
|
|
2005-11-29 10:11:43 +01:00
|
|
|
var feed_search = document.getElementById("feed_search");
|
|
|
|
var search = "";
|
|
|
|
if (feed_search) { search = feed_search.value; }
|
|
|
|
|
2005-11-23 11:47:30 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds" +
|
2005-11-29 10:11:43 +01:00
|
|
|
"&sort=" + param_escape(sort_key) +
|
|
|
|
"&search=" + param_escape(search), true);
|
2005-08-22 03:17:12 +02:00
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
function updateUsersList() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// document.getElementById("prefContent").innerHTML = "Loading feeds, please wait...";
|
|
|
|
|
|
|
|
p_notify("Loading, please wait...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-users", true);
|
|
|
|
xmlhttp.onreadystatechange=userlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
function addLabel() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var sqlexp = document.getElementById("ladd_expr");
|
|
|
|
|
|
|
|
if (sqlexp.value.length == 0) {
|
|
|
|
notify("Missing SQL expression.");
|
|
|
|
} else {
|
|
|
|
notify("Adding label...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=add&exp=" +
|
|
|
|
param_escape(sqlexp.value), true);
|
|
|
|
|
|
|
|
xmlhttp.onreadystatechange=labellist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
sqlexp.value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:34:31 +02:00
|
|
|
function addFilter() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var regexp = document.getElementById("fadd_regexp");
|
|
|
|
var match = document.getElementById("fadd_match");
|
2005-11-21 14:49:15 +01:00
|
|
|
var feed = document.getElementById("fadd_feed");
|
2005-11-29 19:43:39 +01:00
|
|
|
var action = document.getElementById("fadd_action");
|
2005-09-03 09:34:31 +02:00
|
|
|
|
|
|
|
if (regexp.value.length == 0) {
|
|
|
|
notify("Missing filter expression.");
|
|
|
|
} else {
|
|
|
|
notify("Adding filter...");
|
|
|
|
|
2005-09-08 07:02:49 +02:00
|
|
|
var v_match = match[match.selectedIndex].text;
|
2005-11-21 14:49:15 +01:00
|
|
|
var feed_id = feed[feed.selectedIndex].id;
|
2005-11-29 19:43:39 +01:00
|
|
|
var action_id = action[action.selectedIndex].id;
|
2005-11-21 14:49:15 +01:00
|
|
|
|
2005-09-03 09:34:31 +02:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add®exp=" +
|
2005-11-21 14:49:15 +01:00
|
|
|
param_escape(regexp.value) + "&match=" + v_match +
|
2005-11-29 19:43:39 +01:00
|
|
|
"&fid=" + param_escape(feed_id) + "&aid=" + param_escape(action_id), true);
|
2005-09-03 09:34:31 +02:00
|
|
|
|
|
|
|
xmlhttp.onreadystatechange=filterlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
regexp.value = "";
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
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)) {
|
2005-08-24 10:02:58 +02:00
|
|
|
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) {
|
2005-08-23 13:38:56 +02:00
|
|
|
notify("Missing feed URL.");
|
2005-08-22 06:56:40 +02:00
|
|
|
} else {
|
|
|
|
notify("Adding feed...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=add&link=" +
|
|
|
|
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) {
|
|
|
|
notify("Missing feed category.");
|
|
|
|
} else {
|
|
|
|
notify("Adding feed category...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=addCat&cat=" +
|
|
|
|
param_escape(cat.value), true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
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) {
|
|
|
|
notify("Missing user login.");
|
|
|
|
} else {
|
|
|
|
notify("Adding user...");
|
|
|
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
active_label = id;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=edit&id=" +
|
|
|
|
param_escape(id), true);
|
|
|
|
xmlhttp.onreadystatechange=labellist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
function editUser(id) {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
active_user = id;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-users&subop=edit&id=" +
|
|
|
|
param_escape(id), true);
|
|
|
|
xmlhttp.onreadystatechange=userlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
function editFilter(id) {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
active_filter = id;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=edit&id=" +
|
|
|
|
param_escape(id), true);
|
|
|
|
xmlhttp.onreadystatechange=filterlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-08-22 06:56:40 +02:00
|
|
|
function editFeed(feed) {
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
// notify("Editing feed...");
|
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
2005-08-24 10:02:58 +02:00
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-26 08:09:12 +02:00
|
|
|
active_feed = feed;
|
|
|
|
|
2005-12-10 20:35:09 +01:00
|
|
|
/* xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
|
2005-08-22 06:56:40 +02:00
|
|
|
param_escape(feed), true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
2005-12-10 20:35:09 +01:00
|
|
|
xmlhttp.send(null); */
|
|
|
|
|
|
|
|
selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-', 'FRCHK-', false);
|
2005-12-25 14:43:31 +01:00
|
|
|
// selectTableRowsByIdPrefix('prefFeedList', 'FEEDR-'+feed, 'FRCHK-'+feed,
|
|
|
|
// true, false);
|
|
|
|
|
|
|
|
selectTableRowById('FEEDR-'+feed, 'FRCHK-'+feed, true);
|
2005-12-10 20:35:09 +01:00
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editfeed&id=" +
|
|
|
|
param_escape(active_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
|
|
|
}
|
|
|
|
|
2005-11-23 08:07:04 +01:00
|
|
|
active_feed_cat = cat;
|
2005-11-18 10:00:18 +01:00
|
|
|
|
2005-11-23 08:07:04 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editCat&id=" +
|
|
|
|
param_escape(cat), true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
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-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2005-11-23 08:07:04 +01:00
|
|
|
|
2005-11-25 16:38:08 +01:00
|
|
|
function readSelectedFeeds(read) {
|
2005-08-22 07:23:49 +02:00
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
2005-08-24 10:02:58 +02:00
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
var sel_rows = getSelectedFeeds();
|
|
|
|
|
|
|
|
if (sel_rows.length > 0) {
|
|
|
|
|
2005-11-25 16:38:08 +01:00
|
|
|
if (!read) {
|
|
|
|
op = "unread";
|
|
|
|
} else {
|
|
|
|
op = "read";
|
|
|
|
}
|
2005-08-22 07:23:49 +02:00
|
|
|
|
2005-11-25 16:38:08 +01:00
|
|
|
notify("Marking selected feeds as " + op + "...");
|
2005-08-22 07:23:49 +02:00
|
|
|
|
2005-11-25 16:38:08 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=" + op + "&ids="+
|
2005-08-22 07:23:49 +02:00
|
|
|
param_escape(sel_rows.toString()), true);
|
2005-08-22 07:38:07 +02:00
|
|
|
xmlhttp.onreadystatechange=notify_callback;
|
2005-08-22 07:23:49 +02:00
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
2005-08-23 13:38:56 +02:00
|
|
|
notify("Please select some feeds first.");
|
2005-08-22 07:23:49 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
var ok = confirm("Remove selected labels?");
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
if (ok) {
|
|
|
|
notify("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 {
|
|
|
|
notify("Please select some labels first.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
var ok = confirm("Remove selected users?");
|
2005-11-18 10:00:18 +01:00
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
if (ok) {
|
|
|
|
notify("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 {
|
|
|
|
notify("Please select some labels first.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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) {
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
var ok = confirm("Remove selected filters?");
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
if (ok) {
|
|
|
|
notify("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 {
|
|
|
|
notify("Please select some filters first.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
function removeSelectedFeeds() {
|
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
2005-08-24 10:02:58 +02:00
|
|
|
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) {
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
var ok = confirm("Remove selected feeds?");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
if (ok) {
|
|
|
|
|
|
|
|
notify("Removing 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
|
|
|
|
2005-08-23 13:38:56 +02:00
|
|
|
notify("Please select some feeds first.");
|
2005-08-22 06:56:40 +02:00
|
|
|
|
2005-08-22 05:20:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2005-08-22 03:17:12 +02:00
|
|
|
|
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) {
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
var ok = confirm("Remove selected categories?");
|
2005-11-23 08:07:04 +01:00
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
if (ok) {
|
|
|
|
notify("Removing selected categories...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=removeCats&ids="+
|
|
|
|
param_escape(sel_rows.toString()), true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
}
|
2005-11-23 08:07:04 +01:00
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
notify("Please select some feeds first.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
function feedEditCancel() {
|
|
|
|
|
2005-08-25 17:15:27 +02:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
2005-08-24 10:02:58 +02:00
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-12-10 21:06:41 +01:00
|
|
|
closeInfoBox();
|
|
|
|
|
2005-08-26 08:09:12 +02:00
|
|
|
active_feed = false;
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
notify("Operation cancelled.");
|
|
|
|
|
2005-12-10 21:06:41 +01:00
|
|
|
/* xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
|
2005-08-24 10:02:58 +02:00
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
2005-12-10 21:06:41 +01:00
|
|
|
xmlhttp.send(null); */
|
2005-08-24 10:02:58 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-23 08:07:04 +01:00
|
|
|
function feedCatEditCancel() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
active_feed_cat = false;
|
|
|
|
|
|
|
|
notify("Operation cancelled.");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
function feedEditSave() {
|
|
|
|
|
2005-12-16 08:15:18 +01:00
|
|
|
try {
|
2005-10-13 05:15:09 +02:00
|
|
|
|
2005-12-16 08:15:18 +01:00
|
|
|
var feed = active_feed;
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var link = document.getElementById("iedit_link").value;
|
|
|
|
var title = document.getElementById("iedit_title").value;
|
|
|
|
var upd_intl = document.getElementById("iedit_updintl").value;
|
|
|
|
var purge_intl = document.getElementById("iedit_purgintl").value;
|
|
|
|
var fcat = document.getElementById("iedit_fcat");
|
2005-12-30 05:11:48 +01:00
|
|
|
|
|
|
|
var private = document.getElementById("iedit_private").checked;
|
2005-12-16 08:15:18 +01:00
|
|
|
|
2005-12-30 03:44:53 +01:00
|
|
|
var fcat_id = 0;
|
|
|
|
|
|
|
|
if (fcat) {
|
|
|
|
fcat_id = fcat[fcat.selectedIndex].id;
|
|
|
|
}
|
2005-12-28 20:17:26 +01:00
|
|
|
|
|
|
|
var pfeed = document.getElementById("iedit_parent_feed");
|
|
|
|
var parent_feed_id = pfeed[pfeed.selectedIndex].id;
|
2005-12-16 08:15:18 +01:00
|
|
|
|
|
|
|
if (link.length == 0) {
|
|
|
|
notify("Feed link cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (title.length == 0) {
|
|
|
|
notify("Feed title cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var auth_login = document.getElementById("iedit_login").value;
|
|
|
|
var auth_pass = document.getElementById("iedit_pass").value;
|
|
|
|
|
|
|
|
active_feed = false;
|
|
|
|
|
|
|
|
notify("Saving feed...");
|
2005-10-13 05:15:09 +02:00
|
|
|
|
2005-12-16 08:15:18 +01:00
|
|
|
var query = "op=pref-feeds&subop=editSave&id=" +
|
|
|
|
feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
|
|
|
|
"&ui=" + param_escape(upd_intl) + "&pi=" + param_escape(purge_intl) +
|
2005-12-30 05:11:48 +01:00
|
|
|
"&catid=" + param_escape(fcat_id) + "&login=" + param_escape(auth_login) +
|
|
|
|
"&pfeed=" + param_escape(parent_feed_id) + "&pass=" + param_escape(auth_pass) +
|
|
|
|
"&private=" + param_escape(private);
|
2005-08-24 10:02:58 +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');
|
|
|
|
xmlhttp.send(query);
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("feedEditSave", e);
|
2005-08-24 10:02:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-12-11 05:55:37 +01:00
|
|
|
function feedCatEditSave() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-12-11 09:06:18 +01:00
|
|
|
notify("Saving category...");
|
2005-12-11 05:55:37 +01:00
|
|
|
|
|
|
|
var cat_title = document.getElementById("iedit_title").value;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=saveCat&id=" +
|
|
|
|
param_escape(active_feed_cat) + "&title=" + param_escape(cat_title),
|
|
|
|
true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
active_feed_cat = false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-11-24 08:05:20 +01:00
|
|
|
function labelTest() {
|
|
|
|
|
|
|
|
var sqlexp = document.getElementById("iedit_expr").value;
|
|
|
|
var descr = document.getElementById("iedit_descr").value;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=test&expr=" +
|
|
|
|
param_escape(sqlexp) + "&descr=" + param_escape(descr), true);
|
|
|
|
|
|
|
|
xmlhttp.onreadystatechange=infobox_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-27 11:56:53 +01:00
|
|
|
function displayHelpInfobox(topic_id) {
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=help&tid=" +
|
|
|
|
param_escape(topic_id) + "&noheaders=1", true);
|
|
|
|
|
|
|
|
xmlhttp.onreadystatechange=infobox_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
function labelEditCancel() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
active_label = false;
|
|
|
|
|
|
|
|
notify("Operation cancelled.");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-labels", true);
|
|
|
|
xmlhttp.onreadystatechange=labellist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
function userEditCancel() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
active_user = false;
|
|
|
|
|
|
|
|
notify("Operation cancelled.");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-users", true);
|
|
|
|
xmlhttp.onreadystatechange=userlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
function filterEditCancel() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
active_filter = false;
|
|
|
|
|
|
|
|
notify("Operation cancelled.");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-filters", true);
|
|
|
|
xmlhttp.onreadystatechange=filterlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
function labelEditSave() {
|
|
|
|
|
|
|
|
var label = active_label;
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var sqlexp = document.getElementById("iedit_expr").value;
|
|
|
|
var descr = document.getElementById("iedit_descr").value;
|
|
|
|
|
|
|
|
// notify("Saving label " + sqlexp + ": " + descr);
|
|
|
|
|
|
|
|
if (sqlexp.length == 0) {
|
|
|
|
notify("SQL expression cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (descr.length == 0) {
|
|
|
|
notify("Caption cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-11 09:06:18 +01:00
|
|
|
notify("Saving label...");
|
2005-11-20 08:41:42 +01:00
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
active_label = false;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-labels&subop=editSave&id=" +
|
|
|
|
label + "&s=" + param_escape(sqlexp) + "&d=" + param_escape(descr),
|
|
|
|
true);
|
|
|
|
|
|
|
|
xmlhttp.onreadystatechange=labellist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
function userEditSave() {
|
|
|
|
|
|
|
|
var user = active_user;
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var login = document.getElementById("iedit_ulogin").value;
|
|
|
|
var level = document.getElementById("iedit_ulevel").value;
|
2005-12-20 07:51:06 +01:00
|
|
|
var email = document.getElementById("iedit_email").value;
|
2005-11-18 10:00:18 +01:00
|
|
|
|
|
|
|
if (login.length == 0) {
|
|
|
|
notify("Login cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (level.length == 0) {
|
|
|
|
notify("User level cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
active_user = false;
|
|
|
|
|
2005-12-11 09:06:18 +01:00
|
|
|
notify("Saving user...");
|
2005-11-20 08:41:42 +01:00
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-users&subop=editSave&id=" +
|
2005-12-20 07:51:06 +01:00
|
|
|
user + "&l=" + param_escape(login) + "&al=" + param_escape(level) +
|
|
|
|
"&e=" + param_escape(email), true);
|
2005-11-18 10:00:18 +01:00
|
|
|
|
2005-11-20 08:41:42 +01:00
|
|
|
xmlhttp.onreadystatechange=userlist_callback;
|
2005-11-18 10:00:18 +01:00
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
function filterEditSave() {
|
|
|
|
|
|
|
|
var filter = active_filter;
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var regexp = document.getElementById("iedit_regexp").value;
|
|
|
|
var descr = document.getElementById("iedit_descr").value;
|
2005-09-08 07:02:49 +02:00
|
|
|
var match = document.getElementById("iedit_match");
|
2005-11-29 19:43:39 +01:00
|
|
|
|
2005-09-08 07:02:49 +02:00
|
|
|
var v_match = match[match.selectedIndex].text;
|
2005-09-03 09:22:29 +02:00
|
|
|
|
2005-11-21 14:49:15 +01:00
|
|
|
var feed = document.getElementById("iedit_feed");
|
|
|
|
var feed_id = feed[feed.selectedIndex].id;
|
|
|
|
|
2005-11-29 19:43:39 +01:00
|
|
|
var action = document.getElementById("iedit_filter_action");
|
|
|
|
var action_id = action[action.selectedIndex].id;
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
// notify("Saving filter " + filter + ": " + regexp + ", " + descr + ", " + match);
|
|
|
|
|
|
|
|
if (regexp.length == 0) {
|
|
|
|
notify("Filter expression cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
active_filter = false;
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=editSave&id=" +
|
|
|
|
filter + "&r=" + param_escape(regexp) + "&d=" + param_escape(descr) +
|
2005-11-29 19:43:39 +01:00
|
|
|
"&m=" + param_escape(v_match) + "&fid=" + param_escape(feed_id) +
|
|
|
|
"&aid=" + param_escape(action_id), true);
|
2005-11-20 08:41:42 +01:00
|
|
|
|
2005-12-11 09:06:18 +01:00
|
|
|
notify("Saving filter...");
|
2005-11-20 08:41:42 +01:00
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
xmlhttp.onreadystatechange=filterlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
function editSelectedLabel() {
|
|
|
|
var rows = getSelectedLabels();
|
2005-09-03 09:22:29 +02:00
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
if (rows.length == 0) {
|
|
|
|
notify("No labels are selected.");
|
|
|
|
return;
|
2005-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one label.");
|
|
|
|
return;
|
|
|
|
}
|
2005-09-03 09:22:29 +02:00
|
|
|
|
2005-11-20 08:41:42 +01:00
|
|
|
notify("");
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
editLabel(rows[0]);
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-11-18 10:00:18 +01:00
|
|
|
function editSelectedUser() {
|
|
|
|
var rows = getSelectedUsers();
|
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
notify("No users are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one user.");
|
|
|
|
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) {
|
|
|
|
notify("No users are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one user.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
var ok = confirm("Reset password of selected user?");
|
2005-11-18 10:00:18 +01:00
|
|
|
|
2005-12-11 08:56:57 +01:00
|
|
|
if (ok) {
|
|
|
|
notify("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) {
|
|
|
|
notify("No users are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one user.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var id = rows[0];
|
|
|
|
|
2005-11-20 08:41:42 +01:00
|
|
|
notify("");
|
|
|
|
|
2005-11-18 13:38:21 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=user-details&id=" + id, true);
|
2005-11-19 20:06:42 +01:00
|
|
|
xmlhttp.onreadystatechange=infobox_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function selectedFeedDetails() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var rows = getSelectedFeeds();
|
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
notify("No feeds are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-12-11 08:42:49 +01:00
|
|
|
// if (rows.length > 1) {
|
|
|
|
// notify("Please select one feed.");
|
|
|
|
// return;
|
|
|
|
// }
|
2005-11-19 20:06:42 +01:00
|
|
|
|
2005-12-11 08:42:49 +01:00
|
|
|
// var id = rows[0];
|
2005-11-19 20:06:42 +01:00
|
|
|
|
2005-11-20 08:41:42 +01:00
|
|
|
notify("");
|
|
|
|
|
2005-12-11 08:42:49 +01:00
|
|
|
xmlhttp.open("GET", "backend.php?op=feed-details&id=" +
|
|
|
|
param_escape(rows.toString()), true);
|
2005-11-19 20:06:42 +01:00
|
|
|
xmlhttp.onreadystatechange=infobox_callback;
|
2005-11-18 13:38:21 +01:00
|
|
|
xmlhttp.send(null);
|
2005-11-18 13:02:38 +01:00
|
|
|
|
|
|
|
}
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
function editSelectedFilter() {
|
|
|
|
var rows = getSelectedFilters();
|
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
notify("No filters are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one filter.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-20 08:41:42 +01:00
|
|
|
notify("");
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
editFilter(rows[0]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
function editSelectedFeed() {
|
|
|
|
var rows = getSelectedFeeds();
|
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
notify("No feeds are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one feed.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-11-20 08:41:42 +01:00
|
|
|
notify("");
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
editFeed(rows[0]);
|
2005-11-23 08:07:04 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function editSelectedFeedCat() {
|
|
|
|
var rows = getSelectedFeedCats();
|
|
|
|
|
|
|
|
if (rows.length == 0) {
|
|
|
|
notify("No categories are selected.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rows.length > 1) {
|
|
|
|
notify("Please select one category.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
notify("");
|
|
|
|
|
|
|
|
editFeedCat(rows[0]);
|
2005-08-24 10:02:58 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-08-25 08:57:51 +02:00
|
|
|
function localPiggieFunction(enable) {
|
|
|
|
if (enable) {
|
2005-08-24 10:02:58 +02:00
|
|
|
piggie.style.display = "block";
|
|
|
|
seq = "";
|
|
|
|
notify("I loveded it!!!");
|
|
|
|
} else {
|
|
|
|
piggie.style.display = "none";
|
|
|
|
notify("");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-02 13:49:47 +02:00
|
|
|
function validateOpmlImport() {
|
|
|
|
|
|
|
|
var opml_file = document.getElementById("opml_file");
|
|
|
|
|
|
|
|
if (opml_file.value.length == 0) {
|
|
|
|
notify("Please select OPML file to upload.");
|
|
|
|
return false;
|
|
|
|
} else {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
function updateFilterList() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
// document.getElementById("prefContent").innerHTML = "Loading filters, please wait...";
|
|
|
|
|
|
|
|
p_notify("Loading, please wait...");
|
2005-09-03 09:22:29 +02:00
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-filters", true);
|
|
|
|
xmlhttp.onreadystatechange=filterlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
function updateLabelList() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
p_notify("Loading, please wait...");
|
|
|
|
|
|
|
|
// document.getElementById("prefContent").innerHTML = "Loading labels, please wait...";
|
2005-09-08 09:43:44 +02:00
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-labels", true);
|
|
|
|
xmlhttp.onreadystatechange=labellist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
}
|
|
|
|
|
2005-11-16 18:53:50 +01:00
|
|
|
function updatePrefsList() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
p_notify("Loading, please wait...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-prefs", true);
|
|
|
|
xmlhttp.onreadystatechange=prefslist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-12-30 06:29:24 +01:00
|
|
|
function selectTab(id, noupdate) {
|
|
|
|
|
|
|
|
// alert(id);
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-11-19 20:06:42 +01:00
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2005-12-30 06:29:24 +01:00
|
|
|
if (!noupdate) {
|
|
|
|
|
|
|
|
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-09-03 09:22:29 +02:00
|
|
|
}
|
2005-10-28 19:58:20 +02:00
|
|
|
|
|
|
|
var tab = document.getElementById(active_tab + "Tab");
|
|
|
|
|
|
|
|
if (tab) {
|
|
|
|
if (tab.className.match("Selected")) {
|
|
|
|
tab.className = "prefsTab";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
tab = document.getElementById(id + "Tab");
|
|
|
|
|
|
|
|
if (tab) {
|
|
|
|
if (!tab.className.match("Selected")) {
|
|
|
|
tab.className = tab.className + "Selected";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
active_tab = id;
|
|
|
|
|
2005-12-11 07:52:46 +01:00
|
|
|
setCookie('ttrss_pref_acttab', active_tab);
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
|
|
|
|
// 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
|
|
|
|
|
|
|
active_tab = getCookie("ttrss_pref_acttab");
|
|
|
|
if (!active_tab) active_tab = "genConfig";
|
|
|
|
selectTab(active_tab);
|
2005-11-26 11:06:56 +01:00
|
|
|
|
|
|
|
document.onkeydown = hotkey_handler;
|
|
|
|
notify("");
|
|
|
|
} 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
|
|
|
|
2005-11-19 20:06:42 +01:00
|
|
|
function closeInfoBox() {
|
2005-11-20 11:02:36 +01:00
|
|
|
var box = document.getElementById('infoBox');
|
|
|
|
var shadow = document.getElementById('infoBoxShadow');
|
|
|
|
|
|
|
|
if (shadow) {
|
|
|
|
shadow.style.display = "none";
|
|
|
|
} else if (box) {
|
|
|
|
box.style.display = "none";
|
|
|
|
}
|
2005-11-18 13:38:21 +01:00
|
|
|
}
|
2005-11-29 10:11:43 +01:00
|
|
|
|
|
|
|
function categorizeSelectedFeeds() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var sel_rows = getSelectedFeeds();
|
|
|
|
|
|
|
|
var cat_sel = document.getElementById("sfeed_set_fcat");
|
|
|
|
var cat_id = cat_sel[cat_sel.selectedIndex].id;
|
|
|
|
|
|
|
|
if (sel_rows.length > 0) {
|
|
|
|
|
|
|
|
notify("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 {
|
|
|
|
|
|
|
|
notify("Please select some feeds first.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2005-12-11 08:56:57 +01:00
|
|
|
|
|
|
|
function validatePrefsReset() {
|
|
|
|
return confirm("Reset to defaults?");
|
|
|
|
}
|
2005-12-29 17:36:41 +01:00
|
|
|
|
|
|
|
function browseFeeds() {
|
|
|
|
|
|
|
|
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 list = document.getElementById("browseFeedList");
|
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
|
|
|
alert("No feeds are selected.");
|
|
|
|
}
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
exception_error("feedBrowserSubscribe", e);
|
|
|
|
}
|
|
|
|
}
|
2005-12-30 06:17:23 +01:00
|
|
|
|
|
|
|
function updateBigFeedBrowser() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
p_notify("Loading, please wait...");
|
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feed-browser", true);
|
|
|
|
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
|
|
|
|
|
|
|
var d = document.getElementById("BRDET-" + id);
|
|
|
|
|
|
|
|
if (d.style.display == "block") {
|
|
|
|
d.style.display = "none";
|
|
|
|
|
|
|
|
} else {
|
2005-12-30 06:17:23 +01:00
|
|
|
|
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) {
|
|
|
|
exception_error("browserExpand", e);
|
|
|
|
}
|
|
|
|
}
|