root/settings.py

Revision 2a68f7ccff56f3437a847b754e502cdd193c2a5e, 3.5 KB (checked in by Binary <binary@…>, 6 months ago)

version changed to 0.3.1

  • Property mode set to 100755
Line 
1from habahaba.settings import *
2
3# Django settings for jabber project.
4
5DEBUG = True
6TEMPLATE_DEBUG = DEBUG
7
8ADMINS = (
9    # ('Your Name', 'your_email@domain.com'),
10)
11
12MANAGERS = ADMINS
13
14DATABASE_ENGINE = 'sqlite3'           # 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
15DATABASE_NAME = 'dev.db'             # Or path to database file if using sqlite3.
16DATABASE_USER = ''             # Not used with sqlite3.
17DATABASE_PASSWORD = ''         # Not used with sqlite3.
18DATABASE_HOST = ''             # Set to empty string for localhost. Not used with sqlite3.
19DATABASE_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.
26TIME_ZONE = 'Asia/Omsk'
27
28# Language code for this installation. All choices can be found here:
29# http://www.i18nguy.com/unicode/language-identifiers.html
30LANGUAGE_CODE = 'en-us'
31
32SITE_ID = 1
33
34# If you set this to False, Django will make some optimizations so as not
35# to load the internationalization machinery.
36USE_I18N = True
37
38# Absolute path to the directory that holds media.
39# Example: "/home/media/media.lawrence.com/"
40MEDIA_ROOT = ''
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/"
45MEDIA_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/".
50ADMIN_MEDIA_PREFIX = '/media/'
51
52# Make this unique, and don't share it with anybody.
53SECRET_KEY = 'tdrdxb2yp=z4w8^59w%2299!cp@=np)3y^mwr=bi*l^(fmoez&'
54
55# List of callables that know how to import templates from various sources.
56TEMPLATE_LOADERS = (
57    'django.template.loaders.filesystem.load_template_source',
58    'django.template.loaders.app_directories.load_template_source',
59#     'django.template.loaders.eggs.load_template_source',
60)
61
62MIDDLEWARE_CLASSES = (
63    'django.middleware.common.CommonMiddleware',
64    'django.contrib.sessions.middleware.SessionMiddleware',
65    'django.middleware.locale.LocaleMiddleware',
66    'django.contrib.auth.middleware.AuthenticationMiddleware',
67)
68
69ROOT_URLCONF = 'urls'
70
71TEMPLATE_DIRS = (
72    'habahaba/templates',
73    # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
74    # Always use forward slashes, even on Windows.
75    # Don't forget to use absolute paths, not relative paths.
76)
77
78TEMPLATE_CONTEXT_PROCESSORS = (
79    'habahaba.context_processors.config_processor',
80)
81
82INSTALLED_APPS = (
83    'django.contrib.auth',
84    'django.contrib.contenttypes',
85    'django.contrib.sessions',
86    'django.contrib.sites',
87    'habahaba',
88    'gateway',
89    'staticmedia',
90    'captcha',
91    'compress',
92    'habahaba.lite',
93)
94
95STATICMEDIA_MOUNTS = (
96    #('/habahaba', 'habahaba/media'),
97)
98
99#CAPTCHA_NOISE_FUNCTIONS = ('captcha.helpers.noise_dots',)
100CAPTCHA_FONT_SIZE = 28
101CAPTCHA_BACKGROUND_COLOR = '#EFECE0'
102CAPTCHA_LETTER_ROTATION = None
103CAPTCHA_TRIES = 3
104LITE_CAPTCHA_CHALLENGE_FUNCT = 'captcha.helpers.math_challenge'
105
106MAX_OFFLINE_MESSAGES = 25
107
108CACHE_BACKEND = 'file:///var/tmp/habahaba_cache'
109
110HABAHABA_VERSION = '0.3.1'
111
112try:
113    from settings_local import *
114except ImportError:
115    pass
Note: See TracBrowser for help on using the browser.