# mailman-bundler/mailman_web/urls.py # Changes are converting url patterns to a list for Django 1.9 and # removing '{"SSL": True\} from a couple of URLs as it caused problems. from django.conf.urls import include, url from django.core.urlresolvers import reverse_lazy from django.views.generic import RedirectView # Comment the next two lines to disable the admin: from django.contrib import admin admin.autodiscover() urlpatterns = [url(r'^$', RedirectView.as_view(url=reverse_lazy('hk_root'))), url(r'^mailman3/', include('postorius.urls')), url(r'^archives/', include('hyperkitty.urls')), url(r'', include('social.apps.django_app.urls', namespace='social')), url(r'', include('django_browserid.urls')), ]