X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/953ea32f89c36d8ee0f38c5d093fea371e635b90..eb61c7e9637a2744b4ffa748317f2b72bd16a27d:/project/urls.py diff --git a/project/urls.py b/project/urls.py index a77169d8..c38f3f6c 100644 --- a/project/urls.py +++ b/project/urls.py @@ -10,29 +10,25 @@ PATH_END = PATH_SEC + "/$" urlpatterns = patterns('', # Explorer: - url(r'^$', 'explorer.views.file_list', name='file_list'), - - url(r'^file/'+PATH_SEC+'/text/$', 'explorer.views.file_xml', name='file_xml'), - url(r'^file/'+PATH_SEC+'/dc/$', 'explorer.views.file_dc', name='file_dc'), + url(r'^$', 'explorer.views.file_list', name='file_list'), url(r'^file/upload', 'explorer.views.file_upload', name='file_upload'), - url(r'^file/'+PATH_SEC+'/commit$', 'explorer.views.file_commit', name='file_commit'), - url(r'^file/'+PATH_SEC+'/update$', 'explorer.views.file_update_local', name='file_update'), - - url(r'^images/(?P[^/]+)/$', 'explorer.views.folder_images', name='folder_image'), - url(r'^images/$', 'explorer.views.folder_images', {'folder': '.'}, name='folder_image_ajax'), + +# url(r'^images/(?P[^/]+)/$', 'explorer.views.folder_images', name='folder_image'), +# url(r'^images/$', 'explorer.views.folder_images', {'folder': '.'}, name='folder_image_ajax'), # Editor panels - url(r'^editor/'+PATH_SEC+'/panel/(?P[a-z]+)/$', 'explorer.views.panel_view', name='panel_view'), + # url(r'^editor/'+PATH_SEC+'/panel/(?P[a-z]+)/$', 'explorer.views.panel_view', name='panel_view'), url(r'^editor/'+PATH_END, 'explorer.views.display_editor', name='editor_view'), url(r'^editor/$', 'explorer.views.file_list', name='editor_base'), - url(r'^editor/'+PATH_SEC+'/split$', 'explorer.views.split_text'), - url(r'^editor/'+PATH_SEC+'/split-success', - 'explorer.views.split_success', name='split-success'), + # url(r'^editor/'+PATH_SEC+'/split$', 'explorer.views.split_text'), + # url(r'^editor/'+PATH_SEC+'/split-success', + # 'explorer.views.split_success', name='split-success'), - url(r'^editor/'+PATH_SEC+'/print/html$', 'explorer.views.print_html'), - url(r'^editor/'+PATH_SEC+'/print/xml$', 'explorer.views.print_xml'), - + # url(r'^editor/'+PATH_SEC+'/print/html$', 'explorer.views.print_html'), + # url(r'^editor/'+PATH_SEC+'/print/xml$', 'explorer.views.print_xml'), + + url(r'^file/(?P[^/]+)/print$', 'explorer.views.print_html', name="file_print"), # Task managment # url(r'^manager/pull-requests$', 'explorer.views.pull_requests'),