view gpp/messages/urls.py @ 492:3c48a555298d

Added a custom tag to display a link to a profile. Refactored the avatar tag to optionally display a profile link around the image. Removed the width and height attributes from the avatar image tag. I think this was causing disk hits whenever those properties were not cached. The avatar tag is now an inclusion tag.
author Brian Neal <bgneal@gmail.com>
date Sat, 22 Oct 2011 00:07:50 +0000
parents 33d0c55e57a9
children ddd69a8e07c7
line wrap: on
line source
"""urls for the Messages application"""
from django.conf.urls.defaults import *

urlpatterns = patterns('messages.views',
    url(r'^$',
        'index',
        name='messages-index'),
    url(r'^(inbox|compose|outbox|trash|options)/$',
        'index',
        name='messages-index_named'),
    url(r'^options/$',
        'index',
        kwargs={'tab': 'options'},
        name='messages-options_tab'),
    url(r'^compose/([\w.@+-]{1,30})/$',
        'compose_to',
        name='messages-compose_to'),
    url(r'^inbox-tab/$',
        'inbox',
        name='messages-inbox'),
    url(r'^outbox-tab/$',
        'outbox',
        name='messages-outbox'),
    url(r'^trash-tab/$',
        'trash',
        name='messages-trash'),
    url(r'^message/$',
        'message',
        name='messages-message'),
    url(r'^options-tab/$',
        'options',
        name='messages-options'),
    url(r'^compose-tab/$',
        'compose',
        name='messages-compose'),
    url(r'^bulk/$',
        'bulk',
        name='messages-bulk'),
)