feed-generator
is a simple django-cms addon that exposes a RSS feed endpoint containing the last pages created in the CMS.
- $ python setup.py install
- edit project settings.py and add "feed_generator" to INSTALLED_APPS
- edit project urls.py and add an entry similar to this one: url(r'^news/', include('feed_generator.urls')),
This will expose the RSS feed at http://yoursite.com/news/rss
FEEDGENERATOR_FEED_LIMIT
the maximum number of pages to include in the feed, defaults to100
.FEEDGENERATOR_EXCLUDE_KEYWORD
the pages that contain this keyword will be excluded from the feed.