X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/05f8cc4122caa9cc40e1df6e412b0dcfab7c6d40..4414d3a80488c222a54bc98309075b03cc9e37f3:/project/urls.py?ds=sidebyside diff --git a/project/urls.py b/project/urls.py index e3399662..47a42748 100644 --- a/project/urls.py +++ b/project/urls.py @@ -8,8 +8,14 @@ admin.autodiscover() urlpatterns = patterns('', # Example: - # (r'^platforma/', include('platforma.foo.urls')), - + url(r'^$', 'explorer.views.file_list', name='file_list'), + url(r'^file/(?P[^/]+)/$', 'explorer.views.file_xml', name='file_xml'), + url(r'^html/(?P[^/]+)/$', 'explorer.views.file_html', name='file_html'), + 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'^panels/xmleditor$', 'django.views.generic.simple.direct_to_template', + {'template': 'explorer/panels/xmleditor.html'}, name='xmleditor'), # Admin panel url(r'^admin/doc/', include('django.contrib.admindocs.urls')), url(r'^admin/(.*)', admin.site.root),