aboutsummaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorbertrand <Bertrand.Guiheneuf@aful.org>1999-08-03 18:19:39 +0800
committerBertrand Guiheneuf <bertrand@src.gnome.org>1999-08-03 18:19:39 +0800
commite9c6d8921cce940e590f763a881794323a9e6703 (patch)
treed8e989d8119fe6d8c825364c0b7dd16c6c2179be /ChangeLog
parentbba2b0a352933d8aa8894fe1b7a8a5185378990f (diff)
downloadgsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.tar
gsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.tar.gz
gsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.tar.bz2
gsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.tar.lz
gsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.tar.xz
gsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.tar.zst
gsoc2013-evolution-e9c6d8921cce940e590f763a881794323a9e6703.zip
Multipart Mime message parsing works with plain text parts. Woohooo :))))
Making it work with other types is now just a matter of writing the various data wrappers. And display them will just be a matter of writing the good bonobo components. 1999-08-03 bertrand <Bertrand.Guiheneuf@aful.org> * camel/camel-simple-data-wrapper.c (_construct_from_stream): more debugging output + nb_bytes_read is now a signed int to avoid bug when eos is encountered. * camel/camel-mime-part.c (_construct_from_stream): sync to data_wrapper_repository function name changes. Use default "text/plain" type when conten-type field is not found. (following RFC 2046 spec). * camel/data-wrapper-repository.c (data_wrapper_repository_set_data_wrapper_type): (data_wrapper_repository_get_data_wrapper_type): change function name prefix (s/data_wrapper/data_wrapper_repository/) * camel/camel-multipart.c (_read_part): add `\n` at eol but not before boundary. * camel/gmime-utils.c (get_header_table_from_stream): correct implementation of end of stream detection. svn path=/trunk/; revision=1070
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog23
1 files changed, 22 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a966b99a0b..3b7dd8bb44 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,24 @@
+1999-08-03 bertrand <Bertrand.Guiheneuf@aful.org>
+
+ * camel/camel-simple-data-wrapper.c (_construct_from_stream):
+ more debugging output + nb_bytes_read is now a signed int
+ to avoid bug when eos is encountered.
+
+ * camel/camel-mime-part.c (_construct_from_stream):
+ sync to data_wrapper_repository function name changes.
+ Use default "text/plain" type when conten-type field
+ is not found. (following RFC 2046 spec).
+
+ * camel/data-wrapper-repository.c (data_wrapper_repository_set_data_wrapper_type):
+ (data_wrapper_repository_get_data_wrapper_type):
+ change function name prefix (s/data_wrapper/data_wrapper_repository/)
+
+ * camel/camel-multipart.c (_read_part):
+ add `\n` at eol but not before boundary.
+
+ * camel/gmime-utils.c (get_header_table_from_stream):
+ correct implementation of end of stream detection.
+
1999-08-01 bertrand <Bertrand.Guiheneuf@aful.org>
* camel/camel-multipart.c (_read_part):
@@ -28,7 +49,7 @@
do not return NULL when line is empty.
* camel/camel-multipart.c (_read_part): return true when end
- of multipart is found, not the contrary
+ of multipart is found, not the opposite
1999-07-31 bertrand <Bertrand.Guiheneuf@aful.org>