From: Radek Czajka Date: Thu, 5 Aug 2010 08:07:16 +0000 (+0200) Subject: fix author name/email in commit X-Git-Url: https://git.mdrn.pl/redakcja.git/commitdiff_plain/c931affe5b2e863ad2752a51f8b27d45d5dbb98b fix author name/email in commit --- diff --git a/apps/wiki/views.py b/apps/wiki/views.py index 48e05c5c..b57347c2 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -157,7 +157,13 @@ def text(request, name): 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']) + if request.user.is_authenticated(): + author_name = request.user + author_email = request.user.email + else: + author_name = form.cleaned_data['author_name'] + author_email = form.cleaned_data['author_email'] + author = "%s <%s>" % (author_name, author_email) storage.put(document, author=author, comment=comment, parent=revision) document = storage.get(name) return JSONResponse({