• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/transmission/transmission-2.73/web/javascript/

Lines Matching refs:fields

19 // Torrent.fields.status
28 // Torrent.fields.seedRatioMode
33 // Torrent.fields.error
48 // commonly used fields which only need to be loaded once,
57 // commonly used fields which need to be periodically refreshed
85 // fields used by the inspector which only need to be loaded once
97 // fields used in the inspector which need to be periodically refreshed
121 this.fields = {};
137 if (o == this.fields && this.fieldObservers[name] && this.fieldObservers[name].length) {
146 // fields.files is an array of unions of RPC's "files" and "fileStats" objects.
150 myfiles = this.fields.files || [],
161 this.fields.files = myfiles;
186 changed |= this.setField(this.fields,'trackers',data[key]);
189 if (!(key in this.fields))
190 changed |= this.setField(this.fields,key,data[key]);
193 changed |= this.setField(this.fields,key,data[key]);
211 getComment: function() { return this.fields.comment; },
212 getCreator: function() { return this.fields.creator; },
213 getDateAdded: function() { return this.fields.addedDate; },
214 getDateCreated: function() { return this.fields.dateCreated; },
215 getDesiredAvailable: function() { return this.fields.desiredAvailable; },
216 getDownloadDir: function() { return this.fields.downloadDir; },
217 getDownloadSpeed: function() { return this.fields.rateDownload; },
218 getDownloadedEver: function() { return this.fields.downloadedEver; },
219 getError: function() { return this.fields.error; },
220 getErrorString: function() { return this.fields.errorString; },
221 getETA: function() { return this.fields.eta; },
222 getFailedEver: function(i) { return this.fields.corruptEver; },
223 getFile: function(i) { return this.fields.files[i]; },
224 getFileCount: function() { return this.fields.files ? this.fields.files.length : 0; },
225 getHashString: function() { return this.fields.hashString; },
227 getHaveUnchecked: function() { return this.fields.haveUnchecked; },
228 getHaveValid: function() { return this.fields.haveValid; },
229 getId: function() { return this.fields.id; },
230 getLastActivity: function() { return this.fields.activityDate; },
231 getLeftUntilDone: function() { return this.fields.leftUntilDone; },
232 getMetadataPercentComplete: function() { return this.fields.metadataPercentComplete; },
233 getName: function() { return this.fields.name || 'Unknown'; },
234 getPeers: function() { return this.fields.peers; },
235 getPeersConnected: function() { return this.fields.peersConnected; },
236 getPeersGettingFromUs: function() { return this.fields.peersGettingFromUs; },
237 getPeersSendingToUs: function() { return this.fields.peersSendingToUs; },
238 getPieceCount: function() { return this.fields.pieceCount; },
239 getPieceSize: function() { return this.fields.pieceSize; },
240 getPrivateFlag: function() { return this.fields.isPrivate; },
241 getQueuePosition: function() { return this.fields.queuePosition; },
242 getRecheckProgress: function() { return this.fields.recheckProgress; },
243 getSeedRatioLimit: function() { return this.fields.seedRatioLimit; },
244 getSeedRatioMode: function() { return this.fields.seedRatioMode; },
245 getSizeWhenDone: function() { return this.fields.sizeWhenDone; },
246 getStartDate: function() { return this.fields.startDate; },
247 getStatus: function() { return this.fields.status; },
248 getTotalSize: function() { return this.fields.totalSize; },
249 getTrackers: function() { return this.fields.trackers; },
250 getUploadSpeed: function() { return this.fields.rateUpload; },
251 getUploadRatio: function() { return this.fields.uploadRatio; },
252 getUploadedEver: function() { return this.fields.uploadedEver; },
253 getWebseedsSendingToUs: function() { return this.fields.webseedsSendingToUs; },
254 isFinished: function() { return this.fields.isFinished; },
257 hasExtraInfo: function() { return 'hashString' in this.fields; },
266 getPercentDone: function() { return this.fields.percentDone; },
302 var f = this.fields;
308 var f = this.fields;