X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/972635a65c86025f2f8d05217e93f634b7ed067e..22b2835ad2c19802139e21aec067701fc01cb013:/apps/wiki/views.py diff --git a/apps/wiki/views.py b/apps/wiki/views.py index 14817348..f9594261 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -1,6 +1,7 @@ from datetime import datetime import os import logging +import urllib from django.conf import settings from django.core.urlresolvers import reverse @@ -210,7 +211,7 @@ def gallery(request, directory): smart_unicode(directory)) def map_to_url(filename): - return ("%s/%s" % (base_url, smart_unicode(filename))).replace('?', '%3f') + return urllib.quote("%s/%s" % (base_url, smart_unicode(filename))) def is_image(filename): return os.path.splitext(f)[1].lower() in (u'.jpg', u'.jpeg', u'.png') @@ -277,6 +278,9 @@ def history(request, chunk_id): "date": localize(change.created_at), "publishable": _("Publishable") + "\n" if change.publishable else "", "tag": ',\n'.join(unicode(tag) for tag in change.tags.all()), + "published": _("Published") + ": " + \ + localize(change.publish_log.order_by('-book_record__timestamp')[0].book_record.timestamp) \ + if change.publish_log.exists() else "", }) return JSONResponse(changes)