Changes between Version 51 and Version 52 of archive/Development/UiClient


Ignore:
Timestamp:
08/31/2008 12:34:13 AM (16 years ago)
Author:
mvoncken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • archive/Development/UiClient

    v51 v52  
    115115Shutdown the core daemon 
    116116 
     117= Deluge 1.0 to 1.1 = 
     118 
     119 * set_torrent_options obsoletes : set_torrent_max_connections, set_torrent_max_download_speed, set_torrent_max_upload_speed , set_torrent_auto_managed, set_torrent_max_connections, set_torrent_max_upload_slots, set_torrent_file_priorities,set_torrent_auto_managed, etc.. 
     120 
     121 * get_stats obsoletes : get_download_rate, get_upload_rate , get_dht_nodes 
     122 
     123 
    117124= Remote api = 
    118125Core methods exposed by aclient , sclient  and plugins.coreclient.client 
     
    124131''Generated from docstrings , do not edit'' 
    125132 
    126  
    127133'''add_torrent_file(torrent_files, torrent_options): ''' 
     134 
    128135 
    129136{{{ 
     
    185192'''get_available_plugins([callback]): ''' 
    186193 
     194 
    187195{{{ 
    188196Returns a list of plugins available in the core 
     
    250258}}} 
    251259 
     260'''get_stats([callback]): ''' 
     261 
     262{{{ 
     263returns: { 
     264'download_rate':float(), 
     265'upload_rate':float(), 
     266'num_connections':int(), 
     267'dht_nodes',int(), 
     268'max_num_connections':int(), 
     269'max_download':float(), 
     270'max_upload':float() 
     271} 
     272}}} 
     273 
    252274'''get_status_keys([callback]): ''' 
    253275 
     
    454476Shutdown the core daemon 
    455477}}} 
    456  
    457478 
    458479= Notes = 
     
    578599 
    579600 
     601