-1

mod_python有一个测试页面脚本,它发出有关服务器配置的信息。你可以把

SetHandler mod_python
PythonHandler mod_python.testhandler

进入你的.htaccess,它会显示页面。

现在我的问题是:是否mod_wsgi也存在类似的东西?

4

2 回答 2

1

不,您可以通过迭代 environ 的键来创建一些有用的东西,但是:

def application(env, respond):
    respond('200 OK', [('Content-Type', 'text/plain')])
    return ['\n'.join('%s: %s' % (k, v) for (k, v) in env.iteritems())]
于 2013-02-25T10:50:38.057 回答
0

我现在在这里整理了一个类似测试页的东西。为了您的方便,我将在这里与您分享:

def tag(t, **k):
    kk = ''.join(' %s=%r' % kv for kv in k.items())
    format = '<%s%s>%%s</%s>' % (t, kk, t)
    return lambda content: format % content

def table(d):
    from cgi import escape
    escq = lambda s: escape(s, quote=True)
    tr = tag('tr')
    th = tag('th')
    td_code = lambda content: tag('td')(tag('code')(content))
    return tag('table', border='1')(''.join((
        '\n\t' + tr(th('Key') + th('Value') + th('Repr')) + '\n',
        ''.join(('\t' + tr(td_code('%s') + td_code('%s') + td_code('%s')) + '\n') % (k, escq(str(v)), escq(repr(v))) for k, v in sorted(d.items())),
    ))) + '\n'

def application(environ, start_response):
    import os
    l = []
    from wsgiref.headers import Headers
    h = Headers(l)
    h.add_header('Content-Type', 'text/html')
    start_response('200 OK', l)
    yield '<html><head><title>my mod_wsgi test page</title></head><body>\n'
#    yield '<h3>General information</h3>\n'
#    yield table({})
    yield '<h3>Process info</h3>\n'
    yield table(dict(
        wd=os.getcwd(),
        pid=os.getpid(),
        ppid=os.getppid(),
        uid=os.getuid(),
        gid=os.getgid(),
    ))
    yield '<h3>Environment</h3>\n'
    yield table(environ)
于 2013-02-25T20:09:06.837 回答