List enum in a document can be exposed as RSS. To enable RSS functionality for a list enum, specify an RSSID .
To access an RSS feed, change the document extension from .html to .rss and optionally specify parameters. Given the following document URL:
http://www.myapp.com/team/index.html
The RSS URL would be:
http://www.myapp.com/team/index.rss
This URL would access an enum in index.html with an RSSID of "Default". To access a different RSSID it can be selected using the ID param:
http://www.myapp.com/team/index.rss?RSS.ID=Research
The RSS. prefix is used to avoid conflicting with user parameters used in conjunction with HTTP. tags.
In addition to RSS.ID, there are other params that can be specified.
Specifies which RSS feed to return. If no RSS.ID is specified, one named "Default" is searched for.
Specifies the maximum number of items to be returned. If MaxItems is also specified in the list enum, RSS.MaxItems will override that value.
Specifies which page to return and overrides any page value specified in the list enum. For values of the RSS.Page parameter, see list enum page parameter .
In the future other params which allow sorting, filtering, and other options will be available.