[evolution-patches] #61186, mail, breaks string freeze
- From: Not Zed <notzed ximian com>
- To: evolution-patches ximian com
- Subject: [evolution-patches] #61186, mail, breaks string freeze
- Date: Thu, 08 Jul 2004 11:12:12 +0800
Its pretty cosmetic, but it needs to add some new strings too.
not sure if gpg tells us more liek that its looking up a remote key, that could also be added as progress reporting
Index: camel/ChangeLog
===================================================================
RCS file: /cvs/gnome/evolution/camel/ChangeLog,v
retrieving revision 1.2213
diff -u -3 -r1.2213 ChangeLog
--- camel/ChangeLog 2 Jul 2004 12:19:34 -0000 1.2213
+++ camel/ChangeLog 8 Jul 2004 03:11:29 -0000
@@ -1,3 +1,11 @@
+2004-07-08 Not Zed <NotZed Ximian com>
+
+ ** See bug #61186.
+
+ * camel-cipher-context.c (camel_cipher_sign):
+ (camel_cipher_verify, camel_cipher_encrypt, camel_cipher_decrypt):
+ Add preliminary progress reporting.
+
2004-07-02 Christian Neumair <chris gnome-de org>
* camel-smime-context.c: s/Can't/Cannot/.
Index: camel/camel-cipher-context.c
===================================================================
RCS file: /cvs/gnome/evolution/camel/camel-cipher-context.c,v
retrieving revision 1.17
diff -u -3 -r1.17 camel-cipher-context.c
--- camel/camel-cipher-context.c 10 Dec 2003 05:25:24 -0000 1.17
+++ camel/camel-cipher-context.c 8 Jul 2004 03:11:30 -0000
@@ -31,6 +31,7 @@
#include "camel-cipher-context.h"
#include "camel-stream.h"
+#include "camel-operation.h"
#include "camel-mime-utils.h"
#include "camel-medium.h"
@@ -123,13 +124,17 @@
int retval;
g_return_val_if_fail (CAMEL_IS_CIPHER_CONTEXT (context), -1);
-
+
+ camel_operation_start_transient(NULL, _("Signing message"));
+
CIPHER_LOCK(context);
retval = CCC_CLASS (context)->sign (context, userid, hash, ipart, opart, ex);
CIPHER_UNLOCK(context);
-
+
+ camel_operation_end(NULL);
+
return retval;
}
@@ -163,11 +168,15 @@
g_return_val_if_fail (CAMEL_IS_CIPHER_CONTEXT (context), NULL);
+ camel_operation_start_transient(NULL, _("Verifying message"));
+
CIPHER_LOCK(context);
valid = CCC_CLASS (context)->verify (context, ipart, ex);
CIPHER_UNLOCK(context);
+
+ camel_operation_end(NULL);
return valid;
}
@@ -202,12 +211,16 @@
int retval;
g_return_val_if_fail (CAMEL_IS_CIPHER_CONTEXT (context), -1);
+
+ camel_operation_start_transient(NULL, _("Encrypting message"));
CIPHER_LOCK(context);
retval = CCC_CLASS (context)->encrypt (context, userid, recipients, ipart, opart, ex);
CIPHER_UNLOCK(context);
+
+ camel_operation_end(NULL);
return retval;
}
@@ -237,12 +250,16 @@
CamelCipherValidity *valid;
g_return_val_if_fail (CAMEL_IS_CIPHER_CONTEXT (context), NULL);
+
+ camel_operation_start_transient(NULL, _("Decrypting message"));
CIPHER_LOCK(context);
valid = CCC_CLASS (context)->decrypt (context, ipart, opart, ex);
CIPHER_UNLOCK(context);
+
+ camel_operation_end(NULL);
return valid;
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]