aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2001-01-03 06:07:44 +0800
committerDan Winship <danw@src.gnome.org>2001-01-03 06:07:44 +0800
commitb1a4da002f0414ceb1c8f579edba47c600762a9c (patch)
tree5e6d7f9807ab82ecfe4c74a789ba05ccda3d2063 /camel/ChangeLog
parenta8b13bc0443aa150a3c007ea5e6bc48cc8ebbc51 (diff)
downloadgsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.tar
gsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.tar.gz
gsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.tar.bz2
gsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.tar.lz
gsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.tar.xz
gsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.tar.zst
gsoc2013-evolution-b1a4da002f0414ceb1c8f579edba47c600762a9c.zip
IMAP randomness.
* providers/imap/camel-imap-stream.[ch]: Remove. To be replaced. * providers/imap/Makefile.am (libcamelimapinclude_HEADERS): Remove camel-imap-stream.h * providers/imap/camel-imap-utils.c (imap_parse_flag_list): Take a char ** instead of char *, to return the position at the end of parsing like the string parsing functions. (imap_parse_string_generic): New function to parse a string, nstring, or astring. (imap_parse_nstring, imap_parse_astring): Now macros (imap_parse_string): Added * providers/imap/camel-imap-folder.h: Remove the "exists" field from CamelImapFolder. * providers/imap/camel-imap-folder.c: Remove unused include of camel-imap-stream.h. (camel_imap_folder_init): Remove no-longer-relevant summary initialization. (camel_imap_folder_new): Update for imap_parse_flag_list change, exists removal, and imap_rescan. (imap_rescan): New function that does most of the work of the old imap_refresh_info, but taking "exists" as an argument instead of getting it from the folder. Also calls camel_imap_folder_changed to do the summary updating and signalling, rather than duplicating that code. (imap_refresh_info): Just call imap_rescan (using the size of the folder summary as "exists"). (imap_update_summary): Update for imap_parse_flag_list change (camel_imap_folder_changed): Update for "exists" change. svn path=/trunk/; revision=7216
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog36
1 files changed, 36 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index 4888a385e5..802fdae253 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -1,5 +1,41 @@
2001-01-02 Dan Winship <danw@helixcode.com>
+ IMAP randomness.
+
+ * providers/imap/camel-imap-stream.[ch]: Remove. To be replaced.
+
+ * providers/imap/Makefile.am (libcamelimapinclude_HEADERS): Remove
+ camel-imap-stream.h
+
+ * providers/imap/camel-imap-utils.c (imap_parse_flag_list): Take a
+ char ** instead of char *, to return the position at the end of
+ parsing like the string parsing functions.
+ (imap_parse_string_generic): New function to parse a string,
+ nstring, or astring.
+ (imap_parse_nstring, imap_parse_astring): Now macros
+ (imap_parse_string): Added
+
+ * providers/imap/camel-imap-folder.h: Remove the "exists" field
+ from CamelImapFolder.
+
+ * providers/imap/camel-imap-folder.c: Remove unused include of
+ camel-imap-stream.h.
+ (camel_imap_folder_init): Remove no-longer-relevant summary
+ initialization.
+ (camel_imap_folder_new): Update for imap_parse_flag_list change,
+ exists removal, and imap_rescan.
+ (imap_rescan): New function that does most of the work of the old
+ imap_refresh_info, but taking "exists" as an argument instead of
+ getting it from the folder. Also calls camel_imap_folder_changed
+ to do the summary updating and signalling, rather than duplicating
+ that code.
+ (imap_refresh_info): Just call imap_rescan (using the size of the
+ folder summary as "exists").
+ (imap_update_summary): Update for imap_parse_flag_list change
+ (camel_imap_folder_changed): Update for "exists" change.
+
+2001-01-02 Dan Winship <danw@helixcode.com>
+
* camel-mime-utils.c (header_content_type_simple): New function to
return just foo/bar with no parameters.