Mercurial > public > sg101
view gpp/messages/urls.py @ 327:a1bf6cf49720
Modified the implementation of the avatar tag to look for an attribute 'user_profile' on the user object. If present, this is assumed to be the profile. This improves the performance of the member list and some forum views.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 22 Feb 2011 02:11:26 +0000 |
parents | b1c39788e511 |
children | 76ba9478ebbd |
line wrap: on
line source
"""urls for the Messages application""" from django.conf.urls.defaults import * from django.views.generic import RedirectView urlpatterns = patterns('messages.views', url(r'^inbox/$', 'inbox', name='messages-inbox'), url(r'^outbox/$', 'outbox', name='messages-outbox'), url(r'^trash/$', 'trash', name='messages-trash'), url(r'^view/(\d+)/$', 'view', name='messages-view'), url(r'^reply/(\d+)/$', 'reply', name='messages-reply'), url(r'^compose/$', 'compose', name='messages-compose'), url(r'^compose/([\w.@+-]{1,30})/$', 'compose', name='messages-compose_to'), url(r'^delete/$', 'delete_bulk', name='messages-delete_bulk'), url(r'^delete/(\d+)/$', 'delete', name='messages-delete'), url(r'^undelete/$', 'undelete_bulk', name='messages-undelete_bulk'), url(r'^undelete/(\d+)/$', 'undelete', name='messages-undelete'), url(r'^options/$', 'options', name='messages-options'), ) urlpatterns += patterns('', (r'^$', RedirectView.as_view(url='inbox/')), )