summaryrefslogtreecommitdiff
path: root/contrib/angstrom/rss.php
blob: 8970ba17977e71447981816e291b65abba2425d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<? print('<?xml version="1.0" encoding="utf-8"?>');?>
<rss version="2.0" xml:base="http://www.angstrom-distribution.org/unstable/autobuild/" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
 <title>Ångstrom autobuilder updates </title>
 <link>http://www.angstrom-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.angstrom-distribution.org/unstable/autobuild/$file/$file2</link>\n");

$rsstime = strftime("%a, %d %b %Y %T +0100", $fmtime);

print("<pubDate>$rsstime</pubDate>\n");
print("<dc:creator>Angstrom autobuilder</dc:creator>");
print("</item>\n");

                                }
			}
			closedir($second_handle);
		}    

	}
	closedir($handle);
}
?>
</channel>
</rss>