Skip to content

Commit

Permalink
check web.py 0.34 into our repo, to make RHEL6 deployment easier.
Browse files Browse the repository at this point in the history
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
Show file tree
Hide file tree
Showing 19 changed files with 9,175 additions and 0 deletions.
34 changes: 34 additions & 0 deletions thirdparty/web/__init__.py
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

Loading

0 comments on commit 23100bf

Please sign in to comment.