Skip to content

kimetrica/django-cms-feed-generator

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-cms-feed-generator

feed-generator is a simple django-cms addon that exposes a RSS feed endpoint containing the last pages created in the CMS.

Install

  1. $ python setup.py install
  2. edit project settings.py and add "feed_generator" to INSTALLED_APPS
  3. 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

Settings

  • FEEDGENERATOR_FEED_LIMIT the maximum number of pages to include in the feed, defaults to 100.
  • FEEDGENERATOR_EXCLUDE_KEYWORD the pages that contain this keyword will be excluded from the feed.

Packages

No packages published

Languages

  • Python 90.9%
  • JavaScript 9.1%