# HG changeset patch # User paulb # Date 1132067358 0 # Node ID 959873926c8bff79b890880f4c7b44b7a10af688 # Parent 81ce4af204accb8c8bb18dd90054a7da55e03c32 [project @ 2005-11-15 15:09:18 by paulb] Updated release information. Added the WebStack.Repositories package. diff -r 81ce4af204ac -r 959873926c8b PKG-INFO --- a/PKG-INFO Mon Nov 14 14:41:47 2005 +0000 +++ b/PKG-INFO Tue Nov 15 15:09:18 2005 +0000 @@ -1,12 +1,12 @@ Metadata-Version: 1.1 Name: WebStack -Version: 1.0 +Version: 1.1 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.0.tar.gz +Download-url: http://www.boddie.org.uk/python/downloads/WebStack-1.1.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 81ce4af204ac -r 959873926c8b README.txt --- a/README.txt Mon Nov 14 14:41:47 2005 +0000 +++ b/README.txt Tue Nov 15 15:09:18 2005 +0000 @@ -52,10 +52,14 @@ WSGI run_with_cgi (PEP 333) Zope 2.7.2-0, 2.8.0-final -New in WebStack 1.0.1 (Changes since WebStack 1.0) --------------------------------------------------- +New in WebStack 1.1 (Changes since WebStack 1.0) +------------------------------------------------ - * Added an explicit filesystem encoding to the Calendar example. + * Added a Repositories package to provide session-like support for + different kinds of storage. + * Added an explicit filesystem encoding to the Calendar example and adopted + the DirectoryRepository from the Repositories package. + * Added a values method to Helpers.Session.Wrapper. * Fixed the distribution names in the Ubuntu changelog. New in WebStack 1.0 (Changes since WebStack 0.10) diff -r 81ce4af204ac -r 959873926c8b setup.py --- a/setup.py Mon Nov 14 14:41:47 2005 +0000 +++ b/setup.py Tue Nov 15 15:09:18 2005 +0000 @@ -11,5 +11,6 @@ author_email = "paul@boddie.org.uk", url = "http://www.boddie.org.uk/python/WebStack.html", version = WebStack.__version__, - packages = ["WebStack", "WebStack.Adapters", "WebStack.Adapters.Helpers", "WebStack.Helpers", "WebStack.Resources"] + packages = ["WebStack", "WebStack.Adapters", "WebStack.Adapters.Helpers", + "WebStack.Helpers", "WebStack.Resources", "WebStack.Repositories"] )