diff -r 3db97cf7f2c7 -r 15d89c284106 app/urls.py --- a/app/urls.py Fri Sep 12 02:12:38 2008 +0000 +++ b/app/urls.py Fri Sep 12 02:37:15 2008 +0000 @@ -25,11 +25,21 @@ '', (r'^$', 'soc.views.site.home.public'), + # TODO(tlarsen): uncomment these when the view functions are committed # attempt to send User to their dashboard # (will display soc.views.user.roles.public() if "linkname" is not # current logged-in User) - (r'^user/roles/(?P[_0-9a-z]+)$', - 'soc.views.user.roles.dashboard'), + # (r'^user/roles$', + # 'soc.views.user.roles.dashboard'), + # (r'^user/roles/(?P[_0-9a-z]+)$', + # 'soc.views.user.roles.dashboard'), + + (r'^site/user/lookup$', 'soc.views.site.user.profile.lookup'), + + # TODO(tlarsen): uncomment these when the view functions are committed + # (r'^site/user/profile$', 'soc.views.site.user.profile.create'), + # (r'^site/user/profile/(?P[_0-9a-z]+)$', + # 'soc.views.site.user.profile.edit'), (r'^user/profile$', 'soc.views.user.profile.edit'), (r'^user/profile/(?P[_0-9a-z]+)$',