diff options
author | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-19 02:31:20 +0000 |
---|---|---|
committer | Tim Almdal <tnalmdal@shaw.ca> | 2008-11-19 02:31:20 +0000 |
commit | ad7ace9b72532512c67953d7149854312b6b195d (patch) | |
tree | c59fe3534e4e089ae919220dacc36f1acf120489 /modules/slideshow/views | |
parent | b2772f5a050351129a64b966b127e39cf76c80b5 (diff) |
The continuing evolution of the slideshow...
1) added a mime_type property to the item module(no database change)
2) created a media_rss module
3) moved most of the functionality for the downloading the images to the media_rss module
Diffstat (limited to 'modules/slideshow/views')
-rw-r--r-- | modules/slideshow/views/slideshow_feed.rss.php | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/slideshow/views/slideshow_feed.rss.php b/modules/slideshow/views/slideshow_feed.rss.php deleted file mode 100644 index b07bf5fe..00000000 --- a/modules/slideshow/views/slideshow_feed.rss.php +++ /dev/null @@ -1,20 +0,0 @@ -<? defined("SYSPATH") or die("No direct script access."); ?> -<? echo "<?xml version=\"1.0\" ?>"; ?> -<rss version="2.0"> - <channel> - <title><?= $item->title ?></title> - <link><?= url::site("slideshow/$item->id") ?></link> - <description><?= $item->description ?></description> - <language>en-us</language> - <? - // @todo do we want to add an upload date to the items table? - $date = date("D, dd M Y H:i:s e"); - ?> - <pubDate><?= $date ?></pubDate> - <lastBuildDate><?= $date ?></lastBuildDate> - <? foreach ($children as $child): ?> - <image> - </image> - <? endforeach; ?> - </channel> -</rss>
\ No newline at end of file |