# HG changeset patch # User paulb # Date 1101862544 0 # Node ID fad57ea5fe05941ef38c0ddc63ffd278fa4b7be7 # Parent e35a0e4a74789a95834d861bbe59ee1c211f1960 [project @ 2004-12-01 00:55:44 by paulb] Added WSGI support notes. Reformatted some text. diff -r e35a0e4a7478 -r fad57ea5fe05 README.txt --- a/README.txt Tue Nov 30 23:28:02 2004 +0000 +++ b/README.txt Wed Dec 01 00:55:44 2004 +0000 @@ -1,23 +1,23 @@ Introduction ------------ -WebStack is a package which provides a common API for Python Web applications, -regardless of the underlying server or framework environment. It should be -possible with WebStack to design and implement an application, to choose a -deployment environment, and then to be able to deploy the application in a -different environment later on without having to go back and rewrite -substantial parts of the application. +WebStack is a package which provides a common API for Python Web +applications, regardless of the underlying server or framework environment. +It should be possible with WebStack to design and implement an application, +to choose a deployment environment, and then to be able to deploy the +application in a different environment later on without having to go back +and rewrite substantial parts of the application. Framework Support ----------------- Currently, BaseHTTPRequestHandler (via BaseHTTPServer in the standard -library), CGI, Jython/Java Servlet API, mod_python, Twisted, Webware and Zope -2 are supported. Each framework has its own set of strengths and weaknesses, -but the idea is that deployment concerns can be considered separately from the -implementation of application functionality. Consult the NOTES.txt files in -each framework's subdirectory of the docs directory for some notes on how -applications may be run in each environment. +library), CGI, Jython/Java Servlet API, mod_python, Twisted, Webware, WSGI +and Zope 2 are supported. Each framework has its own set of strengths and +weaknesses, but the idea is that deployment concerns can be considered +separately from the implementation of application functionality. Consult the +NOTES.txt files in each framework's subdirectory of the docs directory for +some notes on how applications may be run in each environment. Tested Frameworks Release Information ----------------- ------------------- @@ -28,6 +28,7 @@ mod_python 3.0.3 (3.1.3 for framework cookie and session support) Twisted 1.0.5 Webware 0.8.1, CVS (2004-02-06) +WSGI PEP 333 (wsgiServer from WSGI Utils 0.2) Zope 2.7.2-0 New in WebStack 0.8 (Changes since WebStack 0.7) @@ -38,6 +39,7 @@ need to issue a redirect without unnecessary content being generated, for example. Fixed path information for Zope. +Added WSGI support. New in WebStack 0.7 (Changes since WebStack 0.6) ------------------------------------------------