Add a show_jid_in_conversations option

To hide or show the JID of the contact in conversation tabs.
This commit is contained in:
mathieui 2015-06-18 21:11:58 +02:00
parent 43ef5fd949
commit d9050e9565
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
4 changed files with 14 additions and 1 deletions

View file

@ -305,6 +305,9 @@ show_muc_jid = true
# poezio will only show: toto (2)
show_roster_jids = true
# Show JIDs in conversation tabs
show_jid_in_conversations = true
# show s2s errors in the roster
show_s2s_errors = true

View file

@ -710,6 +710,13 @@ or the way messages are displayed.
the contact names). If there is no contact name, the JID will still be
displayed.
show_jid_in_conversations
**Default value:** ``true``
If ``false``, the JID of the contact will not be displayed in the information
window in conversation tags.
show_s2s_errors
**Default value:** ``true``

View file

@ -108,6 +108,7 @@ DEFAULT_CONFIG = {
'server': 'anon.jeproteste.info',
'show_composing_tabs': 'direct',
'show_inactive_tabs': True,
'show_jid_in_conversations': True,
'show_muc_jid': True,
'show_roster_jids': True,
'show_roster_subscriptions': '',

View file

@ -7,6 +7,7 @@ import logging
log = logging.getLogger(__name__)
from common import safeJID
from config import config
from . import Win
from . funcs import truncate_nick
@ -136,7 +137,8 @@ class ConversationInfoWin(InfoWin):
# resource can now be a Resource: user is in the roster and online
# or resource is None: user is in the roster but offline
self._win.erase()
self.write_contact_jid(jid)
if config.get('show_jid_in_conversations'):
self.write_contact_jid(jid)
self.write_contact_informations(contact)
self.write_resource_information(resource)
self.print_scroll_position(window)