Mercurial > public > sg101
view gpp/messages/urls.py @ 507:8631d32e6b16
Some users are still having problems with the pop-up login. I think they are actually getting 403s because of the CSRF protection. So I have modified the base template to always have a javascript variable called csrf_token available when they aren't logged in. The ajax_login.js script was then modified to send this value with the ajax post. Fingers crossed.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Sun, 04 Dec 2011 03:05:21 +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'), )