From 85ae208c067a898b80675c12e133968062737d72 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C5=81ukasz=20Rekucki?= Date: Wed, 2 Sep 2009 11:33:42 +0200 Subject: [PATCH 1/1] =?utf8?q?Dodanie=20panelu=20wy=C5=9Btwietlaj=C4=85ceg?= =?utf8?q?o=20b=C5=82=C4=99dy,=20gdy=20nie=20mo=C5=BCna=20wczyta=C4=87.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- apps/explorer/views.py | 54 ++++++++++++------- .../explorer/panels/parse_error.html | 14 +++++ 2 files changed, 50 insertions(+), 18 deletions(-) create mode 100644 project/templates/explorer/panels/parse_error.html diff --git a/apps/explorer/views.py b/apps/explorer/views.py index f0f45700..3ab7e670 100644 --- a/apps/explorer/views.py +++ b/apps/explorer/views.py @@ -120,9 +120,10 @@ def file_xml(request, repo, path): @ajax_login_required @with_repo def file_dc(request, path, repo): + errors = None + if request.method == 'POST': form = forms.DublinCoreForm(request.POST) - errors = None if form.is_valid(): def save_action(): @@ -150,9 +151,18 @@ def file_dc(request, path, repo): return HttpResponse( json.dumps({'result': errors and 'error' or 'ok', 'errors': errors}) ); - fulltext = repo.get_file(path, models.user_branch(request.user)) - form = forms.DublinCoreForm(text=fulltext) - return HttpResponse( json.dumps({'result': 'ok', 'content': fulltext}) ) + # this is unused currently, but may come in handy + content = [] + + try: + fulltext = repo.get_file(path, models.user_branch(request.user)) + bookinfo = dcparser.BookInfo.from_string(fulltext) + content = bookinfo.to_dict() + except (ParseError, ValidationError), e: + errors = [e.message] + + return HttpResponse( json.dumps({'result': errors and 'error' or 'ok', + 'errors': errors, 'content': content }) ) # Display the main editor view @@ -189,26 +199,34 @@ def gallery_panel(request, path): @with_repo def htmleditor_panel(request, path, repo): user_branch = models.user_branch(request.user) - 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), - }) - + 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) - 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, - }) + 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 = diff --git a/project/templates/explorer/panels/parse_error.html b/project/templates/explorer/panels/parse_error.html new file mode 100644 index 00000000..ac28fcb9 --- /dev/null +++ b/project/templates/explorer/panels/parse_error.html @@ -0,0 +1,14 @@ +

Podczas otwierania panelu "{{ panel_name }}" wystąpił przetwarzania pliku źródłowego:

+

{{ exception_type }}

+

{{ exception.message }}

+ + -- 2.20.1