diff options
author | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-11-23 20:07:41 +0000 |
---|---|---|
committer | Emmanuel Gil Peyrot <linkmauve@linkmauve.fr> | 2017-11-23 20:11:14 +0000 |
commit | eae2692647d98bf1a0610f7d2c837fe73c658788 (patch) | |
tree | 31494efb572a2064ce4b43ad3d6c0b8cec118f99 | |
parent | 304d1cc1abb94213d263f4cad226159f323dd38a (diff) | |
download | poezio-eae2692647d98bf1a0610f7d2c837fe73c658788.tar.gz poezio-eae2692647d98bf1a0610f7d2c837fe73c658788.tar.bz2 poezio-eae2692647d98bf1a0610f7d2c837fe73c658788.tar.xz poezio-eae2692647d98bf1a0610f7d2c837fe73c658788.zip |
Update the documentation to reflect the removal of features.
-rw-r--r-- | doc/source/dev/xep.rst | 4 | ||||
-rw-r--r-- | poezio/tabs/conversationtab.py | 5 |
2 files changed, 5 insertions, 4 deletions
diff --git a/doc/source/dev/xep.rst b/doc/source/dev/xep.rst index f1f9e968..c185a240 100644 --- a/doc/source/dev/xep.rst +++ b/doc/source/dev/xep.rst @@ -35,7 +35,7 @@ Table of all XEPs implemented in poezio. +----------+-------------------------+---------------------+ |0084 |User Avatar |50% | +----------+-------------------------+---------------------+ -|0085 |Chat State Notifications |100% | +|0085 |Chat State Notifications |80% | +----------+-------------------------+---------------------+ |0092 |Software Version |100% | +----------+-------------------------+---------------------+ @@ -91,7 +91,7 @@ Table of all XEPs implemented in poezio. +----------+-------------------------+---------------------+ |0280 |Messsage Carbons |100% | +----------+-------------------------+---------------------+ -|0296 |Best Practices for |100% | +|0296 |Best Practices for |0% | | |Resource Locking | | +----------+-------------------------+---------------------+ |0297 |Stanza Forwarding |100% | diff --git a/poezio/tabs/conversationtab.py b/poezio/tabs/conversationtab.py index fb39c982..f99938fc 100644 --- a/poezio/tabs/conversationtab.py +++ b/poezio/tabs/conversationtab.py @@ -417,8 +417,9 @@ class ConversationTab(OneToOneTab): class DynamicConversationTab(ConversationTab): """ - A conversation tab associated with one bare JID that can be “locked” to - a full jid, and unlocked, as described in the XEP-0296. + A conversation tab associated with one bare JID. It used to + support resource locking (as described in XEP-0296), but that was a + bad idea so it has been removed. Only one DynamicConversationTab can be opened for a given jid. """ |