Mercurial > libervia-pubsub
comparison sat_pubsub/mam.py @ 311:a776544d84e5
copyright update
author | Goffi <goffi@goffi.org> |
---|---|
date | Sun, 03 Jan 2016 18:28:34 +0100 |
parents | 7d54ff2eeaf2 |
children | cca47e9977a5 |
comparison
equal
deleted
inserted
replaced
310:e6a9a3c93314 | 311:a776544d84e5 |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
2 #-*- coding: utf-8 -*- | 2 #-*- coding: utf-8 -*- |
3 | |
4 # Copyright (c) 2015-2016 Adrien Cossa | |
5 # | |
6 # This program is free software: you can redistribute it and/or modify | |
7 # it under the terms of the GNU Affero General Public License as published by | |
8 # the Free Software Foundation, either version 3 of the License, or | |
9 # (at your option) any later version. | |
10 # | |
11 # This program is distributed in the hope that it will be useful, | |
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 # GNU Affero General Public License for more details. | |
15 # | |
16 # You should have received a copy of the GNU Affero General Public License | |
17 # along with this program. If not, see <http://www.gnu.org/licenses/>. | |
3 | 18 |
4 """ | 19 """ |
5 XMPP Message Archive Management protocol. | 20 XMPP Message Archive Management protocol. |
6 | 21 |
7 This protocol is specified in | 22 This protocol is specified in |
8 U{XEP-0313<http://xmpp.org/extensions/xep-0313.html>}. | 23 U{XEP-0313<http://xmpp.org/extensions/xep-0313.html>}. |
9 """ | 24 """ |
25 | |
10 | 26 |
11 from zope.interface import implements | 27 from zope.interface import implements |
12 | 28 |
13 from twisted.words.xish import domish | 29 from twisted.words.xish import domish |
14 | 30 |