summaryrefslogtreecommitdiffstats
path: root/settings.py
diff options
context:
space:
mode:
authorsubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-07-02 20:43:18 +0100
committersubstantialnoninfringinguser <substantialnoninfringinguser@gmail.com>2009-07-02 20:43:18 +0100
commitae3fe8cd423be5268d630a498361e376c6add776 (patch)
tree1cf7409b5377484ba38d8feba94a893abb7d8611 /settings.py
parentc0b274767b5c0ed209b9ff03679519e2d2170134 (diff)
downloadtroggle-ae3fe8cd423be5268d630a498361e376c6add776.tar.gz
troggle-ae3fe8cd423be5268d630a498361e376c6add776.tar.bz2
troggle-ae3fe8cd423be5268d630a498361e376c6add776.zip
[svn] Renaming troggle.expo to troggle.core. To do this, used:
perl -p -i -e "s/expo(?=[\s\.']+)/core/g" `find -name \*.py` and then manually checked each change (had to remove a couple)
Diffstat (limited to 'settings.py')
-rw-r--r--settings.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/settings.py b/settings.py
index 45d1867..e4c3407 100644
--- a/settings.py
+++ b/settings.py
@@ -54,7 +54,7 @@ TEMPLATE_LOADERS = (
# 'django.template.loaders.eggs.load_template_source',
)
-TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.auth", "expo.context.troggle_context", )
+TEMPLATE_CONTEXT_PROCESSORS = ( "django.core.context_processors.auth", "core.context.troggle_context", )
LOGIN_REDIRECT_URL = '/'
@@ -70,7 +70,7 @@ ROOT_URLCONF = 'troggle.urls'
ACCOUNT_ACTIVATION_DAYS=3
-AUTH_PROFILE_MODULE = 'expo.person'
+AUTH_PROFILE_MODULE = 'core.person'
INSTALLED_APPS = (
'django.contrib.admin',
@@ -84,7 +84,7 @@ INSTALLED_APPS = (
#'django_evolution',
'troggle.registration',
'troggle.profiles',
- 'troggle.expo',
+ 'troggle.core',
'troggle.imagekit',
'mptt', #This is django-mptt (modifed preorder tree traversal) which allows the tree structure of subcaves.
'feincms' #This is a little content management app that does the javascript admin page for mptt.