From d5ddca2ac157b52b04b418d51530505d378b3dd5 Mon Sep 17 00:00:00 2001 From: Will Thompson Date: Tue, 10 May 2011 17:40:25 +0100 Subject: [PATCH] ContactWidget: support IRC server and host info --- libempathy-gtk/empathy-contact-widget.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/libempathy-gtk/empathy-contact-widget.c b/libempathy-gtk/empathy-contact-widget.c index 1b2570de..39bac969 100644 --- a/libempathy-gtk/empathy-contact-widget.c +++ b/libempathy-gtk/empathy-contact-widget.c @@ -311,6 +311,17 @@ format_idle_time (GStrv values) return empathy_duration_to_string (duration); } +static gchar * +format_server (GStrv values) +{ + g_assert (values[0] != NULL); + + if (values[1] == NULL) + return g_markup_escape_text (values[0], -1); + else + return g_markup_printf_escaped ("%s (%s)", values[0], values[1]); +} + static InfoFieldData info_field_datas[] = { { "fn", N_("Full name:"), NULL }, @@ -324,6 +335,9 @@ static InfoFieldData info_field_datas[] = * with their IM client. */ { "x-idle-time", N_("Last seen:"), format_idle_time }, + { "x-irc-server", N_("Server:"), format_server }, + { "x-host", N_("Connected from:"), format_server }, + { NULL, NULL } }; -- 2.39.2