1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-01 07:01:12 +00:00

modified ui of contacts; clean code & rm unused files

This commit is contained in:
llj
2012-05-12 15:52:07 +08:00
parent be5954a669
commit ea45a6c999
11 changed files with 41 additions and 285 deletions

View File

@@ -27,6 +27,7 @@ urlpatterns = patterns('',
(r'^accounts/', include('base.registration_urls')),
(r'^$', root),
#url(r'^home/$', direct_to_template, { 'template': 'home.html' } ),
url(r'^home/my/$', myhome, name='myhome'),
url(r'^home/owner/(?P<owner_name>[^/]+)/$', ownerhome, name='ownerhome'),
@@ -34,7 +35,6 @@ urlpatterns = patterns('',
url(r'^shareadmin/addshare/$', repo_add_share, name='repo_add_share'),
(r'^shareadmin/removeshare/$', repo_remove_share),
(r'^download/$', direct_to_template, { 'template': 'download.html' } ),
(r'^repo/(?P<repo_id>[^/]+)/$', repo),
(r'^repo/history/(?P<repo_id>[^/]+)/$', repo_history),
(r'^repo/token/modify/(?P<repo_id>[^/]+)/$', modify_token),