ttrss/backend.php

83 lines
1.4 KiB
PHP
Raw Normal View History

2005-08-21 12:13:10 +02:00
<?
header("Content-Type: application/xml");
2005-08-21 12:56:27 +02:00
include "config.php";
2005-08-21 12:13:10 +02:00
2005-08-21 12:56:27 +02:00
$link = pg_connect(DB_CONN);
$op = $_GET["op"];
2005-08-21 12:13:10 +02:00
if ($op == "feeds") {
2005-08-21 12:56:27 +02:00
$result = pg_query("SELECT * FROM ttrss_feeds ORDER BY title");
2005-08-21 12:13:10 +02:00
print "<ul>";
$lnum = 0;
2005-08-21 12:56:27 +02:00
while ($line = pg_fetch_assoc($result)) {
$feed = $line["title"];
2005-08-21 13:11:53 +02:00
$feed_id = $line["id"];
2005-08-21 12:13:10 +02:00
$class = ($lnum % 2) ? "even" : "odd";
// if ($lnum == 2 || $lnum == 0) $feed = "<b>$feed</b>";
2005-08-21 13:11:53 +02:00
$feed = "<a href=\"javascript:viewfeed($feed_id);\">$feed</a>";
2005-08-21 12:13:10 +02:00
print "<li class=\"$class\">$feed</li>";
++$lnum;
}
print "</ul>";
}
if ($op == "view") {
$post = $_GET["post"];
$feed = $_GET["feed"];
print "<h1>$post</h1>";
print "<h2>$feed</h2>";
print "<p>Blah blah blah blah blah</p>";
}
if ($op == "viewfeed") {
$feed = $_GET["feed"];
$headlines = array("Linus Torvalds flies to the Moon",
"SCO bankrupt at last",
"OMG WTF ANOTHER HEADLINE",
"Another clever headline from $feed",
"I'm really not feeling creative today",
"No, seriously");
$headlines = array_merge($headlines, $headlines);
print "<ul>";
$lnum = 0;
foreach ($headlines as $hl) {
$class = ($lnum % 2) ? "even" : "odd";
// if ($lnum == 2 || $lnum == 0) $feed = "<b>$feed</b>";
$hl = "<a href=\"javascript:view('$feed','$hl')\">$hl</a>";
print "<li class=\"$class\">$hl</li>";
++$lnum;
}
print "</ul>";
}
?>