1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-06-20 12:22:24 +00:00
seahub/urls.py

41 lines
1.2 KiB
Python
Raw Normal View History

2011-03-19 05:15:02 +00:00
from django.conf.urls.defaults import *
from django.conf import settings
2011-08-16 13:05:42 +00:00
from seahub.views import root, home, peers, groups, myhome, myfiles, \
repos, repo
2011-03-19 05:15:02 +00:00
# Uncomment the next two lines to enable the admin:
from django.contrib import admin
admin.autodiscover()
2011-03-19 05:15:02 +00:00
urlpatterns = patterns('',
# Example:
# (r'^seahub/', include('seahub.foo.urls')),
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
(r'^admin/', include(admin.site.urls)),
(r'^accounts/', include('registration.backends.default.urls')),
2011-03-19 05:15:02 +00:00
(r'^$', root),
(r'^home/$', home),
(r'^home/my/$', myhome),
2011-03-19 14:06:58 +00:00
(r'^peers/$', peers),
2011-03-20 13:47:28 +00:00
(r'^groups/$', groups),
2011-08-16 13:05:42 +00:00
(r'^repos/$', repos),
(r'^repo/(?P<repo_id>[^/]+)/', repo),
2011-05-08 07:19:58 +00:00
(r'^files/my/$', myfiles),
(r'^avatar/', include('avatar.urls')),
(r'^profile/', include('seahub.profile.urls')),
2011-03-19 05:15:02 +00:00
)
if settings.DEBUG:
media_url = settings.MEDIA_URL.strip('/')
urlpatterns += patterns('',
(r'^%s/(?P<path>.*)$' % (media_url), 'django.views.static.serve', {'document_root': settings.MEDIA_ROOT}),
)