aboutsummaryrefslogtreecommitdiffstats
path: root/mail/em-format-html-display.c
diff options
context:
space:
mode:
authorMilan Crha <mcrha@redhat.com>2009-02-11 00:24:31 +0800
committerMilan Crha <mcrha@src.gnome.org>2009-02-11 00:24:31 +0800
commite936b7d67b2dd07a16310361dfafb26c81a6b8f6 (patch)
tree3bd7f7fa1623d693a9bcd0aa9e1f76c4c69c9474 /mail/em-format-html-display.c
parent5ad864fab10192fe7000f6e91c0adde62402dc17 (diff)
downloadgsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.tar
gsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.tar.gz
gsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.tar.bz2
gsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.tar.lz
gsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.tar.xz
gsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.tar.zst
gsoc2013-evolution-e936b7d67b2dd07a16310361dfafb26c81a6b8f6.zip
Format signature/encryption information nicer.
2009-02-10 Milan Crha <mcrha@redhat.com> * em-format-html-display.c: (efhd_format_secure): Format signature/encryption information nicer. svn path=/trunk/; revision=37241
Diffstat (limited to 'mail/em-format-html-display.c')
-rw-r--r--mail/em-format-html-display.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mail/em-format-html-display.c b/mail/em-format-html-display.c
index 49e2d1bac9..bef662452f 100644
--- a/mail/em-format-html-display.c
+++ b/mail/em-format-html-display.c
@@ -1226,14 +1226,17 @@ efhd_format_secure(EMFormat *emf, CamelStream *stream, CamelMimePart *part, Came
pobj = (struct _smime_pobject *)em_format_html_add_pobject((EMFormatHTML *)emf, sizeof(*pobj), classid, part, efhd_xpkcs7mime_button);
pobj->valid = camel_cipher_validity_clone(valid);
pobj->object.free = efhd_xpkcs7mime_free;
- camel_stream_printf(stream, "<td valign=top><object classid=\"%s\"></object></td><td width=100%% valign=top>", classid);
+ camel_stream_printf(stream, "<td valign=center><object classid=\"%s\"></object></td><td width=100%% valign=center>", classid);
g_free(classid);
if (valid->sign.status != CAMEL_CIPHER_VALIDITY_SIGN_NONE) {
- camel_stream_printf(stream, "%s<br>", _(smime_sign_table[valid->sign.status].shortdesc));
+ camel_stream_printf (stream, "%s", _(smime_sign_table[valid->sign.status].shortdesc));
}
if (valid->encrypt.status != CAMEL_CIPHER_VALIDITY_ENCRYPT_NONE) {
- camel_stream_printf(stream, "%s<br>", _(smime_encrypt_table[valid->encrypt.status].shortdesc));
+ if (valid->sign.status != CAMEL_CIPHER_VALIDITY_SIGN_NONE) {
+ camel_stream_printf (stream, "<br>");
+ }
+ camel_stream_printf (stream, "%s", _(smime_encrypt_table[valid->encrypt.status].shortdesc));
}
camel_stream_printf(stream, "</td></tr></table>");