Attachment 'lm3o_urls.txt'
Download 1 # mailman-bundler/mailman_web/urls.py
2
3 # Changes are converting url patterns to a list for Django 1.9 and
4 # removing '{"SSL": True\} from a couple of URLs as it caused problems.
5
6 from django.conf.urls import include, url
7 from django.core.urlresolvers import reverse_lazy
8 from django.views.generic import RedirectView
9
10 # Comment the next two lines to disable the admin:
11 from django.contrib import admin
12 admin.autodiscover()
13
14 urlpatterns = [url(r'^$', RedirectView.as_view(url=reverse_lazy('hk_root'))),
15 url(r'^mailman3/', include('postorius.urls')),
16 url(r'^archives/', include('hyperkitty.urls')),
17 url(r'', include('social.apps.django_app.urls', namespace='social')),
18 url(r'', include('django_browserid.urls')),
19 ]
Attached Files
To refer to attachments on a page, use attachment:filename, as shown below in the list of files. Do NOT use the URL of the [get] link, since this is subject to change and can break easily.You are not allowed to attach a file to this page.