# HG changeset patch # User paulb # Date 1136905799 0 # Node ID 03d62480009db86ef45f0789913a29da7c6b1fbf # Parent cfeccc25a4b5bc2ceb97255e457e5c03e328d215 [project @ 2006-01-10 15:09:52 by paulb] Updated release information. diff -r cfeccc25a4b5 -r 03d62480009d PKG-INFO --- a/PKG-INFO Tue Jan 10 15:06:21 2006 +0000 +++ b/PKG-INFO Tue Jan 10 15:09:59 2006 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: WebStack -Version: 1.1.1 +Version: 1.1.2 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.1.1.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.1.2.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 cfeccc25a4b5 -r 03d62480009d README.txt --- a/README.txt Tue Jan 10 15:06:21 2006 +0000 +++ b/README.txt Tue Jan 10 15:09:59 2006 +0000 @@ -52,6 +52,11 @@ WSGI run_with_cgi (PEP 333) Zope 2.7.2-0, 2.8.0-final +New in WebStack 1.1.2 (Changes since WebStack 1.1.1) +---------------------------------------------------- + + * Fixed missing import in WebStack.Repositories.Directory. + New in WebStack 1.1.1 (Changes since WebStack 1.1) -------------------------------------------------- diff -r cfeccc25a4b5 -r 03d62480009d WebStack/__init__.py --- a/WebStack/__init__.py Tue Jan 10 15:06:21 2006 +0000 +++ b/WebStack/__init__.py Tue Jan 10 15:09:59 2006 +0000 @@ -20,6 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -__version__ = "1.1.1" +__version__ = "1.1.2" # vim: tabstop=4 expandtab shiftwidth=4 diff -r cfeccc25a4b5 -r 03d62480009d docs/index.html --- a/docs/index.html Tue Jan 10 15:06:21 2006 +0000 +++ b/docs/index.html Tue Jan 10 15:09:59 2006 +0000 @@ -10,24 +10,24 @@ 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.1.1 directory.

+unpacked and now sits in the WebStack-1.1.2 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.1.1 directory and to run the setup.py +WebStack-1.1.2 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.1.1
python setup.py install
+
cd WebStack-1.1.2
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.1.1 directory sits on your +that the WebStack-1.1.2 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-1.1.1 directory. Of course, +directory within the WebStack-1.1.2 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.

diff -r cfeccc25a4b5 -r 03d62480009d packages/ubuntu-hoary/python2.4-webstack/debian/changelog --- a/packages/ubuntu-hoary/python2.4-webstack/debian/changelog Tue Jan 10 15:06:21 2006 +0000 +++ b/packages/ubuntu-hoary/python2.4-webstack/debian/changelog Tue Jan 10 15:09:59 2006 +0000 @@ -1,3 +1,9 @@ +webstack (1.1.2-0ubuntu1) hoary; urgency=low + + * Fixed missing import in WebStack.Repositories.Directory. + + -- Paul Boddie Tue, 10 Jan 2006 16:07:52 +0100 + webstack (1.1.1-0ubuntu1) hoary; urgency=low * Fixed update_path to handle the root path properly.