fnp
/
redakcja.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
|
inline
| side by side (parent:
b171203
)
fix unicode handling
author
Jan Szejko
<janek37@gmail.com>
Tue, 8 May 2018 15:48:22 +0000
(17:48 +0200)
committer
Jan Szejko
<janek37@gmail.com>
Tue, 8 May 2018 15:48:22 +0000
(17:48 +0200)
apps/wiki/views.py
patch
|
blob
|
history
diff --git
a/apps/wiki/views.py
b/apps/wiki/views.py
index
f8ba46e
..
e1ef6ae
100644
(file)
--- 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
from datetime import datetime
import os
import logging
@@
-212,10
+213,10
@@
def gallery(request, directory):
smart_unicode(directory))
def map_to_url(filename):
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):
def is_image(filename):
- return os.path.splitext(f)[1].lower() in (u'.jpg', u'.jpeg', u'.png')
+ return os.path.splitext(f
ilename
)[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()
images = [map_to_url(f) for f in map(smart_unicode, os.listdir(base_dir)) if is_image(f)]
images.sort()