changeset 207:43a4d0d6c076

Release Idavoll 0.8.0.
author Ralph Meijer <ralphm@ik.nu>
date Tue, 05 Aug 2008 18:23:45 +0000
parents 274a45d2a5ab
children cc4f45ef793e
files INSTALL LICENSE NEWS README idavoll/tap.py setup.py
diffstat 6 files changed, 22 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/INSTALL	Mon Aug 04 13:47:10 2008 +0000
+++ b/INSTALL	Tue Aug 05 18:23:45 2008 +0000
@@ -8,7 +8,7 @@
    - Twisted Web2 (for idavoll-http)
    - Twisted Words
 - uuid.py (Python 2.5 std. lib. or http://pypi.python.org/pypi/uuid)
-- Wokkel >= 0.3.1 (http://wokkel.ik.nu/)
+- Wokkel >= 0.4.0 (http://wokkel.ik.nu/)
 - simplejson (for idavoll-http)
 - A Jabber server that supports the component protocol (XEP-0114)
 
--- a/LICENSE	Mon Aug 04 13:47:10 2008 +0000
+++ b/LICENSE	Tue Aug 05 18:23:45 2008 +0000
@@ -1,4 +1,4 @@
-Copyright (c) 2003-2007 Ralph Meijer
+Copyright (c) 2003-2008 Ralph Meijer
 
 Permission is hereby granted, free of charge, to any person obtaining
 a copy of this software and associated documentation files (the
--- a/NEWS	Mon Aug 04 13:47:10 2008 +0000
+++ b/NEWS	Tue Aug 05 18:23:45 2008 +0000
@@ -1,3 +1,16 @@
+0.8.0 (2008-08-05)
+==================
+
+ - Complete API method name change to conform to Twisted's naming conventions.
+ - Change so that stored items are stripped of the pubsub namespace, this makes
+   notifications have the proper namespace for items.
+ - Match an API change in Wokkel for the HTTP gateway.
+ - Add persistent storage for the HTTP gateway's record of subscriptions and
+   callbacks.
+ - Adjust node configuration code to match Wokkel's API changes for data forms.
+ - Implement a root collection that includes all leaf nodes.
+
+
 0.7.3 (2008-05-30)
 ==================
 
--- a/README	Mon Aug 04 13:47:10 2008 +0000
+++ b/README	Tue Aug 05 18:23:45 2008 +0000
@@ -1,4 +1,4 @@
-Idavoll 0.7.3
+Idavoll 0.8.0
 
 What is this?
 ================
@@ -21,7 +21,8 @@
 ==========
 
 Instructions for installing, configuring and running this software are in
-INSTALL.
+INSTALL. Also refer to UPGRADING for instruction on upgrading from older
+versions of Idavoll.
 
 Copyright
 =========
--- a/idavoll/tap.py	Mon Aug 04 13:47:10 2008 +0000
+++ b/idavoll/tap.py	Tue Aug 05 18:23:45 2008 +0000
@@ -12,7 +12,7 @@
 
 from idavoll.backend import BackendService
 
-__version__ = '0.7.3'
+__version__ = '0.8.0'
 
 class Options(usage.Options):
     optParameters = [
--- a/setup.py	Mon Aug 04 13:47:10 2008 +0000
+++ b/setup.py	Tue Aug 05 18:23:45 2008 +0000
@@ -7,7 +7,7 @@
 from setuptools import setup
 
 install_requires = [
-    'wokkel >= 0.3.1',
+    'wokkel >= 0.4.0',
     'simplejson',
 ]
 
@@ -15,7 +15,7 @@
     install_requires.append('uuid')
 
 setup(name='idavoll',
-      version='0.7.3',
+      version='0.8.0',
       description='Jabber Publish-Subscribe Service Component',
       author='Ralph Meijer',
       author_email='ralphm@ik.nu',
@@ -29,6 +29,7 @@
       package_data={'twisted.plugins': ['twisted/plugins/idavoll.py',
                                         'twisted/plugins/idavoll_http.py']},
       data_files=[('share/idavoll', ['db/pubsub.sql',
+                                     'db/gateway.sql',
                                      'db/to_idavoll_0.8.sql'])],
       zip_safe=False,
       install_requires=install_requires,