|
CF_SimpleRSS 2.0 Example Usage
 |
Author |
: |
Daniel Mackey |
 |
Email |
: |
dan@digital-crew.com |
Example 1 - Using CF_SimpleRSS to subscribe to a news feed (taken from real world example)
<cf_SimpleRSS2
datasource = "#APPLICATION.db_datasource#"
username = "#APPLICATION.db_username#"
password = "#APPLICATION.db_password#"
useCaching = "yes"
rssFeedTitle = "it@cork news"
rssFeedDescription = "Enjoy the latest it@cork news direct to your RSS aggregator."
rssFeedImageURL = "#APPLICATION.siteURL#images/rsslogo.jpg"
sitelink = "#APPLICATION.siteURL#"
table = "news"
orderby = "newsId DESC"
maxItems = "20"
IdField = "newsId"
TitleField = "newsTitle"
DatetimeField = "newsDate"
DescriptionField = "news"
ItemLinkBase = "#APPLICATION.siteURL#index.cfm?page=news&newsId="
>
|