Statistics
| Branch: | Tag: | Revision:

root / pithos / settings.d / 00-apps.conf @ fe243425

History | View | Annotate | Download (728 Bytes)

1
# List of callables that know how to import templates from various sources.
2
TEMPLATE_LOADERS = (
3
    'django.template.loaders.filesystem.Loader',
4
    'django.template.loaders.app_directories.Loader',
5
)
6

    
7
MIDDLEWARE_CLASSES = (
8
    'django.middleware.common.CommonMiddleware',
9
    'pithos.middleware.URLEncodedHeadersMiddleware',
10
    'pithos.middleware.LoggingConfigMiddleware',
11
    'pithos.middleware.AuthMiddleware'
12
)
13

    
14
ROOT_URLCONF = 'pithos.urls'
15

    
16
TEMPLATE_DIRS = (
17
    # Put strings here, like "/home/html/django_templates".
18
    # Always use forward slashes, even on Windows.
19
    # Don't forget to use absolute paths, not relative paths.
20
)
21

    
22
INSTALLED_APPS = (
23
    'pithos.api',
24
    'pithos.im',
25
    'pithos.ui',
26
    'south'
27
)