# HG changeset patch # User Goffi # Date 1451842114 -3600 # Node ID a776544d84e5e7ad2c92503925e3bd65dc1b8ac2 # Parent e6a9a3c93314fc7e0182723fc42c64b9e259f4fa copyright update diff -r e6a9a3c93314 -r a776544d84e5 README --- a/README Mon Dec 21 13:44:21 2015 +0100 +++ b/README Sun Jan 03 18:28:34 2016 +0100 @@ -1,8 +1,8 @@ SàT PubSub component v0.1.1 This program is heavily based on Idavoll (0.9.1), which was written by Ralph Meijer -Copyright (c) 2014, 2015 Adrien Cossa -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2014-2016 Adrien Cossa +Copyright (c) 2012-2016 Jérôme Poisson Copyright (c) 2003-2011 Ralph Meijer Sàt PubSub is a PubSub component service for XMPP diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/__init__.py --- a/sat_pubsub/__init__.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/__init__.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,9 @@ #-*- coding: utf-8 -*- """ +Copyright (c) 2012-2016 Jérôme Poisson +Copyright (c) 2013-2016 Adrien Cossa Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify @@ -53,7 +54,7 @@ """ """ -Idavoll, a generic XMPP publish-subscribe service. +SàT PubSub, a generic XMPP publish-subscribe service. """ __version__ = '0.2.0' diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/backend.py --- a/sat_pubsub/backend.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/backend.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,9 @@ #-*- coding: utf-8 -*- # """ +Copyright (c) 2012-2016 Jérôme Poisson +Copyright (c) 2013-2016 Adrien Cossa Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/const.py --- a/sat_pubsub/const.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/const.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,9 @@ #-*- coding: utf-8 -*- """ +Copyright (c) 2012-2016 Jérôme Poisson +Copyright (c) 2013-2016 Adrien Cossa Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/error.py --- a/sat_pubsub/error.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/error.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,9 @@ #-*- coding: utf-8 -*- """ +Copyright (c) 2012-2016 Jérôme Poisson +Copyright (c) 2013-2016 Adrien Cossa Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/gateway.py --- a/sat_pubsub/gateway.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/gateway.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/iidavoll.py --- a/sat_pubsub/iidavoll.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/iidavoll.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/mam.py --- a/sat_pubsub/mam.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/mam.py Sun Jan 03 18:28:34 2016 +0100 @@ -1,6 +1,21 @@ #!/usr/bin/python #-*- coding: utf-8 -*- +# Copyright (c) 2015-2016 Adrien Cossa +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with this program. If not, see . + """ XMPP Message Archive Management protocol. @@ -8,6 +23,7 @@ U{XEP-0313}. """ + from zope.interface import implements from twisted.words.xish import domish diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/memory_storage.py --- a/sat_pubsub/memory_storage.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/memory_storage.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/pgsql_storage.py --- a/sat_pubsub/pgsql_storage.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/pgsql_storage.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,9 @@ #-*- coding: utf-8 -*- """ +Copyright (c) 2012-2016 Jérôme Poisson +Copyright (c) 2013-2016 Adrien Cossa Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/tap.py --- a/sat_pubsub/tap.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/tap.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,9 @@ #-*- coding: utf-8 -*- """ +Copyright (c) 2012-2016 Jérôme Poisson +Copyright (c) 2013-2016 Jérôme Poisson Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/tap_http.py --- a/sat_pubsub/tap_http.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/tap_http.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/test/__init__.py --- a/sat_pubsub/test/__init__.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/test/__init__.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/test/test_backend.py --- a/sat_pubsub/test/test_backend.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/test/test_backend.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/test/test_gateway.py --- a/sat_pubsub/test/test_gateway.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/test/test_gateway.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 sat_pubsub/test/test_storage.py --- a/sat_pubsub/test/test_storage.py Mon Dec 21 13:44:21 2015 +0100 +++ b/sat_pubsub/test/test_storage.py Sun Jan 03 18:28:34 2016 +0100 @@ -3,7 +3,7 @@ """ Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson +Copyright (c) 2012-2016 Jérôme Poisson This program is free software: you can redistribute it and/or modify diff -r e6a9a3c93314 -r a776544d84e5 twisted/plugins/sat_pubsub.py --- a/twisted/plugins/sat_pubsub.py Mon Dec 21 13:44:21 2015 +0100 +++ b/twisted/plugins/sat_pubsub.py Sun Jan 03 18:28:34 2016 +0100 @@ -2,8 +2,8 @@ #-*- coding: utf-8 -*- """ +Copyright (c) 2012-2016 Jérôme Poisson Copyright (c) 2003-2011 Ralph Meijer -Copyright (c) 2012, 2013, 2014, 2015 Jérôme Poisson This program is free software: you can redistribute it and/or modify