aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorJeffrey Stedfast <fejj@ximian.com>2001-07-20 07:11:13 +0800
committerJeffrey Stedfast <fejj@src.gnome.org>2001-07-20 07:11:13 +0800
commit49e81a0bda0d8914a4785d73e366b680186e9406 (patch)
treef2d637e244fdc12eb9b822b0586140c879b85e71 /camel/ChangeLog
parentd20ac81f624dd26da52a921add73cb96f96cddbb (diff)
downloadgsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.tar
gsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.tar.gz
gsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.tar.bz2
gsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.tar.lz
gsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.tar.xz
gsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.tar.zst
gsoc2013-evolution-49e81a0bda0d8914a4785d73e366b680186e9406.zip
Modified to treat the return value from camel_charset_locale_name() as a
2001-07-19 Jeffrey Stedfast <fejj@ximian.com> * camel-pgp-context.c (pgp_verify): Modified to treat the return value from camel_charset_locale_name() as a const char*. * camel-sasl-digest-md5.c (digest_response): Modified to treat the return value from camel_charset_locale_name() as a const char*. * camel-charset-map.c (camel_charset_locale_name): Modify to return const char* by returning the static locale_charset which is created inside of camel_charset_map_init(). (camel_charset_map_init): Find the locale charset here and set the static variable. svn path=/trunk/; revision=11245
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog52
1 files changed, 34 insertions, 18 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 3e767da515..9119e3439c 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,26 +1,42 @@
+2001-07-19 Jeffrey Stedfast <fejj@ximian.com>
+
+ * camel-pgp-context.c (pgp_verify): Modified to treat the return
+ value from camel_charset_locale_name() as a const char*.
+
+ * camel-sasl-digest-md5.c (digest_response): Modified to treat the
+ return value from camel_charset_locale_name() as a const char*.
+
+ * camel-charset-map.c (camel_charset_locale_name): Modify to
+ return const char* by returning the static locale_charset which is
+ created inside of camel_charset_map_init().
+ (camel_charset_map_init): Find the locale charset here and set the
+ static variable.
+
2001-07-19 Peter Williams <peterw@ximian.com>
- Policy change: NULL url's are no longer allowed in CamelFolderInfos. They used
- to signify that the folder was, in IMAP jargon, NoSelect; now the same effect
- is achieved by adding a "noselect=yes" parameter to the end of the URL. As far
- as I know, IMAP is the only affected provider.
+ Policy change: NULL url's are no longer allowed in
+ CamelFolderInfos. They used to signify that the folder was, in
+ IMAP jargon, NoSelect; now the same effect is achieved by adding a
+ "noselect=yes" parameter to the end of the URL. As far as I know,
+ IMAP is the only affected provider.
- * providers/imap/camel-imap-store.c (delete_folder): New function. Implement
- folder deletion.
- (camel_imap_store_class_init): Set the delete_folder class function here.
- (get_folder_status): New function. Utility wrapper around the STATUS command.
- (create_folder): If the parent folder is NoSelect but is empty, delete it
- and recreate it as a a subfolder-containing folder. If it is NoSelect but
- contains messages, set an exception.
- (parse_list_response_as_folder_info): Always set the FolderInfo's URL, but
- add a NoSelect parameter if it isn't selectable.
- (get_folder_info_online): Change logic of removing the namespace to reflect
- URL change. Same for logic of checking unread counts.
+ * providers/imap/camel-imap-store.c (delete_folder): New
+ function. Implement folder deletion.
+ (camel_imap_store_class_init): Set the delete_folder class
+ function here.
+ (get_folder_status): New function. Utility wrapper around the
+ STATUS command.
+ (create_folder): If the parent folder is NoSelect but is empty,
+ delete it and recreate it as a a subfolder-containing folder. If
+ it is NoSelect but contains messages, set an exception.
+ (parse_list_response_as_folder_info): Always set the FolderInfo's
+ URL, but add a NoSelect parameter if it isn't selectable.
+ (get_folder_info_online): Change logic of removing the namespace
+ to reflect URL change. Same for logic of checking unread counts.
(get_folder_info_online): Use get_folder_status to simplify this.
- * camel-store.c (camel_folder_info_build): When creating
- dummy parents, copy the child's URL and set the NoSelect
- parameter.
+ * camel-store.c (camel_folder_info_build): When creating dummy
+ parents, copy the child's URL and set the NoSelect parameter.
2001-07-19 Jeffrey Stedfast <fejj@ximian.com>