Changeset 3736

Show
Ignore:
Timestamp:
08/12/08 18:14:16
Author:
svillar
Message:

* Commited patch by Thomas Monjalon regarding text to UTF-8 conversions

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/ChangeLog

    r3734 r3736  
     12008-08-12  Thomas Monjalon  <thomas.monjalon@openwide.fr> 
     2 
     3        * libtinymail-camel/tny-camel-mime-part.c: convert only plain text 
     4        parts to UTF-8. 
     5        * Patch commited by Sergio Villar Senin 
     6 
    172008-08-06  Sergio Villar Senin  <svillar@igalia.com> 
    28 
  • trunk/libtinymail-camel/tny-camel-mime-part.c

    r3707 r3736  
    782782        } 
    783783         
    784         if (camel_content_type_is (wrapper->mime_type, "text", "*")) 
     784        if (camel_content_type_is (wrapper->mime_type, "text", "plain")) 
    785785                bytes = (gssize) camel_stream_format_text (wrapper, cstream); 
    786786        else 
     
    946946                camel_stream_reset (wrapper->stream); 
    947947 
    948                 if (camel_content_type_is (wrapper->mime_type, "text", "*")) 
     948                if (camel_content_type_is (wrapper->mime_type, "text", "plain")) 
    949949                        bytes = camel_stream_format_text (wrapper, stream); 
    950950                else