Simple update.
[turniej.git] / turniej / settings.py
index 8687ba1..b9525ed 100644 (file)
@@ -35,13 +35,13 @@ TIME_ZONE = None
 
 # Language code for this installation. All choices can be found here:
 # http://www.i18nguy.com/unicode/language-identifiers.html
-#LANGUAGE_CODE = 'pl'
+LANGUAGE_CODE = 'pl'
 
 SITE_ID = 1
 
 # If you set this to False, Django will make some optimizations so as not
 # to load the internationalization machinery.
-#USE_I18N = True
+USE_I18N = True
 
 # If you set this to False, Django will not format dates, numbers and
 # calendars according to the current locale
@@ -101,7 +101,6 @@ MIDDLEWARE_CLASSES = [
     #'django.middleware.csrf.CsrfViewMiddleware',
     #'django.contrib.auth.middleware.AuthenticationMiddleware',
     #'django.contrib.messages.middleware.MessageMiddleware',
-    'piwik.django.middleware.PiwikMiddleware',
 ]
 
 ROOT_URLCONF = 'turniej.urls'
@@ -113,6 +112,18 @@ TEMPLATE_DIRS = [
     os.path.join(PROJECT_DIR, 'templates'),
 ]
 
+TEMPLATE_CONTEXT_PROCESSORS = (
+    #"django.contrib.auth.context_processors.auth",
+    "django.core.context_processors.debug",
+    "django.core.context_processors.i18n",
+    "django.core.context_processors.media",
+    "django.core.context_processors.static",
+    "django.contrib.messages.context_processors.messages",
+    "django.core.context_processors.request",
+)
+TEMPLATE_CONTEXT_PROCESSORS += (
+)
+
 INSTALLED_APPS = [
     #'django.contrib.auth',
     #'django.contrib.contenttypes',
@@ -125,9 +136,12 @@ INSTALLED_APPS = [
     # 'django.contrib.admindocs',
 
     'south',
-    'piwik.django',
+    'piwik',
 
+    'fnpdjango',
     'poetry',
+    'edition1',
+    'edition2',
 ]
 
 # A sample logging configuration. The only tangible logging
@@ -155,6 +169,10 @@ LOGGING = {
 
 POETRY_POEMS_FOR_CONTEST = 20
 
+ALLOWED_HOSTS = [
+    'turniej.wolnelektury.pl',
+]
+
 # Load localsettings, if they exist
 try:
     from localsettings import *