evolution r35374 - trunk/plugins/prefer-plain
- From: mcrha svn gnome org
- To: svn-commits-list gnome org
- Subject: evolution r35374 - trunk/plugins/prefer-plain
- Date: Thu, 17 Apr 2008 10:51:22 +0100 (BST)
Author: mcrha
Date: Thu Apr 17 10:51:21 2008
New Revision: 35374
URL: http://svn.gnome.org/viewvc/evolution?rev=35374&view=rev
Log:
2008-04-17 Milan Crha <mcrha redhat com>
** Fix for bug #451976
* prefer-plain.c: (org_gnome_prefer_plain_multipart_alternative): Try
to find text/html part in multipart/alternative when in normal mode.
Modified:
trunk/plugins/prefer-plain/ChangeLog
trunk/plugins/prefer-plain/prefer-plain.c
Modified: trunk/plugins/prefer-plain/prefer-plain.c
==============================================================================
--- trunk/plugins/prefer-plain/prefer-plain.c (original)
+++ trunk/plugins/prefer-plain/prefer-plain.c Thu Apr 17 10:51:21 2008
@@ -99,7 +99,26 @@
int i, nparts, partidlen, displayid = 0;
if (epp_mode == EPP_NORMAL) {
- t->item->handler.old->handler(t->format, t->stream, t->part, t->item->handler.old);
+ /* Try to find text/html part even when not as last and force to show it.
+ Old handler will show the last part of multipart/alternate, but if we
+ can offer HTML, then offer it, regardless of position in multipart. */
+ nparts = camel_multipart_get_number (mp);
+ for (i = 0; i < nparts; i++) {
+ part = camel_multipart_get_part (mp, i);
+ if (part && camel_content_type_is (camel_mime_part_get_content_type (part), "text", "html")) {
+ displayid = i;
+ display_part = part;
+ break;
+ }
+ }
+
+ if (display_part) {
+ g_string_append_printf (t->format->part_id, ".alternative.%d", displayid);
+ em_format_part_as (t->format, t->stream, display_part, "text/html");
+ g_string_truncate (t->format->part_id, partidlen);
+ } else {
+ t->item->handler.old->handler (t->format, t->stream, t->part, t->item->handler.old);
+ }
return;
} else if (!CAMEL_IS_MULTIPART(mp)) {
em_format_format_source(t->format, t->stream, t->part);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]