本文整理汇总了Python中twisted.web.static.File.processors方法的典型用法代码示例。如果您正苦于以下问题:Python File.processors方法的具体用法?Python File.processors怎么用?Python File.processors使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类twisted.web.static.File
的用法示例。
在下文中一共展示了File.processors方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: getChild
# 需要导入模块: from twisted.web.static import File [as 别名]
# 或者: from twisted.web.static.File import processors [as 别名]
def getChild(self, name, request):
versionString = 'phoenix/%s' % self.core.VERSION
request.setHeader('Server', versionString)
if request.method == 'POST' and request.path == '/':
return self
else:
docroot = os.path.join(self.core.basedir, 'www')
root = File(self.core.config.get('web', 'root', str, docroot))
root.processors = {'.rpy': script.ResourceScript}
return root.getChild(name, request)
示例2: run_static
# 需要导入模块: from twisted.web.static import File [as 别名]
# 或者: from twisted.web.static.File import processors [as 别名]
def run_static(host='127.0.0.1', port=8000, path='.', inject=True):
'''
Run static file server, useful for local development, can also automatically
inject bebop.js into index pages.
'''
root = File(os.path.abspath(path))
root_dir = os.path.abspath(os.path.dirname(__file__))
if inject:
root.putChild('_bebop', File(os.path.join(root_dir, '../lib')))
root.indexNames=['index.html','index.htm']
root.processors = {
'.html': BebopIndex,
'.htm': BebopIndex,
}
factory = Site(root)
reactor.listenTCP(port, factory, interface=host)