web/ldtplatform/settings.py
changeset 718 5e27a39d3742
parent 665 f4fed46efbde
child 740 d03908cf3c73
equal deleted inserted replaced
717:d66abfc1cb87 718:5e27a39d3742
   127     'django.contrib.sessions',
   127     'django.contrib.sessions',
   128     'django.contrib.sites',
   128     'django.contrib.sites',
   129     'django.contrib.messages',
   129     'django.contrib.messages',
   130     'django.contrib.admin',
   130     'django.contrib.admin',
   131     'django.contrib.staticfiles',
   131     'django.contrib.staticfiles',
       
   132     'haystack',
   132     'ldtplatform',
   133     'ldtplatform',
   133     'registration',
   134     'registration',
   134     'tagging',
   135     'tagging',
   135     'ldt',
   136     'ldt',
   136     'ldt.core',
   137     'ldt.core',
   137     'ldt.ldt_utils',
   138     'ldt.ldt_utils',
   138     'ldt.text',
   139     'ldt.text',
   139     'ldt.user',
   140     'ldt.user',
   140     'ldt.management',
   141     'ldt.management',
       
   142     'ldt.indexation',
   141     'oauth_provider',
   143     'oauth_provider',
   142     'django_openid_consumer',
   144     'django_openid_consumer',
   143     'piston',
   145     'piston',
   144     'social_auth',
   146     'social_auth',
   145     'south',
   147     'south',
   229           '??' : 'Q'
   231           '??' : 'Q'
   230           }
   232           }
   231 
   233 
   232 EXTERNAL_STREAM_SRC = ['youtube.com', 'dailymotion.com']
   234 EXTERNAL_STREAM_SRC = ['youtube.com', 'dailymotion.com']
   233 
   235 
       
   236 HAYSTACK_CONNECTIONS = {
       
   237     'default': {
       
   238         'ENGINE': 'haystack.backends.simple_backend.SimpleEngine',
       
   239     },
       
   240 }
       
   241 
   234 from config import *
   242 from config import *
   235 
   243 
   236 if not "LOGIN_URL" in locals():
   244 if not "LOGIN_URL" in locals():
   237     LOGIN_URL = BASE_URL + 'ldtplatform/accounts/login/'
   245     LOGIN_URL = BASE_URL + 'ldtplatform/accounts/login/'
   238 if not "LOGOUT_URL" in locals():
   246 if not "LOGOUT_URL" in locals():