remove installed_apps from config and update settings and version number to 0.1.4 V00.01.04
authorcavaliet
Thu, 20 Jun 2013 15:11:28 +0200
changeset 38 4a426ead9d76
parent 37 2258afe9f61f
child 39 87f20236ea99
remove installed_apps from config and update settings and version number to 0.1.4
src/aixweb/__init__.py
src/aixweb/config.py.tmpl
src/aixweb/settings.py
--- a/src/aixweb/__init__.py	Thu Jun 20 14:42:14 2013 +0200
+++ b/src/aixweb/__init__.py	Thu Jun 20 15:11:28 2013 +0200
@@ -1,4 +1,4 @@
-VERSION = (0, 1, 3, "final", 0)
+VERSION = (0, 1, 4, "final", 0)
 
 VERSION_STR = unicode(".".join(map(lambda i:"%02d" % (i,), VERSION[:2])))
 
--- a/src/aixweb/config.py.tmpl	Thu Jun 20 14:42:14 2013 +0200
+++ b/src/aixweb/config.py.tmpl	Thu Jun 20 15:11:28 2013 +0200
@@ -69,37 +69,6 @@
     }
 }
 
-INSTALLED_APPS = (
-    'django_extensions',
-    'django.contrib.auth',
-    'django.contrib.contenttypes',
-    'django.contrib.sessions',
-    'django.contrib.sites',
-    'django.contrib.messages',
-    'django.contrib.admin',
-    'django.contrib.staticfiles',
-    'haystack',
-    'aixweb',
-    'registration',
-    'tagging',
-    'ldt',
-    'ldt.core',
-    'ldt.ldt_utils',
-    'ldt.text',
-    'ldt.user',
-    'ldt.management',
-    'ldt.indexation',
-    'oauth_provider',
-    'django_openid_consumer',
-    'social_auth',
-    'south',
-    'guardian',
-    'sorl.thumbnail',
-    'tastypie',
-    'chunked_uploads',
-    'metadatacomposer',
-)
-
 
 DEBUG = True
 TEMPLATE_DEBUG = DEBUG
--- a/src/aixweb/settings.py	Thu Jun 20 14:42:14 2013 +0200
+++ b/src/aixweb/settings.py	Thu Jun 20 15:11:28 2013 +0200
@@ -129,26 +129,26 @@
     'django.contrib.admin',
     'django.contrib.staticfiles',
     'haystack',
-    'tastypie',
-    'guardian',
+    'aixweb',
+    'registration',
     'tagging',
-    'registration',
+    'ldt',
+    'ldt.core',
+    'ldt.ldt_utils',
+    'ldt.text',
+    'ldt.user',
+    'ldt.management',
+    'ldt.indexation',
     'oauth_provider',
     'django_openid_consumer',
     'social_auth',
     'south',
+    'guardian',
     'sorl.thumbnail',
-    'ldt',
-    'ldt.core',
-    'ldt.security',
-    'ldt.user',
-    'ldt.ldt_utils',
-    'ldt.text',
-    'ldt.management',
-    'ldt.indexation',
-    'hashcut',
+    'tastypie',
+    #'hashcut',
     'chunked_uploads',
-    'aixweb',
+    'metadatacomposer',
 )
 
 #AUTH_PROFILE_MODULE = 'user.UserProfile'