forked from mozilla-services/socorro
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
check web.py 0.34 into our repo, to make RHEL6 deployment easier.
git-svn-id: https://socorro.googlecode.com/svn/trunk@2821 efcc4bdc-162a-0410-a8af-5b4b46c5376d
- Loading branch information
rhelmer
committed
Dec 10, 2010
1 parent
a0c0d18
commit 23100bf
Showing
19 changed files
with
9,175 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
#!/usr/bin/env python | ||
"""web.py: makes web apps (http://webpy.org)""" | ||
|
||
from __future__ import generators | ||
|
||
__version__ = "0.34" | ||
__author__ = [ | ||
"Aaron Swartz <[email protected]>", | ||
"Anand Chitipothu <[email protected]>" | ||
] | ||
__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 | ||
|
Oops, something went wrong.