diff options
author | Dan Winship <danw@src.gnome.org> | 2001-04-26 22:28:28 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-04-26 22:28:28 +0800 |
commit | 0fd682c21fdd207b2edadfae876341875120ec8e (patch) | |
tree | dc795b6c1b0daa88eab69672c68452683297827b /mail/mail-format.c | |
parent | c0a03301d97d5c9771dba1714a6d945c1889e1e4 (diff) | |
download | gsoc2013-evolution-0fd682c21fdd207b2edadfae876341875120ec8e.tar.gz gsoc2013-evolution-0fd682c21fdd207b2edadfae876341875120ec8e.tar.zst gsoc2013-evolution-0fd682c21fdd207b2edadfae876341875120ec8e.zip |
Use <font color=...> to mark citations rather than italicizing them, which
* mail-format.c (handle_text_plain_flowed): Use <font color=...>
to mark citations rather than italicizing them, which has never
looked very nice. Now this is more consistent with the non-flowed
case.
svn path=/trunk/; revision=9581
Diffstat (limited to 'mail/mail-format.c')
-rw-r--r-- | mail/mail-format.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/mail/mail-format.c b/mail/mail-format.c index 927751ba99..036a36a84b 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -960,6 +960,7 @@ handle_text_plain_flowed (char *buf, MailDisplay *md) char *text, *line, *eol, *p; int prevquoting = 0, quoting, len; gboolean br_pending = FALSE; + guint32 citation_color = mail_config_get_citation_color (); mail_html_write (md->html, md->stream, "\n<!-- text/plain, flowed -->\n<font size=\"-3\"> </font><br>\n<tt>\n"); @@ -974,8 +975,11 @@ handle_text_plain_flowed (char *buf, MailDisplay *md) for (p = line; *p == '>'; p++) quoting++; if (quoting != prevquoting) { - mail_html_write (md->html, md->stream, "%s\n", - prevquoting == 0 ? "<i>\n" : ""); + if (prevquoting == 0) { + mail_html_write (md->html, md->stream, + "<font color=\"#%06x\">", + citation_color); + } while (quoting > prevquoting) { mail_html_write (md->html, md->stream, "<blockquote>"); @@ -986,8 +990,10 @@ handle_text_plain_flowed (char *buf, MailDisplay *md) "</blockquote>"); prevquoting--; } - mail_html_write (md->html, md->stream, "%s\n", - prevquoting == 0 ? "</i>\n" : ""); + if (quoting == 0) { + mail_html_write (md->html, md->stream, + "</font>\n"); + } } else if (br_pending) { mail_html_write (md->html, md->stream, "<br>\n"); br_pending = FALSE; |