blob: cf5a9e0218532abb685b8f2bc2e590ada1ea6fa3 (
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
44
45
46
47
48
|
<?php echo ('<?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>Ångström 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 != ".."))
{
continue;
}
$second_handle = opendir("$base_path/$file/");
while (false !== ($file2 = readdir($second_handle)))
{
if(is_file("/$base_path/$file/$file2"))
{
$fmtime = filemtime("$file/$file2");
echo "<item>\n"
echo "<title>$file/$file2 uploaded</title>\n";
echo " <link>http://www.angstrom-distribution.org/unstable/autobuild/$file/$file2</link>\n";
$rsstime = strftime("%a, %d %b %Y %T +0100", $fmtime);
echo "<pubDate>$rsstime</pubDate>\n";
echo "<dc:creator>Angstrom autobuilder</dc:creator>";
echo "</item>\n";
}
}
closedir($second_handle);
}
closedir($handle);
}
?>
</channel>
</rss>
|