LOGIN_REDIRECT_URL = '/'
INSTALLED_APPS = [
- # included
+ # external
'django.contrib.auth',
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
'django.contrib.admin',
'django.contrib.admindocs',
-
- # external
+ 'pagination',
+ 'piston',
+ 'piwik.django',
+ 'rosetta',
'south',
'sorl.thumbnail',
- 'sponsors',
- 'newtagging',
- 'pagination',
- 'chunks',
+
+ # included
'compress',
'modeltranslation',
- 'catalogue',
- 'lessons',
- 'piston',
+
+ # our
'api',
- 'rosetta',
+ 'catalogue',
+ 'chunks',
+ 'dictionary',
'infopages',
- 'suggest',
'lesmianator',
+ 'lessons',
+ 'newtagging',
'opds',
'pdcounter',
- 'piwik.django',
+ 'sponsors',
+ 'stats',
+ 'suggest',
]
#CACHE_BACKEND = 'locmem:///?max_entries=3000'
TRANSLATION_REGISTRY = "wolnelektury.translation"
+
+# seconds until a changes appears in the changes api
+API_WAIT = 10
+
# limit number of filtering tags
MAX_TAG_LIST = 6