comparison uploader/factory.py @ 0:827f7577f940

initial commit of file upload widget
author k0s <k0scist@gmail.com>
date Sat, 21 Nov 2009 15:29:03 -0500
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:827f7577f940
1 from dispatcher import Dispatcher
2 from paste.httpexceptions import HTTPExceptionHandler
3
4 def factory(global_conf, **app_conf):
5 """create a webob view and wrap it in middleware"""
6 keystr = 'uploader.'
7 args = dict([(key.split(keystr, 1)[-1], value)
8 for key, value in app_conf.items()
9 if key.startswith(keystr) ])
10 app = Dispatcher(**args)
11 return HTTPExceptionHandler(app)
12