public
Fork of lorenjohnson/radiant-rss-reader
Description: Feed reader for Radiant CMS
Homepage: http://www.hellovenado.com
Clone URL: git://github.com/Shopify/radiant-rss-reader.git
 
deploy (author)
Mon Feb 12 10:46:32 -0800 2007
name age message
file README.txt Mon Feb 12 10:46:32 -0800 2007 git-svn-id: svn+ssh://svn.hellovenado.com/var/s... [deploy]
directory lib/ Fri Feb 02 01:46:55 -0800 2007 Attempted to get all the feed_parser library st... [deploy]
file rss_reader_extension.rb Wed Jan 31 12:23:01 -0800 2007 Adding all the Radiant extensions work to repo. [deploy]
README.txt
* ABOUT
This is a RadiantCMS extension (originally a behavior by Alessandro Preite Martinez) that
adds some tags to fetch and display RSS feeds. It uses the
'feedparser' module, and it is able to cache the raw feed data
and to only fetch the new feed if it has been modified (using the
If-Modified-Since HTTP header).

 
* INSTALLATION 
1. Copy this entire rss_reader folder to vendor/extensions in your Radiant installation 
2. Install the FeedParser Ruby module (http://home.gna.org/ruby-feedparser/). It can be copied to the root lib directory 

of your Radiant installation. 
 

* USAGE EXAMPLE
Use it in your page like this (just an example):

 <dl>
 <r:feed:items url="http://some.feed/rss" limit="5">
  <dt><r:feed:link /> - by <r:feed:creator />, <r:feed:date /></dt>
  <dd><r:feed:content /></dd>
 </r:feed:items>
 </dl>


* AUTHOR
Port to Extension:
BJ Clark (bjclark@scidept.com, http://www.scidept.com/) & Loren Johnson (loren@fn-group.com, http://www.fn-group.com)

Original Author: 
Alessandro Preite Martinez (ale@incal.net)