当前位置: 首页>>代码示例>>Python>>正文


Python File.processors方法代码示例

本文整理汇总了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)
开发者ID:BlackhatEspeed,项目名称:phoenix,代码行数:12,代码来源:PhoenixRPC.py

示例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)
开发者ID:gilligan,项目名称:bebop,代码行数:18,代码来源:static.py


注:本文中的twisted.web.static.File.processors方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。