Mercurial > public > madeira
view email_list/urls.py @ 130:3062c547bb90
For Django 1.6: new test discovery plus reverse now does urlquote().
My base64 keys were padded with '=' and these got quoted when doing
a reverse to generate the URL. So changed the test to look for a
quoted version of the key. This will change the URLs sent to users, but
I believe it will all be taken care of by Django.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 24 Dec 2013 16:47:27 -0600 |
parents | e2868ad47a1e |
children | 312f198e8958 |
line wrap: on
line source
""" Urls for the email_list application. """ from django.conf.urls import patterns, url from django.views.generic import TemplateView urlpatterns = patterns('email_list.views', url(r'^$', 'mailing_list', name='email_list-main'), url(r'^confirm/(?P<key>[-a-zA-Z0-9_=]{28})/$', 'confirm', name='email_list-confirm'), url(r'^request/subscribe/$', TemplateView.as_view(template_name='email_list/subscribe_request.html'), name='email_list-request_subscribe'), url(r'^request/unsubscribe/$', TemplateView.as_view(template_name='email_list/unsubscribe_request.html'), name='email_list-request_unsubscribe'), url(r'^subscribed/$', TemplateView.as_view(template_name='email_list/subscribed.html'), name='email_list-subscribed'), url(r'^unsubscribed/$', TemplateView.as_view(template_name='email_list/unsubscribed.html'), name='email_list-unsubscribed'), )