bundled/webpy/web/__init__.py @ ac324e064f82
Don't give away the repo filesystem path in the web UI footer. Now that we have a read-only mode people might want to expose the web UI to the world. We shouldn't display sensitive data on the pages any more.
| author | Steve Losh <steve@stevelosh.com> |
|---|---|
| date | Sat, 27 Mar 2010 12:11:12 -0400 |
| parents | 7c9d165e0cd1 |
| children | (none) |
#!/usr/bin/env python """web.py: makes web apps (http://webpy.org)""" from __future__ import generators __version__ = "0.32" __author__ = [ "Aaron Swartz <me@aaronsw.com>", "Anand Chitipothu <anandology@gmail.com>" ] __license__ = "public domain" __contributors__ = "see http://webpy.org/changes" import utils, db, net, wsgi, http, webapi, httpserver, debugerror import template, form import session from utils import * from db import * from net import * from wsgi import * from http import * from webapi import * from httpserver import * from debugerror import * from application import * from browser import * import test try: import webopenid as openid except ImportError: pass # requires openid module