Changeset 3270

Show
Ignore:
Timestamp:
01/16/08 16:49:52
Author:
pvanhoof
Message:

preparations for pre release

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/docs/devel/reference/tmpl/tny-account-store.sgml

    r3194 r3270  
    4949 
    5050</para> 
     51 
     52@: 
    5153 
    5254@tnyaccountstore: the object which received the signal. 
  • trunk/docs/devel/reference/tmpl/tny-account.sgml

    r3194 r3270  
    2828 
    2929</para> 
    30  
    31 @: 
    3230 
    3331@tnyaccount: the object which received the signal. 
  • trunk/docs/devel/reference/tmpl/tny-device.sgml

    r3194 r3270  
    3636 
    3737</para> 
     38 
     39@:  
     40@: 
    3841 
    3942@tnydevice: the object which received the signal. 
  • trunk/docs/devel/reference/tmpl/tny-mime-part.sgml

    r3174 r3270  
    3535@decode_to_stream_func:  
    3636@write_to_stream_func:  
    37 @construct_from_stream_func:  
     37@construct_func:  
    3838@get_filename_func:  
    3939@get_content_id_func:  
     
    5454@set_header_pair_func:  
    5555@decode_to_stream_async_func:  
     56@get_transfer_encoding_func:  
    5657 
    5758<!-- ##### FUNCTION tny_mime_part_get_content_type ##### --> 
     
    9192@stream:  
    9293@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:  
    10494@Returns:  
    10595 
  • trunk/docs/devel/reference/tmpl/tny-send-queue.sgml

    r3194 r3270  
    4040</para> 
    4141 
    42 @:  
    43 @:  
    44 @:  
    45 @: 
    46  
    4742@tnysendqueue: the object which received the signal. 
    4843@arg1:  
     
    5449 
    5550</para> 
    56  
    57 @:  
    58 @:  
    59 @:  
    60 @:  
    61 @: 
    6251 
    6352@tnysendqueue: the object which received the signal. 
     
    7160 
    7261</para> 
    73  
    74 @:  
    75 @:  
    76 @:  
    77 @:  
    78 @: 
    7962 
    8063@tnysendqueue: the object which received the signal. 
  • trunk/docs/devel/reference/tmpl/tny-shared.sgml

    r3194 r3270  
    5454</para> 
    5555 
    56 @:  
     56@tnyaccountstore: the object which received the signal. 
    5757 
    5858<!-- ##### STRUCT TnyAccountStoreIface ##### --> 
     
    228228@decode_to_stream_func:  
    229229@write_to_stream_func:  
    230 @construct_from_stream_func:  
     230@construct_func:  
    231231@get_filename_func:  
    232232@get_content_id_func:  
     
    247247@set_header_pair_func:  
    248248@decode_to_stream_async_func:  
     249@get_transfer_encoding_func:  
    249250 
    250251<!-- ##### STRUCT TnyAccount ##### --> 
     
    259260</para> 
    260261 
    261 @tnyaccount: the object which received the signal. 
     262@:  
    262263 
    263264<!-- ##### SIGNAL TnyAccount::connection-status-changed ##### --> 
     
    318319</para> 
    319320 
    320 @:  
    321 @:  
     321@tnydevice: the object which received the signal. 
     322@arg1:  
    322323 
    323324<!-- ##### STRUCT TnyDeviceIface ##### --> 
     
    490491</para> 
    491492 
    492 @tnysendqueue: the object which received the signal. 
    493 @arg1:  
    494 @arg2:  
    495 @arg3:  
     493@:  
     494@:  
     495@:  
     496@:  
    496497 
    497498<!-- ##### SIGNAL TnySendQueue::msg-sending ##### --> 
     
    500501</para> 
    501502 
    502 @tnysendqueue: the object which received the signal. 
    503 @arg1:  
    504 @arg2:  
    505 @arg3:  
    506 @arg4:  
     503@:  
     504@:  
     505@:  
     506@:  
     507@:  
    507508 
    508509<!-- ##### SIGNAL TnySendQueue::msg-sent ##### --> 
     
    511512</para> 
    512513 
    513 @tnysendqueue: the object which received the signal. 
    514 @arg1:  
    515 @arg2:  
    516 @arg3:  
    517 @arg4:  
     514@:  
     515@:  
     516@:  
     517@:  
     518@:  
    518519 
    519520<!-- ##### STRUCT TnySendQueueIface ##### --> 
  • trunk/tests/functional/msg-sender.c

    r2030 r3270  
    9898        tny_stream_reset (html_stream); 
    9999 
    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");  
    102102 
    103103        tny_mime_part_add_part (TNY_MIME_PART (retval), html_body);