summaryrefslogtreecommitdiffstats
path: root/web/html/index.php
diff options
context:
space:
mode:
authorsimo <simo>2005-06-10 23:07:24 +0000
committersimo <simo>2005-06-10 23:07:24 +0000
commita81f22da2dc0435b7417e635abcf5cb2ebe6e18f (patch)
tree21fd69527a560e5d21c46d9627b60d6466991dc0 /web/html/index.php
parent7044610e32b37c079e03cab8bf9cfa8a8f381ec9 (diff)
downloadaurweb-a81f22da2dc0435b7417e635abcf5cb2ebe6e18f.tar.xz
RSS support implemented
Latest packages also on homepage DEPLOYMENT NOTES: - web/html/xml must be world writable
Diffstat (limited to 'web/html/index.php')
-rw-r--r--web/html/index.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/web/html/index.php b/web/html/index.php
index 30f7344..b2f4590 100644
--- a/web/html/index.php
+++ b/web/html/index.php
@@ -80,6 +80,19 @@ print " <td align='left' valign='top'>";
print "<p>".__("Welcome to the AUR! If you're a newcomer, you may want to read the %hGuidelines%h.", array('<a href="guidelines.html">', '</a>'))."</p>";
print "<p>".__("If you have feedback about the AUR, please leave it in %hFlyspray%h.", array('<a href="http://bugs.archlinux.org/index.php?tasks=all&amp;project=2">', '</a>'))."</p>";
print "<p>".__("Though we can't vouch for their contents, we provide a %hlist of user repositories%h for your convenience.", array('<a href="http://wiki2.archlinux.org/index.php/Unofficial%20Repositories">', '</a>'))."</p>";
+
+#Hey, how about listing the newest pacakges? :D
+$q = "SELECT * FROM Packages ";
+$q.= "WHERE DummyPkg != 1 ";
+$q.= "ORDER BY SubmittedTS DESC ";
+$q.= "LIMIT 0 , 10";
+$result = db_query($q,$dbh);
+print "<span class='f3'>".__("Latest Packages:")."</span><span class='f5'><a href='http://".$_SERVER['HTTP_HOST']."/rss2.php'>(rss)</a></span><br />\n";
+while ($row = mysql_fetch_assoc($result)) {
+ print " <span class='f4'><a href='/packages.php?do_Details=1&ID=".intval($row["ID"])."'>";
+ print $row["Name"]."</a></span><br />\n";
+}
+
#print __("This is where the intro text will go.");
#print __("For now, it's just a place holder.");
#print __("It's more important to get the login functionality finished.");