comparison contenttransformer/factory.py @ 0:29805d442afc

initial commit of contenttransformer; still in the stub stage
author k0s <k0scist@gmail.com>
date Mon, 11 Jan 2010 11:32:24 -0500
parents
children aa491070ccf3
comparison
equal deleted inserted replaced
-1:000000000000 0:29805d442afc
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 = 'typetransformer.'
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