source:
ralphm-patches/release-0.5.patch
@
1:7fc86463b39f
Last change on this file since 1:7fc86463b39f was 1:7fc86463b39f, checked in by Ralph Meijer <ralphm@…>, 13 years ago | |
---|---|
File size: 3.9 KB |
-
LICENSE
diff -r 64319a254f83 LICENSE
a b 1 Copyright (c) 2003-200 8Ralph Meijer1 Copyright (c) 2003-2009 Ralph Meijer 2 2 3 3 Permission is hereby granted, free of charge, to any person obtaining 4 4 a copy of this software and associated documentation files (the -
NEWS
diff -r 64319a254f83 NEWS
a b 1 0.5.0 (2009-02-04) 2 ================== 3 4 This release drops support for Twisted versions older than 8.0, including 5 Twisted 2.5 / Twisted Words 0.5. 6 7 Features 8 -------- 9 10 - Support for sending and receiving Publish-Subscribe node delete 11 notifications with redirect. 12 - Service Discovery client support, including an overhaul of disco data 13 classes (#28). 14 - Initial support for building XMPP servers has been added: 15 - XmlStreamServerFactory has been backported from Twisted Words (#29). 16 - An XMPP router has been added (#30). 17 - A server-side component authenticator has been added (#30). 18 - A new server-side component service, that connects to a router within the 19 same process, was added (#31). 20 21 22 Fixes 23 ----- 24 25 - Publish-Subscribe subscriptions requests work again (#22, Mike Malone). 26 - Publish-Subscribe delete node requests now have the correct namespace (#27). 27 - NodeIDs in Service Discovery requests are now returned in responses (#7). 28 - The presence of stanzaType in toResponse is now checked correctly (#34). 29 - Data Form fields are now rendered depending on form type (#40). 30 - Data Form type checking issues were addressed (#41). 31 - Some compatibility fixes for Twisted 8.0 and 8.1. 32 - Various other fixes (#37) and tracking changes to code already in Twisted. 33 34 1 35 0.4.0 (2008-08-05) 2 36 ================== 3 37 -
README
diff -r 64319a254f83 README
a b 1 Wokkel 0. 4.01 Wokkel 0.5.0 2 2 3 3 What is this? 4 4 ============= 5 5 6 Wokkel is a Python module for experimenting with future enhancements 7 to Twisted Words. Everything is aimed to be included in the Twisted 8 main development tree eventually. 6 Wokkel is a Python module for experimenting with future enhancements to Twisted 7 Words, that should eventually be included in the main Twisted main development 8 tree. Some of the code in Wokkel has already made that transition, but is still 9 included to be used with older Twisted releases. 9 10 10 Dependencies 11 12 Requirements 11 13 ============ 12 14 13 This module depends on Twisted Words 0.5 or later. 15 - Python 2.4 or later. 16 - Twisted 8.0.0 or later. 14 17 15 Copyright 18 19 Resources 16 20 ========= 17 21 18 The code in this distribution is Copyright (c) 2003-2008 Ralph Meijer, unless 22 Wokkel's home is <http://wokkel.ik.nu/>. 23 24 Besides the general Twisted resources, help is available on the Twisted-Jabber 25 mailing list:: 26 27 <https://mailman.ik.nu/mailman/listinfo/twisted-jabber> 28 29 30 Copyright and Warranty 31 ====================== 32 33 The code in this distribution is Copyright (c) 2003-2009 Ralph Meijer, unless 19 34 excplicitely specified otherwise. 20 35 21 36 Wokkel is made available under the MIT License. The included LICENSE file 22 37 describes this in detail. 23 38 24 Contact25 =======26 39 27 Questions, comments or suggestions are welcome! 40 Contributors 41 ============ 42 43 - Christopher Zorn 44 - Jack Moffitt 45 - Mike Malone 46 - Pablo Martin 47 48 49 Author 50 ====== 28 51 29 52 Ralph Meijer 30 53 <xmpp:ralphm@ik.nu> -
setup.py
diff -r 64319a254f83 setup.py
a b 1 1 #!/usr/bin/env python 2 2 3 # Copyright (c) 2003-200 8Ralph Meijer3 # Copyright (c) 2003-2009 Ralph Meijer 4 4 # See LICENSE for details. 5 5 6 6 from setuptools import setup 7 7 8 8 setup(name='wokkel', 9 version='0. 4.0',9 version='0.5.0', 10 10 description='Twisted Jabber support library', 11 11 author='Ralph Meijer', 12 12 author_email='ralphm@ik.nu',
Note: See TracBrowser
for help on using the repository browser.