--- a/src/aixweb/settings.py Fri May 31 16:14:20 2013 +0200
+++ b/src/aixweb/settings.py Fri May 31 17:39:48 2013 +0200
@@ -1,7 +1,7 @@
# -*- coding: utf-8 -*-
#@PydevCodeAnalysisIgnore
import os.path
-import ldtplatform
+import aixweb
# Django settings for project.
DEBUG = True
@@ -105,7 +105,7 @@
)
-ROOT_URLCONF = 'ldtplatform.urls'
+ROOT_URLCONF = 'aixweb.urls'
TEMPLATE_DIRS = (
# Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
@@ -148,7 +148,7 @@
'ldt.indexation',
'hashcut',
'chunked_uploads',
- 'ldtplatform',
+ 'aixweb',
)
#AUTH_PROFILE_MODULE = 'user.UserProfile'
@@ -213,7 +213,7 @@
ANONYMOUS_USER_ID = -1
-WEB_VERSION = ldtplatform.get_version()
+WEB_VERSION = aixweb.get_version()
DIVISIONS_FOR_STAT_ANNOTATION = 64
@@ -252,7 +252,7 @@
SRC_BASE_URL = BASE_URL + __name__.split('.')[0] + '/'
if not "SRC_BASE_URL" in locals():
- SRC_BASE_URL = BASE_URL + 'ldtplatform/'
+ SRC_BASE_URL = BASE_URL + 'aixweb/'
if not "LOGIN_URL" in locals():
LOGIN_URL = SRC_BASE_URL + 'accounts/login/'