[empathy/gnome-3-6] log-window: escape the body of the message
- From: Guillaume Desmottes <gdesmott src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [empathy/gnome-3-6] log-window: escape the body of the message
- Date: Mon, 7 Jan 2013 13:04:49 +0000 (UTC)
commit 1e7449f5a14e2f031389808206c9991f65d3ade7
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date: Fri Jan 4 16:08:39 2013 +0100
log-window: escape the body of the message
https://bugzilla.gnome.org/show_bug.cgi?id=691085
libempathy-gtk/empathy-log-window.c | 9 +++++++--
1 files changed, 7 insertions(+), 2 deletions(-)
---
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c
index 6a244f5..3bc2967 100644
--- a/libempathy-gtk/empathy-log-window.c
+++ b/libempathy-gtk/empathy-log-window.c
@@ -1259,6 +1259,7 @@ log_window_append_chat_message (TplEvent *event,
GtkTreeStore *store = log_window->priv->store_events;
GtkTreeIter iter, parent;
gchar *pretty_date, *alias, *body;
+ gchar *msg_escaped;
GDateTime *date;
EmpathyStringParser *parsers;
GString *msg;
@@ -1282,19 +1283,23 @@ log_window_append_chat_message (TplEvent *event,
empathy_string_parser_substr (empathy_message_get_body (message), -1,
parsers, msg);
+ msg_escaped = g_strescape (msg->str, NULL);
+
if (tpl_text_event_get_message_type (TPL_TEXT_EVENT (event))
== TP_CHANNEL_TEXT_MESSAGE_TYPE_ACTION)
{
/* Translators: this is an emote: '* Danielle waves' */
- body = g_strdup_printf (_("<i>* %s %s</i>"), alias, msg->str);
+ body = g_strdup_printf (_("<i>* %s %s</i>"), alias, msg_escaped);
}
else
{
/* Translators: this is a message: 'Danielle: hello'
* The string in bold is the sender's name */
- body = g_strdup_printf (_("<b>%s:</b> %s"), alias, msg->str);
+ body = g_strdup_printf (_("<b>%s:</b> %s"), alias, msg_escaped);
}
+ g_free (msg_escaped);
+
gtk_tree_store_append (store, &iter, &parent);
gtk_tree_store_set (store, &iter,
COL_EVENTS_TS, tpl_event_get_timestamp (event),
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]