aboutsummaryrefslogtreecommitdiffstats
path: root/mail
diff options
context:
space:
mode:
authorNot Zed <NotZed@Ximian.com>2004-04-08 18:13:51 +0800
committerMichael Zucci <zucchi@src.gnome.org>2004-04-08 18:13:51 +0800
commit2e21dccafacc8ecb979486b5d58ce217d7cc8ebc (patch)
treef23343164bc7476c5a76404467d9164d66cabffa /mail
parentad769a4440cb343e1afd5abbd59a4d4c4d07d9d4 (diff)
downloadgsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.tar
gsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.tar.gz
gsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.tar.bz2
gsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.tar.lz
gsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.tar.xz
gsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.tar.zst
gsoc2013-evolution-2e21dccafacc8ecb979486b5d58ce217d7cc8ebc.zip
add the monkey button if we're from evolution. See #52977. (emfh_gethttp):
2004-04-08 Not Zed <NotZed@Ximian.com> * em-format-html.c (efh_format_headers): add the monkey button if we're from evolution. See #52977. (emfh_gethttp): cast away a warning. svn path=/trunk/; revision=25372
Diffstat (limited to 'mail')
-rw-r--r--mail/ChangeLog4
-rw-r--r--mail/em-format-html.c32
2 files changed, 29 insertions, 7 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog
index 7614b2cbcb..08bd398fcb 100644
--- a/mail/ChangeLog
+++ b/mail/ChangeLog
@@ -1,5 +1,9 @@
2004-04-08 Not Zed <NotZed@Ximian.com>
+ * em-format-html.c (efh_format_headers): add the monkey button if
+ we're from evolution. See #52977.
+ (emfh_gethttp): cast away a warning.
+
* mail-folder-cache.c:
(update_1folder): VJUNK_FOLDER's dont exist, they're VTRASH
folders now.
diff --git a/mail/em-format-html.c b/mail/em-format-html.c
index bdc981ed67..8a6e1a10cf 100644
--- a/mail/em-format-html.c
+++ b/mail/em-format-html.c
@@ -446,7 +446,7 @@ static void emfh_gethttp(struct _EMFormatHTMLJob *job, int cancelled)
if (!(job->format->load_http_now
|| job->format->load_http == MAIL_CONFIG_HTTP_ALWAYS
|| (job->format->load_http == MAIL_CONFIG_HTTP_SOMETIMES
- && em_utils_in_addressbook(camel_mime_message_get_from(job->format->format.message))))) {
+ && em_utils_in_addressbook((CamelInternetAddress *)camel_mime_message_get_from(job->format->format.message))))) {
/* TODO: Ideally we would put the http requests into another queue and only send them out
if the user selects 'load images', when they do. The problem is how to maintain this
state with multiple renderings, and how to adjust the thread dispatch/setup routine to handle it */
@@ -1622,7 +1622,8 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part)
const char *charset;
CamelContentType *ct;
struct _camel_header_raw *header;
-
+ int rupert = FALSE;
+
ct = camel_mime_part_get_content_type((CamelMimePart *)part);
charset = camel_content_type_param (ct, "charset");
charset = e_iconv_charset_name(charset);
@@ -1630,7 +1631,7 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part)
if (!efh->simple_headers)
camel_stream_printf(stream,
"<font color=\"#%06x\">\n"
- "<table cellpadding=0>\n",
+ "<table cellpadding=\"0\" width=\"100%\"><tr><td><table cellpadding=\"0\">\n",
efh->text_colour & 0xffffff);
/* dump selected headers */
@@ -1644,9 +1645,8 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part)
} else {
while (h->next) {
int mailer;
-
+
header = ((CamelMimePart *)part)->headers;
-
mailer = !g_ascii_strcasecmp (h->name, "X-Evolution-Mailer");
while (header) {
@@ -1658,6 +1658,8 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part)
xmailer.value = header->value;
efh_format_header (emf, stream, part, &xmailer, h->flags, charset);
+ if (strstr(header->value, "Evolution"))
+ rupert = TRUE;
} else if (!g_ascii_strcasecmp (header->name, h->name)) {
efh_format_header(emf, stream, part, header, h->flags, charset);
}
@@ -1667,8 +1669,24 @@ efh_format_headers(EMFormatHTML *efh, CamelStream *stream, CamelMedium *part)
}
}
- if (!efh->simple_headers)
- camel_stream_printf (stream, "</table>\n</font>\n");
+ if (!efh->simple_headers) {
+ camel_stream_printf(stream, "</table></td>");
+
+ if (rupert) {
+ char *classid;
+ CamelMimePart *iconpart;
+
+ classid = g_strdup_printf("icon:///em-format-html/%s/icon/header", emf->part_id->str);
+ camel_stream_printf(stream, "<td align=\"right\" valign=\"top\"><img src=\"%s\"></td>", classid);
+ iconpart = em_format_html_file_part((EMFormatHTML *)emf, "image/png", EVOLUTION_ICONSDIR, "monkey-16.png");
+ if (iconpart) {
+ em_format_add_puri(emf, sizeof(EMFormatPURI), classid, iconpart, efh_write_image);
+ camel_object_unref(iconpart);
+ }
+ g_free(classid);
+ }
+ camel_stream_printf (stream, "</tr></table>\n</font>\n");
+ }
}
static void efh_format_message(EMFormat *emf, CamelStream *stream, CamelMedium *part)