diff options
-rw-r--r-- | mail/ChangeLog | 8 | ||||
-rw-r--r-- | mail/mail-format.c | 2 | ||||
-rw-r--r-- | mail/mail-tools.c | 2 |
3 files changed, 10 insertions, 2 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 9c2ed69532..4281030bd3 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,11 @@ +2002-06-02 Larry Ewing <lewing@ximian.com> + + * mail-tools.c (mail_tool_quote_message): make these citations as + well. + + * mail-format.c (handle_text_plain_flowed): make these blockquotes + into citations. + 2002-05-31 Not Zed <NotZed@Ximian.com> * mail-format.c (handle_multipart_signed): Changed to handle new diff --git a/mail/mail-format.c b/mail/mail-format.c index e1e6ebbe41..e7ca110766 100644 --- a/mail/mail-format.c +++ b/mail/mail-format.c @@ -1284,7 +1284,7 @@ handle_text_plain_flowed (char *buf, MailDisplay *md, GtkHTML *html, GtkHTMLStre br_pending--; } while (quoting > prevquoting) { - mail_html_write (html, stream, "<blockquote>"); + mail_html_write (html, stream, "<blockquote type=\"cite\">"); prevquoting++; } while (quoting < prevquoting) { diff --git a/mail/mail-tools.c b/mail/mail-tools.c index 44deb4c6ce..efc4ab49e1 100644 --- a/mail/mail-tools.c +++ b/mail/mail-tools.c @@ -369,7 +369,7 @@ mail_tool_quote_message (CamelMimeMessage *message, const char *fmt, ...) "<!--+GtkHTML:<DATA class=\"ClueFlow\" clear=\"orig\">-->", credits ? credits : "", mail_config_get_citation_color (), - want_plain ? "" : "<blockquote><i>", + want_plain ? "" : "<blockquote type=cite><i>", text, want_plain ? "" : "</i></blockquote>"); g_free (text); |