aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Claessens <xclaesse@gmail.com>2009-09-28 15:44:30 +0800
committerXavier Claessens <xclaesse@gmail.com>2009-09-30 22:18:39 +0800
commit0151759ddfe6a3d659b4b218e0a788c45d561a11 (patch)
tree6a01ea7fb82697972426195043530f2e7e9cb7d1
parent63c5120cb7999c68fcaeec5fc247c1b59d38c607 (diff)
downloadgsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.tar
gsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.tar.gz
gsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.tar.bz2
gsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.tar.lz
gsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.tar.xz
gsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.tar.zst
gsoc2013-empathy-0151759ddfe6a3d659b4b218e0a788c45d561a11.zip
Make the correct fallbacks in case of missing html files in an Adium theme. Fixes bug #596303
-rw-r--r--libempathy-gtk/empathy-theme-adium.c101
1 files changed, 51 insertions, 50 deletions
diff --git a/libempathy-gtk/empathy-theme-adium.c b/libempathy-gtk/empathy-theme-adium.c
index d7fd01729..f4779da67 100644
--- a/libempathy-gtk/empathy-theme-adium.c
+++ b/libempathy-gtk/empathy-theme-adium.c
@@ -544,7 +544,8 @@ theme_adium_append_message (EmpathyChatView *view,
const gchar *func;
const gchar *service_name;
GString *message_classes = NULL;
- gboolean is_backlog;
+ gboolean is_backlog;
+ gboolean consecutive;
if (!priv->page_loaded) {
priv->message_queue = g_list_prepend (priv->message_queue,
@@ -600,88 +601,83 @@ theme_adium_append_message (EmpathyChatView *view,
}
}
+ /* We want to join this message with the last one if
+ * - senders are the same contact,
+ * - last message was recieved recently, and
+ * - last message and this message both are/aren't backlog */
is_backlog = empathy_message_is_backlog (msg);
+ consecutive = empathy_contact_equal (priv->last_contact, sender) &&
+ (timestamp - priv->last_timestamp < MESSAGE_JOIN_PERIOD) &&
+ (is_backlog == priv->last_is_backlog);
- /* Get the right html/func to add the message */
- func = "appendMessage";
-
+ /* Define message classes */
message_classes = g_string_new ("message");
-
- /* eventually append the "history" class */
if (is_backlog) {
g_string_append (message_classes, " history");
}
-
- /* check the sender of the message and append the appropriate class */
+ if (consecutive) {
+ g_string_append (message_classes, " consecutive");
+ }
if (empathy_contact_is_user (sender)) {
g_string_append (message_classes, " outgoing");
- }
- else {
+ } else {
g_string_append (message_classes, " incoming");
}
- /*
- * To mimick Adium's behavior, we only want to join messages
- * sent by the same contact within a 5 minute time frame.
- */
- if (empathy_contact_equal (priv->last_contact, sender) &&
- (timestamp - priv->last_timestamp < MESSAGE_JOIN_PERIOD) &&
- (is_backlog == priv->last_is_backlog)) {
- /* the messages can be appended */
- func = "appendNextMessage";
- g_string_append (message_classes, " consecutive");
-
- /* check who is the sender of the message to use the correct html file */
- if (empathy_contact_is_user (sender)) {
- /* check if this is a backlog message and use NextContext.html */
+ /* Outgoing */
+ if (empathy_contact_is_user (sender)) {
+ if (consecutive) {
+ func = "appendNextMessage";
if (is_backlog) {
html = priv->data->out_nextcontext_html;
len = priv->data->out_nextcontext_len;
}
- /*
- * html is null if this is not a backlog message or
- * if we have to fallback (NextContext.html missing).
- * use NextContent.html
- */
+ /* Note backlog, or fallback if NextContext.html
+ * is missing */
if (html == NULL) {
html = priv->data->out_nextcontent_html;
len = priv->data->out_nextcontent_len;
}
}
- else {
+
+ /* Not consecutive, or fallback if NextContext.html and/or
+ * NextContent.html are missing */
+ if (html == NULL) {
+ func = "appendMessage";
if (is_backlog) {
- html = priv->data->in_nextcontext_html;
- len = priv->data->in_nextcontext_len;
+ html = priv->data->out_context_html;
+ len = priv->data->out_context_len;
}
if (html == NULL) {
- html = priv->data->in_nextcontent_html;
- len = priv->data->in_nextcontent_len;
+ html = priv->data->out_content_html;
+ len = priv->data->out_content_len;
}
}
}
- /*
- * we have html == NULL here if:
- * 1. the message didn't have to be appended because
- * the sender was different or the timestamp was too far
- * 2. NextContent.html file does not exist, so we must
- * not forget to fallback to the correct Content.html
- */
+ /* Incoming, or fallback if outgoing files are missing */
if (html == NULL) {
- if (empathy_contact_is_user (sender)) {
+ if (consecutive) {
+ func = "appendNextMessage";
if (is_backlog) {
- html = priv->data->out_context_html;
- len = priv->data->out_context_len;
+ html = priv->data->in_nextcontext_html;
+ len = priv->data->in_nextcontext_len;
}
+ /* Note backlog, or fallback if NextContext.html
+ * is missing */
if (html == NULL) {
- html = priv->data->out_content_html;
- len = priv->data->out_content_len;
+ html = priv->data->in_nextcontent_html;
+ len = priv->data->in_nextcontent_len;
}
}
- else {
+
+ /* Not consecutive, or fallback if NextContext.html and/or
+ * NextContent.html are missing */
+ if (html == NULL) {
+ func = "appendMessage";
if (is_backlog) {
html = priv->data->in_context_html;
len = priv->data->in_context_len;
@@ -694,9 +690,14 @@ theme_adium_append_message (EmpathyChatView *view,
}
}
- theme_adium_append_html (theme, func, html, len, body, avatar_filename,
- name, contact_id, service_name, message_classes->str,
- timestamp);
+ if (html != NULL) {
+ theme_adium_append_html (theme, func, html, len, body,
+ avatar_filename, name, contact_id,
+ service_name, message_classes->str,
+ timestamp);
+ } else {
+ DEBUG ("Couldn't find HTML file for this message");
+ }
/* Keep the sender of the last displayed message */
if (priv->last_contact) {