1
0
mirror of https://github.com/weechat/weechat.git synced 2026-06-29 22:36:38 +02:00

irc: rename host/server/channel to irc_host/irc_server/irc_channel in irc focus hashtable for nicklist

This commit is contained in:
Sebastien Helleu
2011-08-16 09:15:00 +02:00
parent 8f0e0307c5
commit a234bc90ad
4 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -8320,9 +8320,9 @@ Extra info for bar item "buffer_nicklist":
| nick | core | nick name
| prefix | core | prefix for nick
| group | core | group name
| host | irc | host for nick (if known)
| server | irc | internal name of server
| channel | irc | channel name
| irc_host | irc | host for nick (if known)
| irc_server | irc | internal name of server
| irc_channel | irc | channel name
|========================================
[NOTE]
+3 -3
View File
@@ -8458,9 +8458,9 @@ Informations additionnelles pour l'objet de barre "buffer_nicklist":
| nick | core | pseudonyme
| prefix | core | préfixe du pseudonyme
| group | core | nom du groupe
| host | irc | nom d'hôte pour le pseudonyme (si connu)
| server | irc | nom interne du serveur
| channel | irc | nom du canal
| irc_host | irc | nom d'hôte pour le pseudonyme (si connu)
| irc_server | irc | nom interne du serveur
| irc_channel | irc | nom du canal
|========================================
[NOTE]
+3 -3
View File
@@ -8377,9 +8377,9 @@ Extra info for bar item "buffer_nicklist":
| nick | core | nick name
| prefix | core | prefix for nick
| group | core | group name
| host | irc | host for nick (if known)
| server | irc | internal name of server
| channel | irc | channel name
| irc_host | irc | host for nick (if known)
| irc_server | irc | internal name of server
| irc_channel | irc | channel name
|========================================
[NOTE]
+3 -3
View File
@@ -529,11 +529,11 @@ irc_bar_item_focus_buffer_nicklist (void *data,
ptr_nick = irc_nick_search (ptr_channel, nick);
if (ptr_nick && ptr_nick->host)
{
weechat_hashtable_set (info, "host", ptr_nick->host);
weechat_hashtable_set (info, "irc_host", ptr_nick->host);
}
}
weechat_hashtable_set (info, "server", ptr_server->name);
weechat_hashtable_set (info, "channel", ptr_channel->name);
weechat_hashtable_set (info, "irc_server", ptr_server->name);
weechat_hashtable_set (info, "irc_channel", ptr_channel->name);
return info;
}