| 1 | # -*- coding: utf-8 -*- |
|---|
| 2 | # Django settings for sandbox project. |
|---|
| 3 | |
|---|
| 4 | import os.path |
|---|
| 5 | |
|---|
| 6 | DEBUG = True |
|---|
| 7 | TEMPLATE_DEBUG = DEBUG |
|---|
| 8 | |
|---|
| 9 | ADMINS = ( |
|---|
| 10 | ('Guillaume Pellerin', 'yomguy@parisson.com'), |
|---|
| 11 | ) |
|---|
| 12 | |
|---|
| 13 | MANAGERS = ADMINS |
|---|
| 14 | |
|---|
| 15 | DATABASES = { |
|---|
| 16 | 'default': { |
|---|
| 17 | 'ENGINE': 'django.db.backends.mysql', # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'. |
|---|
| 18 | 'NAME': 'telemeta_sandbox', # Or path to database file if using sqlite3. |
|---|
| 19 | 'USER': '********', # Not used with sqlite3. |
|---|
| 20 | 'PASSWORD': '********', # Not used with sqlite3. |
|---|
| 21 | 'HOST': '', # Set to empty string for localhost. Not used with sqlite3. |
|---|
| 22 | 'PORT': '', # Set to empty string for default. Not used with sqlite3. |
|---|
| 23 | } |
|---|
| 24 | } |
|---|
| 25 | |
|---|
| 26 | # Local time zone for this installation. Choices can be found here: |
|---|
| 27 | # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name |
|---|
| 28 | # although not all choices may be available on all operating systems. |
|---|
| 29 | # On Unix systems, a value of None will cause Django to use the same |
|---|
| 30 | # timezone as the operating system. |
|---|
| 31 | # If running in a Windows environment this must be set to the same as your |
|---|
| 32 | # system time zone. |
|---|
| 33 | TIME_ZONE = 'Europe/Paris' |
|---|
| 34 | |
|---|
| 35 | # Language code for this installation. All choices can be found here: |
|---|
| 36 | # http://www.i18nguy.com/unicode/language-identifiers.html |
|---|
| 37 | #LANGUAGE_CODE = 'fr_FR' |
|---|
| 38 | LANGUAGES = [ ('fr', 'French'), |
|---|
| 39 | ('en', 'English'), |
|---|
| 40 | ] |
|---|
| 41 | |
|---|
| 42 | SITE_ID = 1 |
|---|
| 43 | |
|---|
| 44 | # If you set this to False, Django will make some optimizations so as not |
|---|
| 45 | # to load the internationalization machinery. |
|---|
| 46 | USE_I18N = True |
|---|
| 47 | |
|---|
| 48 | # If you set this to False, Django will not format dates, numbers and |
|---|
| 49 | # calendars according to the current locale |
|---|
| 50 | USE_L10N = True |
|---|
| 51 | |
|---|
| 52 | # Absolute path to the directory that holds media. |
|---|
| 53 | # Example: "/home/media/media.lawrence.com/" |
|---|
| 54 | MEDIA_ROOT = os.path.join(os.path.dirname(__file__), 'media/') |
|---|
| 55 | |
|---|
| 56 | # URL that handles the media served from MEDIA_ROOT. Make sure to use a |
|---|
| 57 | # trailing slash if there is a path component (optional in other cases). |
|---|
| 58 | # Examples: "http://media.lawrence.com", "http://example.com/media/" |
|---|
| 59 | MEDIA_URL = '' |
|---|
| 60 | |
|---|
| 61 | # URL prefix for admin media -- CSS, JavaScript and images. Make sure to use a |
|---|
| 62 | # trailing slash. |
|---|
| 63 | # Examples: "http://foo.com/media/", "/media/". |
|---|
| 64 | ADMIN_MEDIA_PREFIX = 'http://localhost/django/media/' |
|---|
| 65 | |
|---|
| 66 | # Make this unique, and don't share it with anybody. |
|---|
| 67 | SECRET_KEY = 'a8l7%06wr2k+3=%#*#@#rvop2mmzko)44%7k(zx%lls^ihm9^5' |
|---|
| 68 | |
|---|
| 69 | # List of callables that know how to import templates from various sources. |
|---|
| 70 | TEMPLATE_LOADERS = ( |
|---|
| 71 | 'django.template.loaders.filesystem.Loader', |
|---|
| 72 | 'django.template.loaders.app_directories.Loader', |
|---|
| 73 | # 'django.template.loaders.eggs.Loader', |
|---|
| 74 | ) |
|---|
| 75 | |
|---|
| 76 | |
|---|
| 77 | MIDDLEWARE_CLASSES = ( |
|---|
| 78 | 'django.middleware.common.CommonMiddleware', |
|---|
| 79 | 'django.contrib.sessions.middleware.SessionMiddleware', |
|---|
| 80 | 'django.middleware.csrf.CsrfViewMiddleware', |
|---|
| 81 | 'django.contrib.auth.middleware.AuthenticationMiddleware', |
|---|
| 82 | 'django.contrib.messages.middleware.MessageMiddleware', |
|---|
| 83 | 'django.middleware.locale.LocaleMiddleware', |
|---|
| 84 | ) |
|---|
| 85 | |
|---|
| 86 | ROOT_URLCONF = 'sandbox.urls' |
|---|
| 87 | |
|---|
| 88 | TEMPLATE_DIRS = ( |
|---|
| 89 | # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates". |
|---|
| 90 | # Always use forward slashes, even on Windows. |
|---|
| 91 | # Don't forget to use absolute paths, not relative paths. |
|---|
| 92 | '', |
|---|
| 93 | ) |
|---|
| 94 | |
|---|
| 95 | INSTALLED_APPS = ( |
|---|
| 96 | 'django.contrib.auth', |
|---|
| 97 | 'django.contrib.contenttypes', |
|---|
| 98 | 'django.contrib.sessions', |
|---|
| 99 | 'django.contrib.sites', |
|---|
| 100 | 'django.contrib.messages', |
|---|
| 101 | 'django.contrib.admin', |
|---|
| 102 | 'telemeta', |
|---|
| 103 | 'jsonrpc', |
|---|
| 104 | ) |
|---|
| 105 | |
|---|
| 106 | TEMPLATE_CONTEXT_PROCESSORS = ( |
|---|
| 107 | 'django.core.context_processors.request', |
|---|
| 108 | 'django.contrib.auth.context_processors.auth', |
|---|
| 109 | ) |
|---|
| 110 | |
|---|
| 111 | TELEMETA_ORGANIZATION = 'Parisson' |
|---|
| 112 | TELEMETA_SUBJECTS = ('test', 'telemeta', 'sandbox') |
|---|
| 113 | TELEMETA_GMAP_KEY = '***************************************************************************' |
|---|
| 114 | TELEMETA_DOWNLOAD_ENABLED = True |
|---|
| 115 | TELEMETA_STREAMING_FORMATS = ('mp3', 'ogg') |
|---|
| 116 | TELEMETA_PUBLIC_ACCESS_PERIOD = 51 |
|---|
| 117 | AUTH_PROFILE_MODULE = 'telemeta.userprofile' |
|---|
| 118 | |
|---|
| 119 | TELEMETA_OAI_REPOSITORY_NAME = "Telemeta TEST sandbox" |
|---|
| 120 | |
|---|
| 121 | LOGIN_URL = '/login' |
|---|
| 122 | LOGIN_REDIRECT_URL = '/' |
|---|
| 123 | EMAIL_HOST = 'smtp.free.fr' |
|---|
| 124 | DEFAULT_FROM_EMAIL = 'webmaster@parisson.com' |
|---|
| 125 | |
|---|
| 126 | TELEMETA_CACHE_DIR = MEDIA_ROOT + 'cache' |
|---|
| 127 | TELEMETA_EXPORT_CACHE_DIR = TELEMETA_CACHE_DIR + "/export" |
|---|
| 128 | TELEMETA_DATA_CACHE_DIR = TELEMETA_CACHE_DIR + "/data" |
|---|
| 129 | CACHE_BACKEND = "file://" + TELEMETA_CACHE_DIR + "/data" |
|---|
| 130 | SESSION_EXPIRE_AT_BROWSER_CLOSE = False |
|---|
| 131 | |
|---|