~ubuntu-branches/ubuntu/quantal/aria2/quantal

« back to all changes in this revision

Viewing changes to doc/xmlrpc/aria2rpc

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2011-05-26 22:22:12 UTC
  • mfrom: (2.5.3 sid)
  • Revision ID: james.westby@ubuntu.com-20110526222212-8ck4ia81l227m44l
Tags: 1.11.2-1
* New upstream release
* debian/control:
  + Updated Standards-Version to 3.9.2
* debian/copyright:
  + Updated as per latest DEP-5 specification

Show diffs side-by-side

added added

removed removed

Lines of Context:
119
119
  opt.on("--bt-prioritize-piece RANGE") {|val|
120
120
    options["bt-prioritize-piece"]=val
121
121
  }
122
 
  opt.on("--bt-require-crypto BOOL",["true","false"]){|val|
123
 
    options["bt-require-crypto"]=val
 
122
  opt.on("--bt-require-crypto [BOOL]",["true","false"]){|val|
 
123
    options["bt-require-crypto"]=val||"true"
124
124
  }
125
125
  opt.on("--bt-request-peer-speed-limit SPEED"){|val|
126
126
    options["bt-request-peer-speed-limit"]=val
161
161
  opt.on("--metalink-preferred-protocol PROTO"){|val|
162
162
    options["metalink-preferred-protocol"]=val
163
163
  }
164
 
  opt.on("--metalink-enable-unique-protocol BOOL",["true","false"]){|val|
165
 
    options["metalink-enable-unique-protocol"]=val
166
 
  }
167
 
  opt.on("--allow-overwrite BOOL",["true","false"]){|val|
168
 
    options["allow-overwrite"]=val
169
 
  }
170
 
  opt.on("--allow-piece-length-change BOOL",["true","false"]){|val|
171
 
    options["allow-piece-length-change"]=val
 
164
  opt.on("--metalink-enable-unique-protocol [BOOL]",["true","false"]){|val|
 
165
    options["metalink-enable-unique-protocol"]=val||"true"
 
166
  }
 
167
  opt.on("--allow-overwrite [BOOL]",["true","false"]){|val|
 
168
    options["allow-overwrite"]=val||"true"
 
169
  }
 
170
  opt.on("--allow-piece-length-change [BOOL]",["true","false"]){|val|
 
171
    options["allow-piece-length-change"]=val||"true"
172
172
  }
173
173
  opt.on("--async-dns [BOOL]",["true","false"]){|val|
174
174
    options["async-dns"]=val||"true"
186
186
  opt.on("-P","--parameterized-uri [BOOL]",["true","false"]){|val|
187
187
    options["parameterized-uri"]=val||"true"
188
188
  }
189
 
  opt.on("--realtime-chunk-checksum BOOL",["true","false"]){|val|
190
 
    options["realtime-chunk-checksum"]=val
 
189
  opt.on("--realtime-chunk-checksum [BOOL]",["true","false"]){|val|
 
190
    options["realtime-chunk-checksum"]=val||"true"
191
191
  }
192
192
  opt.on("--remove-control-file [BOOL]",["true","false"]){|val|
193
193
    options["remove-control-file"]=val||"true"
212
212
  opt.on("--bt-tracker URIS"){|val| options["bt-tracker"]=val}
213
213
  opt.on("--bt-exclude-tracker URIS"){|val| options["bt-exclude-tracker"]=val}
214
214
  opt.on("--retry-wait SEC"){|val| options["retry-wait"]=val}
 
215
  opt.on("--metalink-base-uri URI"){|val| options["metalink-base-uri"]=val}
215
216
 
216
217
  opt.on("--max-overall-download-limit LIMIT"){|val| options["max-overall-download-limit"]=val}
217
218
  opt.on("--max-overall-upload-limit LIMIT"){|val| options["max-overall-upload-limit"]=val}