# HG changeset patch # User paulb # Date 1124213627 0 # Node ID 2fb6dd043017f7bf79a42943a7d8a1545a85f70b # Parent 3f903c4a3c060f9cbfb18f13619df0c6671d255a [project @ 2005-08-16 17:33:42 by paulb] Changed the version number in preparation for a future release. diff -r 3f903c4a3c06 -r 2fb6dd043017 WebStack/__init__.py --- a/WebStack/__init__.py Tue Aug 16 17:33:38 2005 +0000 +++ b/WebStack/__init__.py Tue Aug 16 17:33:47 2005 +0000 @@ -20,6 +20,6 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA """ -__version__ = "0.10" +__version__ = "1.0" # vim: tabstop=4 expandtab shiftwidth=4 diff -r 3f903c4a3c06 -r 2fb6dd043017 docs/index.html --- a/docs/index.html Tue Aug 16 17:33:38 2005 +0000 +++ b/docs/index.html Tue Aug 16 17:33:47 2005 +0000 @@ -1,11 +1,9 @@ - - - Creating Web Applications with WebStack - - - + + + Creating Web Applications with WebStack + +

Creating Web Applications with WebStack

This introductory guide describes the process of making a Web @@ -13,27 +11,26 @@ 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-0.10 directory.

+unpacked and now sits in the WebStack-1.0 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-0.10 directory and to run the setup.py +WebStack-1.0 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-0.10
python setup.py install
+
cd WebStack-1.0
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-0.10 directory sits on your +that the WebStack-1.0 directory sits on your PYTHONPATH.

Viewing the API Documentation

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

About WebStack Applications

- - + \ No newline at end of file