# HG changeset patch # User paulb # Date 1190933456 0 # Node ID bebdce5d900278b2db1f130372409302d1268dcc # Parent 4779305d43113d7fc2de96af967215f614b2cf76 [project @ 2007-09-27 22:50:53 by paulb] Updated release information. diff -r 4779305d4311 -r bebdce5d9002 PKG-INFO --- a/PKG-INFO Thu Sep 27 22:50:38 2007 +0000 +++ b/PKG-INFO Thu Sep 27 22:50:56 2007 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: WebStack -Version: 1.2.5 +Version: 1.2.6 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.5.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.2.6.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 4779305d4311 -r bebdce5d9002 README.txt --- a/README.txt Thu Sep 27 22:50:38 2007 +0000 +++ b/README.txt Thu Sep 27 22:50:56 2007 +0000 @@ -34,6 +34,16 @@ See the docs/supported-frameworks.html document for more information. +New in WebStack 1.2.6 (Changes since WebStack 1.2.5) +---------------------------------------------------- + + * Improved support for Jython on Ubuntu Feisty (7.04), adding python.path + and python.cachedir settings which respectively avoid issues with missing + libraries (due to the separation of libraries in the Ubuntu package) and + with failed imports (due to a read-only class cache directory). + * Added more Jython-related documentation as suggested by Kevin Glynn. + * Added missing request headers for CGI/WSGI environment variables. + New in WebStack 1.2.5 (Changes since WebStack 1.2.4) ---------------------------------------------------- diff -r 4779305d4311 -r bebdce5d9002 WebStack/__init__.py --- a/WebStack/__init__.py Thu Sep 27 22:50:38 2007 +0000 +++ b/WebStack/__init__.py Thu Sep 27 22:50:56 2007 +0000 @@ -20,6 +20,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA """ -__version__ = "1.2.5" +__version__ = "1.2.6" # vim: tabstop=4 expandtab shiftwidth=4 diff -r 4779305d4311 -r bebdce5d9002 docs/index.html --- a/docs/index.html Thu Sep 27 22:50:38 2007 +0000 +++ b/docs/index.html Thu Sep 27 22:50:56 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.5 directory.

+unpacked and now sits in the WebStack-1.2.6 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.5 directory and to run the setup.py +WebStack-1.2.6 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.5
python setup.py install
+
cd WebStack-1.2.6
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.5 directory sits on your +that the WebStack-1.2.6 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.5 directory. Of course, +directory within the WebStack-1.2.6 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 4779305d4311 -r bebdce5d9002 packages/ubuntu-feisty/python-webstack/debian/changelog --- a/packages/ubuntu-feisty/python-webstack/debian/changelog Thu Sep 27 22:50:38 2007 +0000 +++ b/packages/ubuntu-feisty/python-webstack/debian/changelog Thu Sep 27 22:50:56 2007 +0000 @@ -1,3 +1,18 @@ +webstack (1.2.6-0ubuntu1) feisty; urgency=low + + * Improved support for Jython on Ubuntu Feisty (7.04), + adding python.path and python.cachedir settings which + respectively avoid issues with missing libraries (due to + the separation of libraries in the Ubuntu package) and + with failed imports (due to a read-only class cache + directory). + * Added more Jython-related documentation as suggested by + Kevin Glynn. + * Added missing request headers for CGI/WSGI environment + variables. + + -- Paul Boddie Thu, 27 Sep 2007 19:41:28 +0200 + webstack (1.2.5-0ubuntu1) feisty; urgency=low * Fixed mod_python status codes using a solution proposed diff -r 4779305d4311 -r bebdce5d9002 packages/ubuntu-hoary/python2.4-webstack/debian/changelog --- a/packages/ubuntu-hoary/python2.4-webstack/debian/changelog Thu Sep 27 22:50:38 2007 +0000 +++ b/packages/ubuntu-hoary/python2.4-webstack/debian/changelog Thu Sep 27 22:50:56 2007 +0000 @@ -1,3 +1,18 @@ +webstack (1.2.6-0ubuntu1) hoary; urgency=low + + * Improved support for Jython on Ubuntu Feisty (7.04), + adding python.path and python.cachedir settings which + respectively avoid issues with missing libraries (due to + the separation of libraries in the Ubuntu package) and + with failed imports (due to a read-only class cache + directory). + * Added more Jython-related documentation as suggested by + Kevin Glynn. + * Added missing request headers for CGI/WSGI environment + variables. + + -- Paul Boddie Thu, 27 Sep 2007 19:40:39 +0200 + webstack (1.2.5-0ubuntu1) hoary; urgency=low * Fixed mod_python status codes using a solution proposed