# HG changeset patch # User paulb # Date 1181945768 0 # Node ID 106a968f877c34f9991c72591ae6842d830070dc # Parent 1012941f7bc550f4f61f0851184e7d10242f2ce6 [project @ 2007-06-15 22:16:05 by paulb] Updated release information. diff -r 1012941f7bc5 -r 106a968f877c PKG-INFO --- a/PKG-INFO Fri Jun 15 22:14:27 2007 +0000 +++ b/PKG-INFO Fri Jun 15 22:16:08 2007 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: WebStack -Version: 1.2.3 +Version: 1.2.4 Author: Paul Boddie Author-email: paul at boddie org uk Maintainer: Paul Boddie Maintainer-email: paul at boddie org uk Home-page: http://www.boddie.org.uk/python/WebStack.html -Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.2.3.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.2.4.tar.gz Summary: Common API for Python Web applications License: LGPL Description: WebStack is a package which provides a common API for Python Web applications diff -r 1012941f7bc5 -r 106a968f877c WebStack/__init__.py --- a/WebStack/__init__.py Fri Jun 15 22:14:27 2007 +0000 +++ b/WebStack/__init__.py Fri Jun 15 22:16:08 2007 +0000 @@ -20,6 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -__version__ = "1.2.3" +__version__ = "1.2.4" # vim: tabstop=4 expandtab shiftwidth=4 diff -r 1012941f7bc5 -r 106a968f877c docs/index.html --- a/docs/index.html Fri Jun 15 22:14:27 2007 +0000 +++ b/docs/index.html Fri Jun 15 22:16:08 2007 +0000 @@ -10,19 +10,19 @@ using the WebStack framework.

Setting Up

First of all, let us assume that the WebStack distribution has been -unpacked and now sits in the WebStack-1.2.3 directory.

+unpacked and now sits in the WebStack-1.2.4 directory.

Before we begin, we must make sure that the WebStack package is available to Python. The easiest way to do this is to change into the -WebStack-1.2.3 directory and to run the setup.py +WebStack-1.2.4 directory and to run the setup.py script provided with the version of Python you are going to be using (possibly as a privileged user like root):

-
cd WebStack-1.2.3
python setup.py install
+
cd WebStack-1.2.4
python setup.py install

If you don't want to install WebStack in this way, or if you can't do so because you don't have root privileges, you can just make sure -that the WebStack-1.2.3 directory sits on your +that the WebStack-1.2.4 directory sits on your PYTHONPATH.

Supported Frameworks

With the help of Python's built-in standard library, WebStack can run without any additional software, but @@ -30,7 +30,7 @@ run WebStack applications in other environments.

Viewing the API Documentation

The API documentation for use in conjunction with this guide can be found inside the apidocs -directory within the WebStack-1.2.3 directory. Of course, +directory within the WebStack-1.2.4 directory. Of course, it is always possible to view WebStack's API documentation within Python by importing modules (such as WebStack.Generic) and using Python's built-in help function.