contrib: angstrom/rss.php: quick & dirty rss generator for autobuilder uploads
authorKoen Kooi <koen@openembedded.org>
Thu, 6 Dec 2007 14:48:06 +0000 (14:48 +0000)
committerKoen Kooi <koen@openembedded.org>
Thu, 6 Dec 2007 14:48:06 +0000 (14:48 +0000)
* point your newsreader to http://www.angstrom-distribution.org/unstable/autobuild/rss.php to view it in actions

contrib/angstrom/rss.php [new file with mode: 0644]

diff --git a/contrib/angstrom/rss.php b/contrib/angstrom/rss.php
new file mode 100644 (file)
index 0000000..85b0a51
--- /dev/null
@@ -0,0 +1,43 @@
+<? print('<?xml version="1.0" encoding="utf-8"?>');?>
+<rss version="2.0" xml:base="http://www.anstrom-distribution.org/unstable/autobuild/" xmlns:dc="http://purl.org/dc/elements/1.1/">
+<channel>
+ <title>Ã…ngstrom autobuilder updates </title>
+ <link>http://www.anstrom-distribution.org/unstable/autobuild</link>
+ <description></description>
+ <language>en</language>
+<?php
+
+$base_path = "/home/angstrom/website/unstable/autobuild";
+
+if ($handle = opendir("$base_path")) {
+
+       while (false !== ($file = readdir($handle))) {
+               if(is_dir($file) && $file != "." && $file != "..") {
+                       $second_handle = opendir("$base_path/$file/");
+                       while (false !== ($file2 = readdir($second_handle))) {
+                               if(is_file("/$base_path/$file/$file2")) { 
+                                       $fmtime = filemtime("$file/$file2");
+
+print("<item>\n");
+print("<title>$file/$file2 uploaded</title>\n");
+print(" <link>http://www.anstrom-distribution.org/unstable/autobuild/$file/$file2</link>\n");
+
+$rsstime = strftime("%a, %d %b %Y %T +0000", $fmtime);
+
+print("<pubDate>$rsstime</pubDate>\n");
+print("<dc:creator>Angstrom autobuilder</dc:creator>");
+print("</item>\n");
+
+                                }
+                       }
+                       closedir($second_handle);
+               }    
+
+       }
+       closedir($handle);
+}
+?>
+</channel>
+</rss>
+
+