# HG changeset patch # User paulb # Date 1094407178 0 # Node ID 3f1180831cf8363c36ab37061c1dfdb185d1d6c1 # Parent 5cf9e5c2e55ed8a5fe233e53060dafdc7d25b2f9 [project @ 2004-09-05 17:59:36 by paulb] Added notes about PyServlet classes. diff -r 5cf9e5c2e55e -r 3f1180831cf8 README.txt --- a/README.txt Sun Sep 05 17:49:40 2004 +0000 +++ b/README.txt Sun Sep 05 17:59:38 2004 +0000 @@ -41,7 +41,10 @@ Fixed field/parameter retrieval so that path and body fields are distinct, regardless of the framework employed. Introduced Zope 2 support. +Improved Jython/Java Servlet API support (although a special PyServlet class +must now be used, and certain libraries must be deployed with applications). Session support has been added. +Alternative cookie support for mod_python has been added. New in WebStack 0.6 (Changes Since WebStack 0.5) ------------------------------------------------ @@ -106,4 +109,5 @@ Update the WebStack/__init__.py __version__ attribute. Update the release notes (see above). Check the setup.py file and ensure that all package directories are mentioned. +Generate the PyServlet classes. Tag, export, archive, upload. diff -r 5cf9e5c2e55e -r 3f1180831cf8 tools/JavaServlet/NOTES.txt --- a/tools/JavaServlet/NOTES.txt Sun Sep 05 17:49:40 2004 +0000 +++ b/tools/JavaServlet/NOTES.txt Sun Sep 05 17:59:38 2004 +0000 @@ -2,3 +2,7 @@ CLASSPATH=$CATALINA_HOME/common/lib/servlet.jar:$JYTHON_HOME/jython.jar \ javac classes/uk/org/boddie/webstack/util/PyServlet.java + +Any supplied classes will have been produced by compiling the given source code +against libraries provided with the stated tested framework (see the main +README.txt document for details).