multisearch fails to see joined queries -> will try to use one toplevel
[wolnelektury.git] / wolnelektury / settings.py
index e0f740f..c0baf99 100644 (file)
@@ -60,6 +60,7 @@ USE_I18N = True
 # Example: "/home/media/media.lawrence.com/"
 MEDIA_ROOT = path.join(PROJECT_DIR, '../media')
 STATIC_ROOT = path.join(PROJECT_DIR, 'static')
+SEARCH_INDEX = path.join(MEDIA_ROOT, 'search')
 
 # URL that handles the media served from MEDIA_ROOT. Make sure to use a
 # trailing slash if there is a path component (optional in other cases).
@@ -150,6 +151,10 @@ INSTALLED_APPS = [
     'sponsors',
     'stats',
     'suggest',
+    'search',
+
+    #
+    'django_nose',
 ]
 
 #CACHE_BACKEND = 'locmem:///?max_entries=3000'
@@ -224,12 +229,15 @@ API_WAIT = 10
 # limit number of filtering tags
 MAX_TAG_LIST = 6
 
-NO_BUILD_EPUB = False
+NO_BUILD_EPUB = True
 NO_BUILD_TXT = False
-NO_BUILD_PDF = False
+NO_BUILD_PDF = True
+NO_BUILD_MOBI = True
+NO_SEARCH_INDEX = False
 
 ALL_EPUB_ZIP = 'wolnelektury_pl_epub'
 ALL_PDF_ZIP = 'wolnelektury_pl_pdf'
+ALL_MOBI_ZIP = 'wolnelektury_pl_mobi'
 
 PAGINATION_INVALID_PAGE_RAISES_404 = True
 
@@ -243,6 +251,8 @@ BROKER_USER = "guest"
 BROKER_PASSWORD = "guest"
 BROKER_VHOST = "/"
 
+
+
 # Load localsettings, if they exist
 try:
     from localsettings import *