+@ajax_login_required
+@with_repo
+def xmleditor_panel(request, path, repo):
+ form = forms.BookForm()
+ text = repo.get_file(path, models.user_branch(request.user))
+
+ return direct_to_template(request, 'explorer/panels/xmleditor.html', extra_context={
+ 'fpath': path,
+ 'text': text,
+ })
+
+
+@ajax_login_required
+def gallery_panel(request, path):
+ return direct_to_template(request, 'explorer/panels/gallery.html', extra_context={
+ 'fpath': path,
+ 'form': forms.ImageFoldersForm(),
+ })
+
+@ajax_login_required
+@with_repo
+def htmleditor_panel(request, path, repo):
+ user_branch = models.user_branch(request.user)
+ try:
+ return direct_to_template(request, 'explorer/panels/htmleditor.html', extra_context={
+ 'fpath': path,
+ 'html': html.transform(repo.get_file(path, user_branch), is_file=False),
+ })
+ except (ParseError, ValidationError), e:
+ return direct_to_template(request, 'explorer/panels/parse_error.html', extra_context={
+ 'fpath': path, 'exception_type': type(e).__name__, 'exception': e, 'panel_name': 'Edytor HTML'})
+
+@ajax_login_required
+@with_repo
+def dceditor_panel(request, path, repo):
+ user_branch = models.user_branch(request.user)
+
+ try:
+ doc_text = repo.get_file(path, user_branch)
+ document = parser.WLDocument.from_string(doc_text)
+ form = forms.DublinCoreForm(info=document.book_info)
+ return direct_to_template(request, 'explorer/panels/dceditor.html', extra_context={
+ 'fpath': path,
+ 'form': form,
+ })
+ except (ParseError, ValidationError), e:
+ return direct_to_template(request, 'explorer/panels/parse_error.html', extra_context={
+ 'fpath': path, 'exception_type': type(e).__name__, 'exception': e,
+ 'panel_name': 'Edytor DublinCore'})
+
+# =================
+# = Utility views =
+# =================
+@ajax_login_required
+def folder_images(request, folder):
+ return direct_to_template(request, 'explorer/folder_images.html', extra_context={
+ 'images': models.get_images_from_folder(folder),