X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/f7f454a73b0baed62f216d564669244f08a3fd02..8132fc186eb0c5fd02c86828c3a4735754296d02:/apps/wiki/views.py diff --git a/apps/wiki/views.py b/apps/wiki/views.py index fcbdf8bf..e1ef6aed 100644 --- a/apps/wiki/views.py +++ b/apps/wiki/views.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- from datetime import datetime import os import logging @@ -212,17 +213,17 @@ def gallery(request, directory): smart_unicode(directory)) def map_to_url(filename): - return urllib.quote("%s/%s" % (base_url, smart_unicode(filename))) + return urllib.quote(("%s/%s" % (base_url, smart_unicode(filename))).encode('utf-8')) def is_image(filename): - return os.path.splitext(f)[1].lower() in (u'.jpg', u'.jpeg', u'.png') + return os.path.splitext(filename)[1].lower() in (u'.jpg', u'.jpeg', u'.png') images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)] images.sort() - book = Book.objects.get(gallery=directory) + books = Book.objects.filter(gallery=directory) - if not book.public and not request.user.is_authenticated(): + if not all(book.public for book in books) and not request.user.is_authenticated(): return HttpResponseForbidden("Not authorized.") return JSONResponse(images)