Heh, I just made this info.wsgi up yesterday:

def application(env, respond):
    respond('200 OK', [('Content-Type', 'text/plain')])
    for k, v in sorted(env.iteritems()):
        yield '%s: %r\n' % (k, v)

I've wanted this before, and since I always used to keep an info.php
lying around, as well, I wrote this.

Of course this is really very basic output: http://xavamedia.nl/info/

Still kind of useful, to me at least.

Cheers,

Dirkjan

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"modwsgi" group.
To post to this group, send email to modwsgi@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/modwsgi?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to