weblib
index
/home/sabren/web/webappworkshop.com/pydoc/lib/weblib/__init__.py

weblib: Classes for easy server-side web scripting in Python.

 
Package Contents
            
Engine
MultiPart
OutputDecorator
Request
Response
Sess
SessPool
__init__
misc (package)
spec (package)
 
Classes
            
exceptions.Exception
Finished
Redirect
 
class Finished(exceptions.Exception)
      Raise this when you're done with your page.
Or call RES.end()
 
   Data and non-method functions defined here:
__doc__ = "\n Raise this when you're done with your page.\n Or call RES.end()\n "
__module__ = 'weblib'

Methods inherited from exceptions.Exception:
__getitem__(...)
__init__(...)
__str__(...)
 
class Redirect(exceptions.Exception)
      Raise this when you want to redirect but don't have access to
a response object. (Eg, for testing without the RES variable,
or just so you don't have to keep passing it down a call stack)
 
   Data and non-method functions defined here:
__doc__ = '\n Raise this when you want to redirect but do...t have to keep passing it down a call stack)\n '
__module__ = 'weblib'

Methods inherited from exceptions.Exception:
__getitem__(...)
__init__(...)
__str__(...)
 
Functions
            
htmlEncode(s)
htmlEncode(s) ->  s with >, <, and & escaped as &gt;, &lt; and &amp;
urlDecode(what)
urlEncode(what)
This works the way ASP's urlEncode does, OR lets you do it
the urllib way (using a dict)
 
Data
             __file__ = '/home/sabren/web/webappworkshop.com/pydoc/lib/weblib/__init__.pyc'
__name__ = 'weblib'
__path__ = ['/home/sabren/web/webappworkshop.com/pydoc/lib/weblib']
__ver__ = '$Id: __init__.py,v 1.30 2003/08/24 10:19:05 sabren Exp $'