- url(r'^editor/(?P<path>[^/]+)/panels/xmleditor$', 'explorer.views.xmleditor_panel', name='xmleditor_panel'),
- url(r'^editor/(?P<path>[^/]+)/panels/gallery$', 'explorer.views.gallery_panel', name='gallery_panel'),
+ url(r'^editor/'+PATH_SEC+'/panel/(?P<name>[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+'/print/html$', 'explorer.views.print_html'),
+ url(r'^editor/'+PATH_SEC+'/print/xml$', 'explorer.views.print_xml'),