Update documentation (& formatting)

- nick colors are not random by default
- /close is a useful command
This commit is contained in:
mathieui 2018-02-20 21:52:55 +01:00
parent 87ed4aff12
commit ac6adbf21b
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
3 changed files with 16 additions and 13 deletions

View file

@ -81,13 +81,14 @@ The status of a tab is represented by its color:
You can go from one tab to another in many ways:
* ``Ctrl+n`` and ``Ctrl+p``
* ``Ctrl+n`` (next tab) and ``Ctrl+p`` (previous tab)
* :term:`/win` command
* :term:`/next` and :term:`/prev` commands
* ``Alt`` + a number
* ``Alt+j`` followed by a two-digits number
* ``Alt`` + a number (to go to the tab with that number)
* ``Alt+j`` followed by a two-digits number (same)
* ``Alt+e``, this will jump to the next tab with the highest priority. Priority
applies in this order: private message > highlight message > normal message.
* :term:`/close` command to close a tab and go back to the previous one
.. _rostertab:
@ -163,7 +164,7 @@ This tab contains a multi-user conversation.
- **Blue**: participant
- **Grey**: visitor
The nicks have a random color given by poezio (which can be changed with :term:`/recolor`)
The nicks have a fixed color assigned using XEP-0392_.
#. Your information in that chatroom (the name of the room, your nick, your role
and affiliation).
@ -278,3 +279,4 @@ have autojoin set to True.
:alt: Bookmarks tab screenshot
.. _XEP-0070: https://xmpp.org/extensions/xep-0070.html
.. _XEP-0392: https://xmpp.org/extensions/xep-0392.html

View file

@ -231,9 +231,8 @@ class ConversationTab(OneToOneTab):
return True
else:
self._text_buffer.add_message(
"\x19%(info_col)s}No information available\x19o" % {
'info_col': dump_tuple(get_theme().COLOR_INFORMATION_TEXT)
})
"\x19%(info_col)s}No information available\x19o" %
{'info_col': dump_tuple(get_theme().COLOR_INFORMATION_TEXT)})
return True
@command_args_parser.quoted(0, 1)

View file

@ -523,16 +523,18 @@ class MucTab(ChatTab):
if '170' in status_codes:
self.add_message(
'\x19%(warn_col)s}Warning:\x19%(info_col)s}'
' This room is publicly logged' %
{'info_col': info_col,
'warn_col': warn_col},
' This room is publicly logged' % {
'info_col': info_col,
'warn_col': warn_col
},
typ=0)
if '100' in status_codes:
self.add_message(
'\x19%(warn_col)s}Warning:\x19%(info_col)s}'
' This room is not anonymous.' %
{'info_col': info_col,
'warn_col': warn_col},
' This room is not anonymous.' % {
'info_col': info_col,
'warn_col': warn_col
},
typ=0)
def handle_presence_joined(self, presence, status_codes):