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

Move file edit from views/__init__.py to views/file.py

This commit is contained in:
zhengxie
2013-03-28 14:17:28 +08:00
parent 9e40a98d4e
commit 56c779b3b3
3 changed files with 155 additions and 385 deletions

View File

@@ -4,7 +4,7 @@ from django.views.generic.simple import direct_to_template
from seahub.views import *
from seahub.views.file import view_file, view_history_file, view_trash_file,\
view_snapshot_file
view_snapshot_file, file_edit
from seahub.search import search
from notifications.views import notification_list
from group.views import group_list
@@ -131,4 +131,4 @@ else:
if getattr(settings, 'ENABLE_FILE_SEARCH', False):
urlpatterns += patterns('',
url(r'^search/$', search, name='search'),
)
)