comparison montage/formatters.py @ 0:b7348ffe5b46

initial import of montage
author k0s <k0scist@gmail.com>
date Mon, 07 Sep 2009 15:38:38 -0400
parents
children 4b8aa9b0a45b
comparison
equal deleted inserted replaced
-1:000000000000 0:b7348ffe5b46
1 from decoupage.formatters import All
2
3 class Montage(All):
4
5 def __init__(self, arg):
6 # XXX dummy arg
7 self.match = [ "*.jpg", "*.png", ]
8 # XXX should really filter on mimetype
9
10 def __call__(self, request, data):
11 All.__call__(self, request, data)