Use TopfieldUSBEcode for received values too.
[MacTF.git] / MacTF.scriptTerminology
blobcd65d8f0cf012cba4173a51a67ae7cfe018f18ed
1 // MacTF.scriptTerminology
2 //
5     "Name" = "MacTF suite";
6     "Description" = "MacTF specific classes.";
7     "Classes" = {
8         "NSApplication" = {
9             "Name" = "application";
10             "PluralName" = "applications";
11             "Description" = "MacTF's top level scripting object.";
12         };
13         "UIElements" = {
14             "Name" = "UIelements";
15             "PluralName" = "UIs";
16             "Description" = "A general class controlling all the UIElements including overall functions for uploading and downloading";
17             "Attributes" = {
18                 "currentPath" = {
19                     "Name" = "current Path";
20                     "Description" = "The path the Topfield is currently displaying";
21                 };
22             };
23                 };
24     };  
25         "Commands" = {
26                 "uploadFile" = {
27                         "Name" = "uploadFile";
28                         "Description" = "upload a file";
29                                 "Arguments" = {
30                                         "FileName" = {
31                                                 "Name" = "at";
32                                                 "Description" = "The file to upload should follow, quoted";
33                                         };
34                                         "Destination" = {
35                                                  "Name" = "to";
36                                                  "Description" = "The path on the Topfield should follow, quoted";
37                                          };
38                                 };
39                  };
40                  "downloadFile" = {
41                         "Name" = "downloadFile";
42                         "Description" = "download a file";
43                                 "Arguments" = {
44                                         "FileName" = {
45                                                 "Name" = "at";
46                                                 "Description" = "The path on the Topfield of the file to download should follow, quoted";
47                                         };
48                                         "Destination" = {
49                                                  "Name" = "to";
50                                                  "Description" = "The path to download to should follow, quoted";
51                                          };
52                                 };
53                  };
54                   "deleteFile" = {
55                         "Name" = "deleteFile";
56                         "Description" = "delete a file";
57                                 "Arguments" = {
58                                         "FileName" = {
59                                                 "Name" = "at";
60                                                 "Description" = "The path on the Topfield of the file to delete should follow, quoted";
61                                         };
62                                 };
63                  };
64                  "connect" = {
65                         "Name" = "connect";
66                         "Description" = "connect to the Topfield";
67                  };
68                  "disconnect" = {
69                         "Name" = "disconnect";
70                         "Description" = "disconnect from the Topfield";
71                  };
72         };