Statistics
| Branch: | Revision:

root / settings.py @ 103:e285e157be4e

History | View | Annotate | Download (3 kB)

1
# Django settings for wayf project.
2
import os
3
here = lambda x: os.path.join(os.path.abspath(os.path.dirname(__file__)), x)
4

    
5
DEBUG = False
6
TEMPLATE_DEBUG = DEBUG
7

    
8
ADMINS = (
9
    # ('Your Name', 'your_email@domain.com'),
10
)
11

    
12
MANAGERS = ADMINS
13

    
14
DATABASE_ENGINE = ''           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
15
DATABASE_NAME = ''             # Or path to database file if using sqlite3.
16
DATABASE_USER = ''             # Not used with sqlite3.
17
DATABASE_PASSWORD = ''         # Not used with sqlite3.
18
DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
19
DATABASE_PORT = ''             # Set to empty string for default. Not used with sqlite3.
20

    
21
# Local time zone for this installation. Choices can be found here:
22
# http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
23
# although not all choices may be available on all operating systems.
24
# If running in a Windows environment this must be set to the same as your
25
# system time zone.
26
TIME_ZONE = 'Europe/Athens'
27

    
28
# Language code for this installation. All choices can be found here:
29
# http://www.i18nguy.com/unicode/language-identifiers.html
30
LANGUAGE_CODE = 'en-us'
31

    
32
SITE_ID = 1
33

    
34
# If you set this to False, Django will make some optimizations so as not
35
# to load the internationalization machinery.
36
USE_I18N = True
37

    
38
# Absolute path to the directory that holds media.
39
# Example: "/home/media/media.lawrence.com/"
40
MEDIA_ROOT = here('static')
41

    
42
# URL that handles the media served from MEDIA_ROOT. Make sure to use a
43
# trailing slash if there is a path component (optional in other cases).
44
# Examples: "http://media.lawrence.com", "http://example.com/media/"
45
MEDIA_URL = ''
46

    
47
# URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a
48
# trailing slash.
49
# Examples: "http://foo.com/media/", "/media/".
50
ADMIN_MEDIA_PREFIX = '/media/'
51

    
52
# Make this unique, and don't share it with anybody.
53
SECRET_KEY = 'w70vxdbe(^&92@^a)b%jm=8p0@-o$ykbfal2)tn%ssky(t*z5l'
54

    
55
# List of callables that know how to import templates from various sources.
56
TEMPLATE_LOADERS = (
57
    'filesystem_multilingual.load_template_source',
58
#    'django.template.loaders.filesystem.load_template_source',
59
#    'django.template.loaders.app_directories.load_template_source',
60
#     'django.template.loaders.eggs.load_template_source',
61
)
62

    
63
MIDDLEWARE_CLASSES = (
64
    'django.middleware.common.CommonMiddleware',
65
    'django.middleware.locale.LocaleMiddleware',
66
    'grnet_aai.middleware.VhostMiddleware',
67
)
68

    
69
ROOT_URLCONF = 'grnet_aai.urls'
70

    
71
TEMPLATE_DIRS = (
72
    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
73
    # Always use forward slashes, even on Windows.
74
    # Don't forget to use absolute paths, not relative paths.
75
    here('templates'),
76
)
77

    
78
INSTALLED_APPS = (
79
    'grnet_aai.wayf',
80
    'grnet_aai.aai',
81
)
82

    
83
IDP_COOKIE = 'grnet_selected_idp'
84
SHIB_METADATA = '/srv/aai/dist/grnet-metadata.xml'
85
LAST_IDP_COOKIE = 'grnet_last_idp'
86
COOKIE_DOMAIN = '.grnet.gr'
87
LANGUAGE_COOKIE_NAME = 'grnet_aai_language'
88

    
89
WAYF_SITENAME='wayf.grnet.gr'