# HG changeset patch # User cavaliet # Date 1371733888 -7200 # Node ID 4a426ead9d76afcea7cb4bb2b90c0cbb744f547b # Parent 2258afe9f61fccfd0d29c5bc66274d068f82bdca remove installed_apps from config and update settings and version number to 0.1.4 diff -r 2258afe9f61f -r 4a426ead9d76 src/aixweb/__init__.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]))) diff -r 2258afe9f61f -r 4a426ead9d76 src/aixweb/config.py.tmpl --- 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 diff -r 2258afe9f61f -r 4a426ead9d76 src/aixweb/settings.py --- 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'