]> git.ozlabs.org Git - patchwork/blob - apps/urls.py
3894708af605363d875a22f6ed70dbeb426e7c8b
[patchwork] / apps / urls.py
1 # Patchwork - automated patch tracking system
2 # Copyright (C) 2008 Jeremy Kerr <jk@ozlabs.org>
3 #
4 # This file is part of the Patchwork package.
5 #
6 # Patchwork is free software; you can redistribute it and/or modify
7 # it under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 2 of the License, or
9 # (at your option) any later version.
10 #
11 # Patchwork is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with Patchwork; if not, write to the Free Software
18 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19
20 import os
21
22 from django.conf.urls.defaults import *
23 from django.conf import settings
24 from django.contrib import admin
25
26 from registration.views import register
27 from patchwork.forms import RegistrationForm
28
29 admin.autodiscover()
30
31 htdocs = os.path.join(settings.ROOT_DIR, 'htdocs')
32
33 urlpatterns = patterns('',
34     # Example:
35     (r'^', include('patchwork.urls')),
36
37     # override the default registration form
38     url(r'^accounts/register/$',
39         register, {'form_class': RegistrationForm},
40         name='registration_register'),
41
42     (r'^accounts/', include('registration.urls')),
43
44     # Uncomment this for admin:
45      (r'^admin/', include(admin.site.urls)),
46
47      (r'^css/(?P<path>.*)$', 'django.views.static.serve',
48         {'document_root': os.path.join(htdocs, 'css')}),
49      (r'^js/(?P<path>.*)$', 'django.views.static.serve',
50         {'document_root': os.path.join(htdocs, 'js')}),
51      (r'^images/(?P<path>.*)$', 'django.views.static.serve',
52         {'document_root': os.path.join(htdocs, 'images')}),
53 )
54