Add URLs to settings.py that don't need to be redirected

This commit is contained in:
Wil Clouser 2010-02-21 21:56:08 -08:00
Родитель ed8978a9ec
Коммит 7711e154f9
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -213,12 +213,12 @@ SITE_URL = 'http://%s' % HOSTNAME
SELENIUM_CONFIG = {}
# paths that don't require an app prefix
SUPPORTED_NONAPPS = ('admin', 'developers', 'editors', 'localizers',
'statistics', 'services', 'jsi18n')
SUPPORTED_NONAPPS = ('admin', 'developers', 'editors', 'img', 'jsi18n',
'localizers', 'media', 'statistics', 'services')
DEFAULT_APP = 'firefox'
# paths that don't require a locale prefix
SUPPORTED_NONLOCALES = ('services',)
SUPPORTED_NONLOCALES = ('img', 'media', 'services',)
# Prefix for cache keys (will prevent collisions when running parallel copies)
CACHE_PREFIX = 'amo:'