Put an <hr> between parts of a multipart.

2003-10-21  Jeffrey Stedfast  <fejj@ximian.com>

	* em-format.c (emf_multipart_mixed): Put an <hr> between parts of
	a multipart.

svn path=/trunk/; revision=22969
This commit is contained in:
Jeffrey Stedfast
2003-10-21 20:36:18 +00:00
committed by Jeffrey Stedfast
parent 1b201f8d76
commit fd56880083
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2003-10-21 Jeffrey Stedfast <fejj@ximian.com>
* em-format.c (emf_multipart_mixed): Put an <hr> between parts of
a multipart.
2003-10-21 Not Zed <NotZed@Ximian.com>
* mail-component.c (emc_popup_properties): implement.

View File

@ -974,9 +974,8 @@ emf_multipart_mixed(EMFormat *emf, CamelStream *stream, CamelMimePart *part, con
nparts = camel_multipart_get_number(mp);
for (i = 0; i < nparts; i++) {
/* FIXME: separate part markers ...
if (i != 0)
camel_stream_printf(stream, "<hr>\n");*/
camel_stream_printf (stream, "<hr>\n");
part = camel_multipart_get_part(mp, i);
em_format_part(emf, stream, part);
@ -996,7 +995,7 @@ emf_multipart_alternative(EMFormat *emf, CamelStream *stream, CamelMimePart *par
return;
}
/* as pre rfc, find the last part we know how to display */
/* as per rfc, find the last part we know how to display */
nparts = camel_multipart_get_number(mp);
for (i = 0; i < nparts; i++) {
CamelMimePart *part = camel_multipart_get_part(mp, i);