view contenttransformer/factory.py @ 6:85f84b928768

correct package name spelling
author k0s <k0scist@gmail.com>
date Sun, 17 Jan 2010 19:53:57 -0500
parents aa491070ccf3
children
line wrap: on
line source

from web import Dispatcher
from paste.httpexceptions import HTTPExceptionHandler

def factory(global_conf, **app_conf):
    """create a webob view and wrap it in middleware"""
    keystr = 'transformer.'
    args = dict([(key.split(keystr, 1)[-1], value)
                 for key, value in app_conf.items()
                 if key.startswith(keystr) ])
    app = Dispatcher(**args)
    return HTTPExceptionHandler(app)