evolution r35375 - branches/gnome-2-22/plugins/prefer-plain



Author: mcrha
Date: Thu Apr 17 10:51:40 2008
New Revision: 35375
URL: http://svn.gnome.org/viewvc/evolution?rev=35375&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:
   branches/gnome-2-22/plugins/prefer-plain/ChangeLog
   branches/gnome-2-22/plugins/prefer-plain/prefer-plain.c

Modified: branches/gnome-2-22/plugins/prefer-plain/prefer-plain.c
==============================================================================
--- branches/gnome-2-22/plugins/prefer-plain/prefer-plain.c	(original)
+++ branches/gnome-2-22/plugins/prefer-plain/prefer-plain.c	Thu Apr 17 10:51:40 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]