blob: 77cd47a4c3c0d414272de3d243fa186bdc56aab2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
"""
slixmpp: The Slick XMPP Library
Copyright (C) 2016 Emmanuel Gil Peyrot
This file is part of slixmpp.
See the file LICENSE for copying permission.
"""
from slixmpp.xmlstream import ElementBase
NS ='urn:xmpp:chat-markers:0'
class Markable(ElementBase):
name = 'markable'
plugin_attrib = 'markable'
namespace = NS
class Received(ElementBase):
name = 'received'
plugin_attrib = 'received'
namespace = NS
interfaces = {'id'}
class Displayed(ElementBase):
name = 'displayed'
plugin_attrib = 'displayed'
namespace = NS
interfaces = {'id'}
class Acknowledged(ElementBase):
name = 'acknowledged'
plugin_attrib = 'acknowledged'
namespace = NS
interfaces = {'id'}
|