summaryrefslogtreecommitdiff
path: root/backend.php
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2005-08-28 06:48:32 +0100
committerAndrew Dolgov <[email protected]>2005-08-28 06:48:32 +0100
commitcaa4e57f278a59df07f7159c07e371ae53fe0217 (patch)
treef1f6c7eda48b266a73238fd43d54dab6a3d56b35 /backend.php
parent7fdd55fb41996a6c0d95a840399c6c8a634c2395 (diff)
code cleanups, start work on sepUpdateFeed mechanism
Diffstat (limited to 'backend.php')
-rw-r--r--backend.php32
1 files changed, 13 insertions, 19 deletions
diff --git a/backend.php b/backend.php
index c38793b5e..bf93aa142 100644
--- a/backend.php
+++ b/backend.php
@@ -91,6 +91,9 @@
print "</table>";
+ print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
+
+/*
print "<p align=\"center\">All feeds:
<a class=\"button\"
href=\"javascript:scheduleFeedUpdate(true)\">Update</a>";
@@ -99,7 +102,7 @@
href=\"javascript:catchupAllFeeds()\">Mark as read</a></p>";
print "<div class=\"invisible\" id=\"FEEDTU\">$total_unread</div>";
-
+*/
}
@@ -109,29 +112,20 @@
$subop = $_GET["subop"];
- if ($subop == "getRelativeId") {
- $mode = $_GET["mode"];
- $id = $_GET["id"];
+ if ($subop == "updateFeed") {
$feed_id = $_GET["feed"];
- if ($id != 'false' && $feed_id != 'false') {
+ $result = pg_query($link,
+ "SELECT feed_url FROM ttrss_feeds WHERE id = '$feed_id'");
- if ($mode == 'next') {
- $check_qpart = "updated >= ";
- } else {
- $idcheck_qpart = "id < '$id'";
- }
-
- $result = pg_query("SELECT id FROM ttrss_entries WHERE
- $check_qpart AND
- feed_id = '$feed_id'
- ORDER BY updated DESC LIMIT 1");
-
- $result_id = pg_fetch_result($result, 0, "id");
+ if (pg_num_rows($result) > 0) {
+ $feed_url = pg_fetch_result($result, 0, "feed_url");
+// update_rss_feed($link, $feed_url, $feed_id);
+ }
- print "M $mode : P $id -> P $result_id : F $feed_id";
+ print "DONE-$feed_id";
- }
+ return;
}
if ($subop == "forceUpdateAllFeeds") {