response size optimizations for viewfeed/view
This commit is contained in:
parent
1aab5aec90
commit
8d7008c7b0
33
backend.php
33
backend.php
|
@ -265,6 +265,11 @@
|
||||||
$addheader = $_GET["addheader"];
|
$addheader = $_GET["addheader"];
|
||||||
$limit = $_GET["limit"];
|
$limit = $_GET["limit"];
|
||||||
|
|
||||||
|
if (!$feed) {
|
||||||
|
print "Error: no feed to display.";
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (!$skip) $skip = 0;
|
if (!$skip) $skip = 0;
|
||||||
|
|
||||||
if ($subop == "undefined") $subop = "";
|
if ($subop == "undefined") $subop = "";
|
||||||
|
@ -279,17 +284,10 @@
|
||||||
</head><body>";
|
</head><body>";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (DB_TYPE == "pgsql") {
|
$result = db_query($link,
|
||||||
$result = db_query($link,
|
"SELECT *,SUBSTRING(last_updated,1,16) as last_updated_s
|
||||||
"SELECT *,SUBSTRING(last_updated,1,16) as last_updated_s,
|
FROM ttrss_feeds WHERE id = '$feed'");
|
||||||
EXTRACT(EPOCH FROM NOW()) - EXTRACT(EPOCH FROM last_updated) as update_timeout
|
|
||||||
FROM ttrss_feeds WHERE id = '$feed'");
|
|
||||||
} else {
|
|
||||||
$result = db_query($link,
|
|
||||||
"SELECT *,SUBSTRING(last_updated,1,16) as last_updated_s
|
|
||||||
FROM ttrss_feeds WHERE id = '$feed'");
|
|
||||||
}
|
|
||||||
|
|
||||||
if ($result) {
|
if ($result) {
|
||||||
|
|
||||||
$line = db_fetch_assoc($result);
|
$line = db_fetch_assoc($result);
|
||||||
|
@ -341,7 +339,7 @@
|
||||||
|
|
||||||
$unread_entries = db_fetch_result($result, 0, "unread_entries"); */
|
$unread_entries = db_fetch_result($result, 0, "unread_entries"); */
|
||||||
|
|
||||||
if ($limit != "All") {
|
if ($limit && $limit != "All") {
|
||||||
$limit_query_part = "LIMIT " . $limit;
|
$limit_query_part = "LIMIT " . $limit;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -403,15 +401,12 @@
|
||||||
print "<tr class='$class' id='RROW-$id'";
|
print "<tr class='$class' id='RROW-$id'";
|
||||||
// onclick=\"javascript:view($id,$feed_id)\">
|
// onclick=\"javascript:view($id,$feed_id)\">
|
||||||
|
|
||||||
print "<td valign='center' align='center'
|
print "<td valign='center' align='center'>$update_pic</td>";
|
||||||
class='headlineUpdateMark'>$update_pic</td>";
|
print "<td valign='center' align='center'>$marked_pic</td>";
|
||||||
|
|
||||||
print "<td valign='center' align='center'
|
print "<td width='25%'>
|
||||||
class='headlineUpdateMark'>$marked_pic</td>";
|
|
||||||
|
|
||||||
print "<td class='headlineUpdated' width='25%'>
|
|
||||||
<a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
|
<a href=\"javascript:view($id,$feed_id);\">".$line["updated"]."</a></td>";
|
||||||
print "<td width='70%' class='headlineTitle'>$content_link</td>";
|
print "<td width='70%'>$content_link</td>";
|
||||||
|
|
||||||
print "</tr>";
|
print "</tr>";
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue