Changes between Version 31 and Version 32 of archive/Development/UiClient
- Timestamp:
- 06/22/2008 08:24:47 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
archive/Development/UiClient
v31 v32 117 117 ''Generated from docstrings , do not edit'' 118 118 119 120 119 '''add_torrent_file(torrent_files, torrent_options): ''' 121 120 … … 124 123 A list of torrent_option dictionaries in the same order of torrent_files 125 124 126 127 125 '''add_torrent_file_binary(filename, fdump, options): ''' 128 126 … … 131 129 Expects fdump as a bytestring (== result of f.read()). 132 130 133 134 131 '''add_torrent_url(url, save_path, options): ''' 135 132 … … 184 181 Returns a list of enabled plugins in the core 185 182 183 '''get_health([callback]): ''' 184 185 Returns True if we have established incoming connections 186 186 187 '''get_listen_port([callback]): ''' 187 188 … … 208 209 Returns the payload upload rate 209 210 210 '''move_ torrent(torrent_ids, dest): '''211 '''move_storage(torrent_ids, dest): ''' 211 212 212 213 … … 224 225 A method to see if the core is running 225 226 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): ''' 238 240 239 241 … … 252 254 Clears the ip filter 253 255 254 '''resume_all_torrents( [callback]): '''256 '''resume_all_torrents(): ''' 255 257 256 258 Resume all torrents in the session … … 288 290 Sets a torrents max upload speed 289 291 290 '''set_torrent_pri vate_flag(torrent_id, value): '''291 292 Sets a torrents private flag292 '''set_torrent_prioritize_first_last(torrent_id, value): ''' 293 294 Sets a higher priority to the first and last pieces 293 295 294 296 '''set_torrent_trackers(torrent_id, trackers): ''' 295 297 296 298 Sets a torrents tracker list. trackers will be [{"url", "tier"}] 299 300 '''shutdown([callback]): ''' 301 302 Shutdown the core daemon 303 297 304 298 305 = Notes =