fix typo
[mygpo.git] / mygpo / urls.py
blob99c4ceba8d4cadff17a70a975b16de7c78440c19
2 # This file is part of my.gpodder.org.
4 # my.gpodder.org is free software: you can redistribute it and/or modify it
5 # under the terms of the GNU Affero General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or (at your
7 # option) any later version.
9 # my.gpodder.org is distributed in the hope that it will be useful, but
10 # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
11 # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public
12 # License for more details.
14 # You should have received a copy of the GNU Affero General Public License
15 # along with my.gpodder.org. If not, see <http://www.gnu.org/licenses/>.
18 import os.path
19 from django.conf.urls import *
20 from django.conf import settings
22 # strip the leading "/"
23 static_prefix = settings.STATIC_URL[1:]
25 # This URLs should be always be served, even during maintenance mode
26 urlpatterns = patterns('',
27 (r'^%s(?P<path>.*)$' % static_prefix, 'django.contrib.staticfiles.views.serve')
31 # Check for maintenace mode
32 from django.conf import settings
33 if settings.MAINTENANCE:
34 urlpatterns += patterns('mygpo.web.utils',
35 (r'', 'maintenance'),
39 # URLs are still registered during maintenace mode because we need to
40 # build links from them (eg login-link).
41 urlpatterns += patterns('',
42 (r'^', include('mygpo.web.urls')),
43 (r'^', include('mygpo.directory.urls')),
44 (r'^', include('mygpo.api.urls')),
45 (r'^', include('mygpo.userfeeds.urls')),
46 (r'^', include('mygpo.share.urls')),
47 (r'^accounts/', include('django_couchdb_utils.registration.backends.default.urls')),
48 (r'^publisher/', include('mygpo.publisher.urls')),
49 (r'^admin/', include('mygpo.admin.urls')),
50 (r'^pubsub/', include('mygpo.pubsub.urls')),