コード例 #1
0
 def __init__(self, ctx):
     # Convert paths and ids to utf-8, otherwise werkzeug will break
     self.exports = dict(imap(
         lambda x: (x[0].encode('utf-8'), x[1].encode('utf-8')),
         self.exports.items()))
     IMiddleware.__init__(self, ctx)
     SharedDataMiddleware.__init__(self, self.application, self.exports)
コード例 #2
0
ファイル: debug.py プロジェクト: EnTeQuAk/inyoka-legacy
 def __init__(self, ctx):
     IMiddleware.__init__(self, ctx)
     self.enabled = ctx.cfg['debug']
コード例 #3
0
 def __init__(self, ctx):
     IMiddleware.__init__(self, ctx)
     self.enabled = ctx.cfg['debug']