registration and profile cleanup / decrufting

pull/1/head
eric 2011-12-28 12:31:35 -05:00
parent 697ee04a43
commit 37a0139e8d
3 changed files with 1 additions and 5 deletions

View File

@ -3,12 +3,10 @@ south
django-extensions
https://github.com/toastdriven/django-tastypie/tarball/master
requests
https://bitbucket.org/ubernostrum/django-registration/get/tip.tar.gz
django-social-auth
selenium
django-nose-selenium
nose
django-profiles
django-kombu
django-celery
redis

View File

@ -189,7 +189,7 @@ USER_AGENT = "unglue.it.bot v0.0.1 <http://unglue.it>"
SOUTH_TESTS_MIGRATE = True
AUTH_PROFILE_MODULE = "core.userprofile"
AUTH_PROFILE_MODULE = "core.UserProfile"
GOODREADS_API_KEY = ""
GOODREADS_API_SECRET = ""

View File

@ -10,8 +10,6 @@ urlpatterns = patterns('',
(r'^accounts/', include('registration.backends.default.urls')),
(r'^socialauth/', include('social_auth.urls')),
(r'^api/', include('regluit.api.urls')),
('^profiles/edit/$', 'profiles.views.edit_profile', {'form_class': ProfileForm,}),
(r'^profiles/', include('profiles.urls')),
(r'', include('regluit.frontend.urls')),
(r'', include('regluit.payment.urls')),
(r'^selectable/', include('selectable.urls')),