aboutsummaryrefslogtreecommitdiffstats
path: root/camel/ChangeLog
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2000-02-21 03:59:35 +0800
committerDan Winship <danw@src.gnome.org>2000-02-21 03:59:35 +0800
commit8997a54b4257d9a1096d7c422725459fdc3823c7 (patch)
tree56f7e39f26a7bc3909361c7d92954836916c6070 /camel/ChangeLog
parent83ad2c75e3da0305514dedcd22f67a9d2a516002 (diff)
downloadgsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.tar
gsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.tar.gz
gsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.tar.bz2
gsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.tar.lz
gsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.tar.xz
gsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.tar.zst
gsoc2013-evolution-8997a54b4257d9a1096d7c422725459fdc3823c7.zip
Michael created camel/ChangeLog on 2/12 but didn't commit it until 2/18,
meaning his ChangeLog entries ended up there and everyone else's ended up in the top-level ChangeLog. Move the post-2/12 ChangeLog entries from ChangeLog to camel/ChangeLog so that you don't need to look in two different places for that week's worth of commits. svn path=/trunk/; revision=1868
Diffstat (limited to 'camel/ChangeLog')
-rw-r--r--camel/ChangeLog183
1 files changed, 183 insertions, 0 deletions
diff --git a/camel/ChangeLog b/camel/ChangeLog
index d5f31c002c..85f65215ab 100644
--- a/camel/ChangeLog
+++ b/camel/ChangeLog
@@ -16,12 +16,195 @@
has to work!). Also, always include a path part, even if it is an
empty string.
+2000-02-18 Dan Winship <danw@helixcode.com>
+
+ * camel/camel-types.h: New header with the typedefs for all camel
+ classes. Now the class headers can just include this and the
+ header for the parent type. This makes it possible for
+ CamelService to include a CamelSession without creating an
+ #include loop.
+
+ * camel/*:
+ * composer/e-msg-composer-attachment-bar.h:
+ * mail/folder-browser.c:
+ * mail/message-list.c: frob #includes to match the new reality
+
+2000-02-17 Dan Winship <danw@helixcode.com>
+
+ * camel/camel-service.h:
+ * camel/camel-service.c: Make camel-service us a Gurl internally.
+ Remove the login/password interfaces and instead provide
+ camel_service_connect_with_url. Add CamelExceptions
+
+2000-02-17 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/camel-formatter.c (handle_text_plain):
+ (handle_text_html): use camel_stream_reset instead
+ of seek. The formatter should be able to work
+ with all streams, not only seekable streams.
+ In the case where some provider implementation
+ would not be able to provide a reset method
+ to their stream, implementors would have
+ to find a workaround.
+
+ * camel/camel-session.c (camel_session_new): use
+ (void) instean of () in function decl.
+
+ * camel/camel-folder.c: ifdef async operation
+ related code.
+
+ * camel/camel-seekable-stream.c (_seek): added a warning.
+ (_reset): default implementation of reset for seekable
+ stream.
+
+ * camel/camel-mime-message.h: set_received_date declaration fix.
+ cosmetic changes.
+
+ * camel/providers/mbox/camel-mbox-provider.c (camel_provider_module_init):
+ use (void) instead of ().
+
+ * camel/camel-stream.c (camel_stream_reset):
+ new method for CamelStream.
+
+2000-02-17 Dan Winship <danw@helixcode.com>
+
+ * camel/url-util.c (g_url_to_string): New function to convert
+ a Gurl back into a char *.
+
+2000-02-17 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/camel-formatter.c (handle_text_plain):
+ revamped so that it uses the output stream
+ of the data wrapper
+ (handle_text_html): ditto.
+
+
+ * camel/camel-simple-data-wrapper.h:
+ * camel/camel-simple-data-wrapper.c (camel_simple_data_wrapper_new):
+ use (void) instead of ().
+ (_get_output_stream): simple implementation.
+
+2000-02-16 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/camel-data-wrapper.c (_set_input_stream): ref input stream
+ (_set_output_stream): ref output stream
+ (_finalize): unref input and output streams
+
+ * camel/camel-seekable-substream.c (_set_bounds): don't
+ seek the begining of the substream.
+ (_eos): fix eos condition testing.
+ (_finalize): unref parent stream
+ (_init_with_seekable_stream_and_bounds): ref parent stream
+
+ * camel/gstring-util.c (g_string_equal_for_hash):
+ (g_string_equal_for_glist): return type is int.
+
+ * camel/camel.h:
+ * camel/camel.c (camel_init): use (void)
+ instead of ().
+
2000-02-16 NotZed <NotZed@HelixCode.com>
* providers/mbox/Makefile.am (libcamelmbox_la_LIBADD): Added
libfilter to link line (temporarily?). Required for
filter-sexp.
+2000-02-15 bertrand <bertrand@helixcode.com>
+
+ * camel/camel-multipart.c (_localize_part):
+ this routine replaces the _read_part routine
+ and does not store the part in a buffer.
+ (_set_input_stream): use the set_input_stream
+ instead of the construct_from_stream.
+ each bodypart is given an input stream.
+
+ * camel/camel-mime-part-utils.c:
+ include the data-wrapper-repository header.
+ (camel_mime_part_construct_content_from_stream):
+ use the set_input_stream instead of the
+ construct_from_stream method.
+
+ * camel/camel-seekable-substream.c (_set_bounds):
+ cur position is set to 0 not to inf_bound.
+
+2000-02-15 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/camel-mime-part.c: include gmime-base64.h
+ various compilation and runtime fixes.
+ (_set_input_stream): store the input substream
+ for the content object.
+
+ * camel/camel-data-wrapper.h: declare the
+ set/get function on input/output stream.
+
+ * camel/camel-mime-part.c (_get_content_object):
+ don't use a temporary mem stream.
+
+ * camel/camel-seekable-substream.c (_seek):
+ (_eos):
+ (_read): the substream can be unlimited in length
+
+ * camel/camel-data-wrapper.c (camel_data_wrapper_class_init):
+ set the get/set_input/output_stream methods.
+
+ * camel/camel-multipart.c (_construct_from_stream):
+ camel_stream_seek -> camel_seekable_stream_seek
+
+2000-02-14 Miguel de Icaza <miguel@gnu.org>
+
+ * camel/providers/mbox/Makefile.am (libcamelmbox_la_LIBADD): Add
+ the unicode libraries as well.
+
+ * camel/camel-provider.c (camel_provider_register_as_module): Add
+ error reporting here. Desire to use Solaris increases. Hair loss
+ in the last two hours: 5,400.
+
+ * camel/providers/mbox/camel-mbox-provider.c
+ (camel_mbox_get_provider): Renamed function.
+
+ * camel/camel.h: All include files use camel/ now here.
+
+ * camel/providers/mbox/Makefile.am: Drop all the dynamism from
+ Camel, and make this a standard library.
+
+2000-02-14 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/gmime-utils.c (get_header_array_from_stream): use the
+ eos stream method.
+ (gmime_read_line_from_stream): ditto.
+
+ * camel/camel-stream-fs.h (struct ): add the eof field
+ cosmetics changes.
+
+ * camel/camel-stream-fs.c (camel_stream_fs_init): set eof.
+ (_read): set eof on end of file.
+ (_eos): implemented.
+
+ * camel/gmime-utils.c (get_header_array_from_stream):
+ make a blocking version of the header parser.
+ When the fs stream uses gnome-vfs, this should
+ be changed.
+ (gmime_read_line_from_stream): ditto.
+
+2000-02-11 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/camel-stream-fs.c:
+ everywhere, when using the cur_pos field, do it
+ on the CamelSeekableStream object.
+ (_seek): small fix.
+
+ * camel/camel-seekable-stream.c (camel_seekable_stream_seek):
+ s/camel_stream_seek/camel_seekable_stream_seek/g
+
+ * camel/camel-seekable-stream.h:
+ (struct ): added a field to store the
+ current position.
+
+ * camel/camel-seekable-stream.c (camel_seekable_stream_get_current_position):
+ New function. Allows to get the current position
+ of a seekable stream.
+
+
2000-02-13 NotZed <notzed@zedzone.helixcode.com>
* providers/mbox/camel-mbox-search.c: New file, implements the