|
|
@ -490,7 +490,7 @@
|
|
|
|
print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
|
|
|
|
print "<p><table width=\"100%\" class=\"prefFeedList\" id=\"prefFeedList\">";
|
|
|
|
print "<tr class=\"title\">
|
|
|
|
print "<tr class=\"title\">
|
|
|
|
<td> </td><td>Select</td><td width=\"40%\">Title</td>
|
|
|
|
<td> </td><td>Select</td><td width=\"40%\">Title</td>
|
|
|
|
<td width=\"40%\">Link</td><td>Last Updated</td></tr>";
|
|
|
|
<td width=\"40%\">Link</td><td>Last updated</td></tr>";
|
|
|
|
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
|
|
|
@ -546,6 +546,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!$line["last_updated"]) $line["last_updated"] = "Never";
|
|
|
|
|
|
|
|
|
|
|
|
print "<td>" . $line["last_updated"] . "</td>";
|
|
|
|
print "<td>" . $line["last_updated"] . "</td>";
|
|
|
|
|
|
|
|
|
|
|
|
print "</tr>";
|
|
|
|
print "</tr>";
|
|
|
@ -553,6 +555,10 @@
|
|
|
|
++$lnum;
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($lnum == 0) {
|
|
|
|
|
|
|
|
print "<tr><td colspan=\"5\" align=\"center\">No feeds defined.</td></tr>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
print "<p>";
|
|
|
@ -589,13 +595,18 @@
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
$subop = $_GET["subop"];
|
|
|
|
|
|
|
|
|
|
|
|
if ($subop == "editSave") {
|
|
|
|
if ($subop == "editSave") {
|
|
|
|
/* $feed_title = pg_escape_string($_GET["t"]);
|
|
|
|
|
|
|
|
$feed_link = pg_escape_string($_GET["l"]);
|
|
|
|
|
|
|
|
$feed_id = $_GET["id"];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result = pg_query("UPDATE ttrss_feeds SET
|
|
|
|
$regexp = pg_escape_string($_GET["r"]);
|
|
|
|
title = '$feed_title', feed_url = '$feed_link' WHERE id = '$feed_id'"); */
|
|
|
|
$descr = pg_escape_string($_GET["d"]);
|
|
|
|
|
|
|
|
$match = pg_escape_string($_GET["m"]);
|
|
|
|
|
|
|
|
$filter_id = pg_escape_string($_GET["id"]);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
$result = pg_query("UPDATE ttrss_filters SET
|
|
|
|
|
|
|
|
regexp = '$regexp',
|
|
|
|
|
|
|
|
description = '$descr',
|
|
|
|
|
|
|
|
filter_type = (SELECT id FROM ttrss_filter_types WHERE
|
|
|
|
|
|
|
|
description = '$match')
|
|
|
|
|
|
|
|
WHERE id = '$filter_id'");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if ($subop == "remove") {
|
|
|
|
if ($subop == "remove") {
|
|
|
@ -655,8 +666,8 @@
|
|
|
|
print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
|
|
|
|
print "<p><table width=\"100%\" class=\"prefFilterList\" id=\"prefFilterList\">";
|
|
|
|
|
|
|
|
|
|
|
|
print "<tr class=\"title\">
|
|
|
|
print "<tr class=\"title\">
|
|
|
|
<td>Select</td><td width=\"40%\">Filter Expression</td>
|
|
|
|
<td width=\"5%\">Select</td><td width=\"40%\">Filter expression</td>
|
|
|
|
<td width=\"40%\">Description</td><td>Match</td></tr>";
|
|
|
|
<td width=\"40%\">Description</td><td width=\"10%\">Match</td></tr>";
|
|
|
|
|
|
|
|
|
|
|
|
$lnum = 0;
|
|
|
|
$lnum = 0;
|
|
|
|
|
|
|
|
|
|
|
@ -675,6 +686,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
if (!$edit_filter_id || $subop != "edit") {
|
|
|
|
if (!$edit_filter_id || $subop != "edit") {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!$line["description"]) $line["description"] = "[No description]";
|
|
|
|
|
|
|
|
|
|
|
|
print "<td><input onclick='toggleSelectRow(this);'
|
|
|
|
print "<td><input onclick='toggleSelectRow(this);'
|
|
|
|
type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
|
|
|
|
type=\"checkbox\" id=\"FICHK-".$line["id"]."\"></td>";
|
|
|
|
|
|
|
|
|
|
|
@ -688,6 +701,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
} else if ($filter_id != $edit_filter_id) {
|
|
|
|
} else if ($filter_id != $edit_filter_id) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!$line["description"]) $line["description"] = "[No description]";
|
|
|
|
|
|
|
|
|
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"
|
|
|
|
print "<td><input disabled=\"true\" type=\"checkbox\"
|
|
|
|
id=\"FICHK-".$line["id"]."\"></td>";
|
|
|
|
id=\"FICHK-".$line["id"]."\"></td>";
|
|
|
|
|
|
|
|
|
|
|
@ -717,6 +732,10 @@
|
|
|
|
++$lnum;
|
|
|
|
++$lnum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if ($lnum == 0) {
|
|
|
|
|
|
|
|
print "<tr><td colspan=\"4\" align=\"center\">No filters defined.</td></tr>";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
print "</table>";
|
|
|
|
print "</table>";
|
|
|
|
|
|
|
|
|
|
|
|
print "<p>";
|
|
|
|
print "<p>";
|
|
|
|