diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-05-16 12:56:44 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-05-16 12:56:44 +0200 |
commit | d28284ebf8d8f3ba3c743313a226b28f20015e2e (patch) | |
tree | 00df7d59bbea9729c47044b27d2d9f1ac04885f1 /settings.py | |
parent | 5301354f3623de398b8f2a3b93342cc31e5128e1 (diff) | |
download | Chimère - projet de référence-d28284ebf8d8f3ba3c743313a226b28f20015e2e.tar.bz2 Chimère - projet de référence-d28284ebf8d8f3ba3c743313a226b28f20015e2e.zip |
Fix RSS feeds for django 1.4 - reintegrate them in the main application
Diffstat (limited to 'settings.py')
-rw-r--r-- | settings.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/settings.py b/settings.py index ddd8261..82c4454 100644 --- a/settings.py +++ b/settings.py @@ -54,6 +54,8 @@ CHIMERE_DISPLAY_AREAS = True # don't forget to run the upgrade.py script to create appropriate fields in # the database CHIMERE_DAYS_BEFORE_EVENT = 30 +# allow feeds +CHIMERE_FEEDS = True CHIMERE_ICON_WIDTH = 21 CHIMERE_ICON_HEIGHT = 25 @@ -180,15 +182,10 @@ INSTALLED_APPS = ( 'djcelery', 'south', 'chimere', - # activate it if you want to use migration scripts + # activate it if you want to use old migration scripts #'chimere.scripts', - # activate it if you want to use RSS feeds - #'chimere_rss' ) -if 'chimere_rss' in INSTALLED_APPS: - TEMPLATE_DIRS.append(ROOT_PATH + 'chimere_rss/templates') - LOGGING = {'version': 1, 'disable_existing_loggers': False, 'handlers': { |