From 166fc13012c33563b179a2bea5e33d36b0be979c Mon Sep 17 00:00:00 2001 From: Lukasz Anwajler Date: Tue, 13 Jul 2010 03:04:32 -0500 Subject: [PATCH] Minor fix for python2.5. Added css for "poezja_cyt". --- apps/wiki/views.py | 23 ++++++++--------------- lib/vstorage/__init__.py | 4 ++-- redakcja/static/css/master.css | 6 +++++- 3 files changed, 15 insertions(+), 18 deletions(-) diff --git a/apps/wiki/views.py b/apps/wiki/views.py index 2c45e17a..b78959fb 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -96,7 +96,7 @@ def editor_readonly(request, name, template_name='wiki/document_details_readonly try: revision = request.GET['revision'] document = storage.get(name, revision) - except (KeyError, DocumentNotFound) as e: + except (KeyError, DocumentNotFound): raise http.Http404 access_time = datetime.now() @@ -148,23 +148,16 @@ def text(request, name): if request.method == 'POST': form = DocumentTextSaveForm(request.POST, prefix="textsave") - if form.is_valid(): revision = form.cleaned_data['parent_revision'] - - document = storage.get_or_404(name, revision) + document = storage.get_or_404(name, revision) document.text = form.cleaned_data['text'] - comment = form.cleaned_data['comment'] - - if form.cleaned_data['stage_completed']: - comment += '\n#stage-finished: %s\n' % form.cleaned_data['stage_completed'] - - author = "%s <%s>" % (form.cleaned_data['author_name'], form.cleaned_data['author_email']) - - storage.put(document, author=author, comment=comment, parent=revision) - document = storage.get(name) - + if form.cleaned_data['stage_completed']: + comment += '\n#stage-finished: %s\n' % form.cleaned_data['stage_completed'] + author = "%s <%s>" % (form.cleaned_data['author_name'], form.cleaned_data['author_email']) + storage.put(document, author=author, comment=comment, parent=revision) + document = storage.get(name) return JSONResponse({ 'text': document.plain_text if revision != document.revision else None, 'meta': document.meta(), @@ -234,7 +227,7 @@ def gallery(request, directory): images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)] images.sort() return JSONResponse(images) - except (IndexError, OSError) as e: + except (IndexError, OSError): logger.exception("Unable to fetch gallery") raise http.Http404 diff --git a/lib/vstorage/__init__.py b/lib/vstorage/__init__.py index 8d22e10c..843bb6b7 100644 --- a/lib/vstorage/__init__.py +++ b/lib/vstorage/__init__.py @@ -354,11 +354,11 @@ class VersionedStorage(object): try: return tree_search(tip, self._title_to_file(title)) - except (IndexError, LookupError) as e: + except (IndexError, LookupError): logging.info("XML file not found, trying plain") try: return tree_search(tip, self._title_to_file(title, type='')) - except (IndexError, LookupError) as e: + except (IndexError, LookupError): raise DocumentNotFound(title) def page_history(self, title): diff --git a/redakcja/static/css/master.css b/redakcja/static/css/master.css index 8e1d053f..9e0b5614 100644 --- a/redakcja/static/css/master.css +++ b/redakcja/static/css/master.css @@ -236,7 +236,6 @@ img.tabclose { vertical-align: text-bottom; } - /* * HTML Editor view */ @@ -260,3 +259,8 @@ img.tabclose { background-color: black; opacity: 0.4; } + +.poezja_cyt { + margin:1.5em 2em 0; + font-size:0.875em +} -- 2.20.1