Changes between Version 31 and Version 32 of archive/Development/UiClient


Ignore:
Timestamp:
06/22/2008 08:24:47 PM (16 years ago)
Author:
mvoncken
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • archive/Development/UiClient

    v31 v32  
    117117''Generated from docstrings , do not edit'' 
    118118 
    119  
    120119'''add_torrent_file(torrent_files, torrent_options): ''' 
    121120 
     
    124123A list of torrent_option dictionaries in the same order of torrent_files 
    125124 
    126  
    127125'''add_torrent_file_binary(filename, fdump, options): ''' 
    128126 
     
    131129Expects fdump as a bytestring (== result of f.read()). 
    132130 
    133  
    134131'''add_torrent_url(url, save_path, options): ''' 
    135132 
     
    184181Returns a list of enabled plugins in the core 
    185182 
     183'''get_health([callback]): ''' 
     184 
     185Returns True if we have established incoming connections 
     186 
    186187'''get_listen_port([callback]): ''' 
    187188 
     
    208209Returns the payload upload rate 
    209210 
    210 '''move_torrent(torrent_ids, dest): ''' 
     211'''move_storage(torrent_ids, dest): ''' 
    211212 
    212213 
     
    224225A method to see if the core is running 
    225226 
    226  
    227  
    228  
    229  
    230  
    231  
    232  
    233  
    234  
    235  
    236  
    237  
     227'''queue_bottom([callback], torrent_ids): ''' 
     228 
     229 
     230 
     231'''queue_down([callback], torrent_ids): ''' 
     232 
     233 
     234 
     235'''queue_top([callback], torrent_ids): ''' 
     236 
     237## Queueing functions ## 
     238 
     239'''queue_up([callback], torrent_ids): ''' 
    238240 
    239241 
     
    252254Clears the ip filter 
    253255 
    254 '''resume_all_torrents([callback]): ''' 
     256'''resume_all_torrents(): ''' 
    255257 
    256258Resume all torrents in the session 
     
    288290Sets a torrents max upload speed 
    289291 
    290 '''set_torrent_private_flag(torrent_id, value): ''' 
    291  
    292 Sets a torrents private flag 
     292'''set_torrent_prioritize_first_last(torrent_id, value): ''' 
     293 
     294Sets a higher priority to the first and last pieces 
    293295 
    294296'''set_torrent_trackers(torrent_id, trackers): ''' 
    295297 
    296298Sets a torrents tracker list.  trackers will be [{"url", "tier"}] 
     299 
     300'''shutdown([callback]): ''' 
     301 
     302Shutdown the core daemon 
     303 
    297304 
    298305= Notes =