Changeset 3270
- Timestamp:
- 01/16/08 16:49:52
- Files:
-
- trunk/docs/devel/reference/tmpl/tny-account-store.sgml (modified) (1 diff)
- trunk/docs/devel/reference/tmpl/tny-account.sgml (modified) (1 diff)
- trunk/docs/devel/reference/tmpl/tny-device.sgml (modified) (1 diff)
- trunk/docs/devel/reference/tmpl/tny-mime-part.sgml (modified) (3 diffs)
- trunk/docs/devel/reference/tmpl/tny-queue-task.sgml (added)
- trunk/docs/devel/reference/tmpl/tny-queue.sgml (added)
- trunk/docs/devel/reference/tmpl/tny-send-queue.sgml (modified) (3 diffs)
- trunk/docs/devel/reference/tmpl/tny-shared.sgml (modified) (8 diffs)
- trunk/tests/functional/msg-sender.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/docs/devel/reference/tmpl/tny-account-store.sgml
r3194 r3270 49 49 50 50 </para> 51 52 @: 51 53 52 54 @tnyaccountstore: the object which received the signal. trunk/docs/devel/reference/tmpl/tny-account.sgml
r3194 r3270 28 28 29 29 </para> 30 31 @:32 30 33 31 @tnyaccount: the object which received the signal. trunk/docs/devel/reference/tmpl/tny-device.sgml
r3194 r3270 36 36 37 37 </para> 38 39 @: 40 @: 38 41 39 42 @tnydevice: the object which received the signal. trunk/docs/devel/reference/tmpl/tny-mime-part.sgml
r3174 r3270 35 35 @decode_to_stream_func: 36 36 @write_to_stream_func: 37 @construct_f rom_stream_func:37 @construct_func: 38 38 @get_filename_func: 39 39 @get_content_id_func: … … 54 54 @set_header_pair_func: 55 55 @decode_to_stream_async_func: 56 @get_transfer_encoding_func: 56 57 57 58 <!-- ##### FUNCTION tny_mime_part_get_content_type ##### --> … … 91 92 @stream: 92 93 @err: 93 @Returns:94 95 96 <!-- ##### FUNCTION tny_mime_part_construct_from_stream ##### -->97 <para>98 99 </para>100 101 @self:102 @stream:103 @type:104 94 @Returns: 105 95 trunk/docs/devel/reference/tmpl/tny-send-queue.sgml
r3194 r3270 40 40 </para> 41 41 42 @:43 @:44 @:45 @:46 47 42 @tnysendqueue: the object which received the signal. 48 43 @arg1: … … 54 49 55 50 </para> 56 57 @:58 @:59 @:60 @:61 @:62 51 63 52 @tnysendqueue: the object which received the signal. … … 71 60 72 61 </para> 73 74 @:75 @:76 @:77 @:78 @:79 62 80 63 @tnysendqueue: the object which received the signal. trunk/docs/devel/reference/tmpl/tny-shared.sgml
r3194 r3270 54 54 </para> 55 55 56 @ :56 @tnyaccountstore: the object which received the signal. 57 57 58 58 <!-- ##### STRUCT TnyAccountStoreIface ##### --> … … 228 228 @decode_to_stream_func: 229 229 @write_to_stream_func: 230 @construct_f rom_stream_func:230 @construct_func: 231 231 @get_filename_func: 232 232 @get_content_id_func: … … 247 247 @set_header_pair_func: 248 248 @decode_to_stream_async_func: 249 @get_transfer_encoding_func: 249 250 250 251 <!-- ##### STRUCT TnyAccount ##### --> … … 259 260 </para> 260 261 261 @ tnyaccount: the object which received the signal.262 @: 262 263 263 264 <!-- ##### SIGNAL TnyAccount::connection-status-changed ##### --> … … 318 319 </para> 319 320 320 @ :321 @ :321 @tnydevice: the object which received the signal. 322 @arg1: 322 323 323 324 <!-- ##### STRUCT TnyDeviceIface ##### --> … … 490 491 </para> 491 492 492 @ tnysendqueue: the object which received the signal.493 @ arg1:494 @ arg2:495 @ arg3:493 @: 494 @: 495 @: 496 @: 496 497 497 498 <!-- ##### SIGNAL TnySendQueue::msg-sending ##### --> … … 500 501 </para> 501 502 502 @ tnysendqueue: the object which received the signal.503 @ arg1:504 @ arg2:505 @ arg3:506 @ arg4:503 @: 504 @: 505 @: 506 @: 507 @: 507 508 508 509 <!-- ##### SIGNAL TnySendQueue::msg-sent ##### --> … … 511 512 </para> 512 513 513 @ tnysendqueue: the object which received the signal.514 @ arg1:515 @ arg2:516 @ arg3:517 @ arg4:514 @: 515 @: 516 @: 517 @: 518 @: 518 519 519 520 <!-- ##### STRUCT TnySendQueueIface ##### --> trunk/tests/functional/msg-sender.c
r2030 r3270 98 98 tny_stream_reset (html_stream); 99 99 100 tny_mime_part_construct _from_stream (plain_body, plain_stream, "text/plain; charset=utf-8");101 tny_mime_part_construct _from_stream (html_body, html_stream, "text/html; charset=utf-8");100 tny_mime_part_construct (plain_body, plain_stream, "text/plain; charset=utf-8", "7bit"); 101 tny_mime_part_construct (html_body, html_stream, "text/html; charset=utf-8", "7bit"); 102 102 103 103 tny_mime_part_add_part (TNY_MIME_PART (retval), html_body);
