Consume RSS feeds with wwwRssEater
ColdFusion
This custom tag was created to consume RSS feeds and display their links/title/publish date in a date sorted list.
As you can see, it accepts two attributes (rssPathUrl, and rssItems). The rssPathUrl attribute takes a comma delimited list of http paths. If you want to return all rss items in your feed collection just leave out the rssItems attribute.
I built a page that basically just uses this tag for its content. (I added 'Description' to the tag's code in order to poplate that portion of the page.)
click here to download wwwRssEater
AJL
Here is an example of its use in your page:
<cf_wwwRssEater
rssPathUrl="http://www.aaronjlynch.com/blog/rss.cfm,
http://www.daveshuck.com/blog/rss.cfm"
rssItems="10">
As you can see, it accepts two attributes (rssPathUrl, and rssItems). The rssPathUrl attribute takes a comma delimited list of http paths. If you want to return all rss items in your feed collection just leave out the rssItems attribute.
I built a page that basically just uses this tag for its content. (I added 'Description' to the tag's code in order to poplate that portion of the page.)
click here to download wwwRssEater
AJL





Loading....