summaryrefslogtreecommitdiff
path: root/helper.py
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.net>2010-04-07 19:38:37 +0200
committerRené 'Necoro' Neumann <necoro@necoro.net>2010-04-07 19:38:37 +0200
commit0973e4f3616f4e41f15bac9c0aa9e5c8f27939a1 (patch)
treee69cd16dd6b16f3438371ce7e2265b8437aedebd /helper.py
parentc797564725ea320429cd555607b0af10df1ad4e6 (diff)
downloadweb-0973e4f3616f4e41f15bac9c0aa9e5c8f27939a1.tar.gz
web-0973e4f3616f4e41f15bac9c0aa9e5c8f27939a1.tar.bz2
web-0973e4f3616f4e41f15bac9c0aa9e5c8f27939a1.zip
Screenshots
Diffstat (limited to 'helper.py')
-rw-r--r--helper.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/helper.py b/helper.py
index ec7950b..552c526 100644
--- a/helper.py
+++ b/helper.py
@@ -1,5 +1,8 @@
import web
import os
+import Image
+
+opj = os.path.join
APPDIR = os.path.dirname(os.path.abspath(__file__))
def appdir (*args):
@@ -11,3 +14,36 @@ def url (path):
def toJS (ls):
ls = ("'%s':'%s'" % x for x in ls)
return "{ %s }" % ", ".join(ls)
+
+def getImages (path, tmpPath, size):
+ if path[0] != '/': path = '/' + path
+ if tmpPath[0] != '/': tmpPath = '/' + tmpPath
+
+
+ appPath = appdir(path[1:])
+ appTPath = appdir(tmpPath[1:])
+
+ for f in sorted(os.listdir(appPath)):
+ if not f.endswith(".png"): continue
+
+ thumbName = "thumb-" + f
+ imgUrl = url(opj(path, f))
+ thumbUrl = url(opj(tmpPath, thumbName))
+
+ imgPath = opj(appPath, f)
+ thumbPath = opj(appTPath, thumbName)
+
+ if (not os.path.exists(thumbPath)) or \
+ os.stat(imgPath).st_mtime > os.stat(thumbPath).st_mtime:
+ im = Image.open(imgPath)
+ im.thumbnail(size, Image.ANTIALIAS)
+ im.save(thumbPath)
+
+ descName = f + ".desc"
+ desc = None
+
+ if os.path.exists(opj(appPath, descName)):
+ with open(opj(appPath, descName)) as d:
+ desc = d.read().strip()
+
+ yield (imgUrl, thumbUrl, desc)