| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- system.plugin = {
- exec: function(key)
- {
- switch (key)
- {
- // Replace Tracker
- case "replace-tracker":
- system.openDialogFromTemplate({
- id: "dialog-system-replaceTracker",
- options: {
- title: system.lang.dialog["system-replaceTracker"].title,
- width: 600,
- height: 220
- }
- });
- break;
- // Automatically match the data directory
- case "auto-match-data-folder":
- var rows = system.control.torrentlist.datagrid("getChecked");
- var ids = new Array();
- for (var i in rows)
- {
- ids.push(rows[i].id);
- }
- if (ids.length==0) return;
- system.openDialogFromTemplate({
- id: "dialog-auto-match-data-folder",
- options: {
- title: system.lang.dialog["auto-match-data-folder"].title,
- width: 530,
- height: 280
- },
- datas: {
- "ids": ids
- }
- });
- break;
- }
- }
- };
|