X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/de4a58ffa2b1268afa1764b8c54a82d96a7875f6..f18572dbe8b4b604a63cb58170f7755ec9793842:/platforma/urls.py diff --git a/platforma/urls.py b/platforma/urls.py old mode 100644 new mode 100755 index 5ff1b6af..a5667bb7 --- a/platforma/urls.py +++ b/platforma/urls.py @@ -11,11 +11,10 @@ PATH_END = PATH_SEC + "/$" urlpatterns = patterns('', # Explorer: url(r'^$', 'explorer.views.file_list', name='file_list'), - url(r'^file/upload', 'explorer.views.file_upload', name='file_upload'), + url(r'^file/upload', 'explorer.views.file_upload', name='file_upload'), - - url(r'^managment/pull-requests$', 'explorer.views.pull_requests'), - + url(r'^management/pull-requests$', 'explorer.views.pull_requests'), + # Editor panels url(r'^editor/'+PATH_END, 'explorer.views.display_editor', name='editor_view'), url(r'^editor/$', 'explorer.views.file_list', name='editor_base'), @@ -23,11 +22,25 @@ urlpatterns = patterns('', url(r'^file/(?P[^/]+)/print$', 'explorer.views.print_html', name="file_print"), # Admin panel + (r'^admin/filebrowser/', include('filebrowser.urls')), url(r'^admin/doc/', include('django.contrib.admindocs.urls')), url(r'^admin/(.*)', admin.site.root), + # Theme database + url(r'themes/', include('bookthemes.urls')), + # Our über-restful api - url(r'^api/', include('api.urls')), + # url(r'^api/', include('api.urls')), + + url(r'^gallery/(?P[^/]+)$', 'explorer.views.document_gallery'), + + # Static files (should be served by Apache) + url(r'^%s(?P.+)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', + {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), + url(r'^%s(?P.+)$' % settings.STATIC_URL[1:], 'django.views.static.serve', + {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), + + url(r'^(?P(.*))$', 'wiki.views.document_detail'), ) @@ -43,13 +56,3 @@ else: url(r'^accounts/login/$', 'django.contrib.auth.views.login', {'redirect_field_name': 'next'}, name='login'), url(r'^accounts/logout/$', 'django.contrib.auth.views.logout', {'next_page': '/'}, name='logout'), ) - -# Static files -if settings.DEBUG and not hasattr(settings, 'DONT_SERVE_STATIC'): - urlpatterns += patterns('', - url(r'^%s(?P.+)$' % settings.MEDIA_URL[1:], 'django.views.static.serve', - {'document_root': settings.MEDIA_ROOT, 'show_indexes': True}), - url(r'^%s(?P.+)$' % settings.STATIC_URL[1:], 'django.views.static.serve', - {'document_root': settings.STATIC_ROOT, 'show_indexes': True}), - ) -# \ No newline at end of file