aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKoen Kooi <koen@openembedded.org>2007-12-06 15:24:14 +0000
committerKoen Kooi <koen@openembedded.org>2007-12-06 15:24:14 +0000
commita8a23bb8cd3ede2b44097d7145c40702f7d70a63 (patch)
treefb0c2ad45d50836253cb218f364314e957e8c050 /contrib
parentc712e2c908a03640dae2e4e5fb84ae3e49394b58 (diff)
downloadopenembedded-a8a23bb8cd3ede2b44097d7145c40702f7d70a63.tar.gz
angstrom/rss.php: fix links
Diffstat (limited to 'contrib')
-rw-r--r--contrib/angstrom/rss.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/contrib/angstrom/rss.php b/contrib/angstrom/rss.php
index 85b0a51fb4..8970ba1797 100644
--- a/contrib/angstrom/rss.php
+++ b/contrib/angstrom/rss.php
@@ -1,8 +1,8 @@
<? 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/">
+<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.anstrom-distribution.org/unstable/autobuild</link>
+ <link>http://www.angstrom-distribution.org/unstable/autobuild</link>
<description></description>
<language>en</language>
<?php
@@ -20,9 +20,9 @@ if ($handle = opendir("$base_path")) {
print("<item>\n");
print("<title>$file/$file2 uploaded</title>\n");
-print(" <link>http://www.anstrom-distribution.org/unstable/autobuild/$file/$file2</link>\n");
+print(" <link>http://www.angstrom-distribution.org/unstable/autobuild/$file/$file2</link>\n");
-$rsstime = strftime("%a, %d %b %Y %T +0000", $fmtime);
+$rsstime = strftime("%a, %d %b %Y %T +0100", $fmtime);
print("<pubDate>$rsstime</pubDate>\n");
print("<dc:creator>Angstrom autobuilder</dc:creator>");