aboutsummaryrefslogtreecommitdiff
path: root/settings-sample.py
diff options
context:
space:
mode:
Diffstat (limited to 'settings-sample.py')
-rw-r--r--settings-sample.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings-sample.py b/settings-sample.py
index 9abc5b8..5aa1aec 100644
--- a/settings-sample.py
+++ b/settings-sample.py
@@ -26,25 +26,25 @@ ADMINS = (
('Your Name', 'Your e-mail address'),
)
MANAGERS = ADMINS
DATABASE_ENGINE = ''
DATABASE_NAME = ''
DATABASE_USER = ''
DATABASE_PASSWORD = ''
DATABASE_HOST = ''
DATABASE_PORT = ''
SITE_ID = 1
-USE_I18N = True
+USE_I18N = False
TIME_ZONE = 'Europe/Warsaw'
LANGUAGE_CODE = 'en-us'
LANGUAGE_COOKIE_NAME = 'dicoweb_lang'
SESSION_COOKIE_NAME = 'dicoweb_sid'
SESSION_ENGINE = 'django.contrib.sessions.backends.file'
SESSION_EXPIRE_AT_BROWSER_CLOSE = True
# Caching, see http://docs.djangoproject.com/en/dev/topics/cache/#topics-cache
CACHE_BACKEND = 'memcached://127.0.0.1:11211/'
@@ -63,35 +63,35 @@ TEMPLATE_LOADERS = (
'django.template.loaders.app_directories.load_template_source',
)
MIDDLEWARE_CLASSES = (
'django.middleware.cache.UpdateCacheMiddleware',
'django.contrib.sessions.middleware.SessionMiddleware',
'django.middleware.locale.LocaleMiddleware',
'django.middleware.gzip.GZipMiddleware',
'django.middleware.common.CommonMiddleware',
'django.middleware.cache.FetchFromCacheMiddleware',
)
-ROOT_URLCONF = 'dicoweb.urls'
+ROOT_URLCONF = 'gcide.urls'
TEMPLATE_DIRS = (
os.path.join (SITE_ROOT, 'templates'),
)
INSTALLED_APPS = (
'django.contrib.contenttypes',
'django.contrib.sessions',
'django.contrib.sites',
- 'dicoweb',
+ 'gcide',
)
DICT_SERVERS = ('gnu.org.ua',)
DICT_TIMEOUT = 10
AUTH = {}
# AUTH = { '127.0.0.1:12628' : { 'user' : 'gcide', 'password' : 'pass' } }
DICT_TIMEOUT = 10
GCIDE_VERSION = 0.51
GCIDE_FTP = "ftp://download.gnu.org.ua/pub/gcide"

Return to:

Send suggestions and report system problems to the System administrator.