2005-08-22 03:17:12 +02:00
|
|
|
/*
|
|
|
|
This program is Copyright (c) 2003-2005 Andrew Dolgov <cthulhoo@gmail.com>
|
|
|
|
Licensed under GPL v.2 or (at your preference) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
var xmlhttp = false;
|
|
|
|
|
2005-08-26 08:09:12 +02:00
|
|
|
var active_feed = 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-08-26 08:09:12 +02:00
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
var active_tab = false;
|
|
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
|
|
|
function feedlist_callback() {
|
2005-10-28 19:58:20 +02:00
|
|
|
var container = document.getElementById('prefContent');
|
2005-08-22 03:17:12 +02:00
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
container.innerHTML=xmlhttp.responseText;
|
2005-08-26 08:09:12 +02: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-10-28 19:58:20 +02:00
|
|
|
p_notify("");
|
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;
|
|
|
|
|
|
|
|
if (active_filter) {
|
|
|
|
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-08-22 07:38:07 +02:00
|
|
|
function notify_callback() {
|
|
|
|
var container = document.getElementById('notify');
|
|
|
|
if (xmlhttp.readyState == 4) {
|
|
|
|
container.innerHTML=xmlhttp.responseText;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-22 13:43:07 +02:00
|
|
|
|
2005-08-22 07:38:07 +02:00
|
|
|
function updateFeedList() {
|
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
|
|
|
|
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds", true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleSelectRow(sender) {
|
|
|
|
var parent_row = sender.parentNode.parentNode;
|
|
|
|
|
|
|
|
if (sender.checked) {
|
|
|
|
if (!parent_row.className.match("Selected")) {
|
|
|
|
parent_row.className = parent_row.className + "Selected";
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (parent_row.className.match("Selected")) {
|
|
|
|
parent_row.className = parent_row.className.replace("Selected", "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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");
|
|
|
|
|
|
|
|
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-09-03 09:34:31 +02:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-filters&subop=add®exp=" +
|
2005-09-08 07:02:49 +02:00
|
|
|
param_escape(regexp.value) + "&match=" + v_match, 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-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-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-08-22 06:56:40 +02:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=edit&id=" +
|
|
|
|
param_escape(feed), true);
|
|
|
|
xmlhttp.onreadystatechange=feedlist_callback;
|
|
|
|
xmlhttp.send(null);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2005-09-08 09:43:44 +02:00
|
|
|
function getSelectedLabels() {
|
|
|
|
|
|
|
|
var content = document.getElementById("prefLabelList");
|
|
|
|
|
|
|
|
var sel_rows = new Array();
|
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
|
|
|
if (content.rows[i].className.match("Selected")) {
|
|
|
|
var row_id = content.rows[i].id.replace("LILRR-", "");
|
|
|
|
sel_rows.push(row_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-09-03 09:22:29 +02:00
|
|
|
function getSelectedFilters() {
|
|
|
|
|
|
|
|
var content = document.getElementById("prefFilterList");
|
|
|
|
|
|
|
|
var sel_rows = new Array();
|
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
|
|
|
if (content.rows[i].className.match("Selected")) {
|
|
|
|
var row_id = content.rows[i].id.replace("FILRR-", "");
|
|
|
|
sel_rows.push(row_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return sel_rows;
|
|
|
|
}
|
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
function getSelectedFeeds() {
|
2005-08-22 06:56:40 +02:00
|
|
|
|
|
|
|
var content = document.getElementById("prefFeedList");
|
|
|
|
|
|
|
|
var sel_rows = new Array();
|
|
|
|
|
|
|
|
for (i = 0; i < content.rows.length; i++) {
|
|
|
|
if (content.rows[i].className.match("Selected")) {
|
|
|
|
var row_id = content.rows[i].id.replace("FEEDR-", "");
|
|
|
|
sel_rows.push(row_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-08-22 07:23:49 +02:00
|
|
|
return sel_rows;
|
|
|
|
}
|
|
|
|
|
|
|
|
function readSelectedFeeds() {
|
|
|
|
|
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) {
|
|
|
|
|
|
|
|
notify("Marking selected feeds as read...");
|
|
|
|
|
2005-08-22 07:38:07 +02:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=unread&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
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function unreadSelectedFeeds() {
|
|
|
|
|
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) {
|
|
|
|
|
|
|
|
notify("Marking selected feeds as unread...");
|
|
|
|
|
2005-08-22 07:38:07 +02:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-rpc&subop=unread&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) {
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
} else {
|
|
|
|
notify("Please select some labels first.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function removeSelectedFilters() {
|
|
|
|
|
|
|
|
if (!xmlhttp_ready(xmlhttp)) {
|
|
|
|
printLockingError();
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var sel_rows = getSelectedFilters();
|
|
|
|
|
|
|
|
if (sel_rows.length > 0) {
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
} 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) {
|
|
|
|
|
|
|
|
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-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-08-26 08:09:12 +02:00
|
|
|
active_feed = false;
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
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() {
|
|
|
|
|
|
|
|
var feed = active_feed;
|
2005-08-24 10:02:58 +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-26 08:56:00 +02:00
|
|
|
var link = document.getElementById("iedit_link").value;
|
|
|
|
var title = document.getElementById("iedit_title").value;
|
2005-10-13 05:15:09 +02:00
|
|
|
var upd_intl = document.getElementById("iedit_updintl").value;
|
2005-08-24 10:02:58 +02:00
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
// notify("Saving feed.");
|
2005-08-24 10:02:58 +02:00
|
|
|
|
2005-10-13 05:15:09 +02:00
|
|
|
if (upd_intl < 0) {
|
|
|
|
notify("Update interval must be >= 0 (0 = default)");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
if (link.length == 0) {
|
|
|
|
notify("Feed link cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (title.length == 0) {
|
|
|
|
notify("Feed title cannot be blank.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-08-26 08:56:00 +02:00
|
|
|
active_feed = false;
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
xmlhttp.open("GET", "backend.php?op=pref-feeds&subop=editSave&id=" +
|
2005-10-13 05:15:09 +02:00
|
|
|
feed + "&l=" + param_escape(link) + "&t=" + param_escape(title) +
|
|
|
|
"&ui=" + param_escape(upd_intl), true);
|
2005-08-24 10:02:58 +02:00
|
|
|
xmlhttp.onreadystatechange=feedlist_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-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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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-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");
|
|
|
|
|
|
|
|
var v_match = match[match.selectedIndex].text;
|
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-09-08 07:02:49 +02:00
|
|
|
"&m=" + param_escape(v_match), true);
|
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-09-08 09:43:44 +02:00
|
|
|
editLabel(rows[0]);
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
editFeed(rows[0]);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
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-10-28 19:58:20 +02:00
|
|
|
function selectTab(id) {
|
2005-09-08 09:43:44 +02:00
|
|
|
|
2005-10-28 19:58:20 +02:00
|
|
|
if (id == "feedConfig") {
|
2005-09-03 09:22:29 +02:00
|
|
|
updateFeedList();
|
2005-10-28 19:58:20 +02:00
|
|
|
} else if (id == "filterConfig") {
|
2005-09-03 09:22:29 +02:00
|
|
|
updateFilterList();
|
2005-10-28 19:58:20 +02:00
|
|
|
} else if (id == "labelConfig") {
|
2005-09-08 09:43:44 +02:00
|
|
|
updateLabelList();
|
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-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
|
|
|
|
|
|
|
// IE kludge
|
|
|
|
|
2005-08-25 17:27:27 +02:00
|
|
|
if (!xmlhttp) {
|
2005-08-25 17:26:33 +02:00
|
|
|
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-10-28 19:58:20 +02:00
|
|
|
selectTab("feedConfig");
|
|
|
|
|
2005-08-24 10:02:58 +02:00
|
|
|
document.onkeydown = hotkey_handler;
|
2005-08-22 05:26:07 +02:00
|
|
|
notify("");
|
|
|
|
|
2005-08-22 03:17:12 +02:00
|
|
|
}
|