RSS module
This module creates an RSS feed, which can be output as a String in RSS 2.0 format, or stored as an ElementTree for further manipulation.
Data types
- RSS::Feed - An RSS Feed
- RSS::FeedItem - An item for an RSS feed
Functions
- Void addItem(Feed feed,FeedItem item) - Add an item to the RSS feed
- Void displayPage(Feed feed) - Displays RSS Feed content from a webapp
- ElementTree elementTree(Feed feed) - Produce an XML representation of a feed
- Feed new(String title,String website,String description) - Create a new RSS feed
- Void setCopyright(Feed feed,String copyright) - Set the feed copyright
- Void setEditor(Feed feed,String editor) - Set the feed editor
- Void setImage(Feed feed,String imageurl,Int width=0,Int height=0) - Associate an image with the feed
- Void setLanguage(Feed feed,String language) - Set the feed language
- Void setWebmaster(Feed feed,String webmaster) - Set the feed webmaster
- String string(Feed feed) - Convert the feed to an XML string